English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Sensitivity: TCMN.h Source File
Uranie / Sensitivity v4.9.0
/* @license-end */
TCMN.h
Go to the documentation of this file.
1
2// Copyright (C) 2013-2024 CEA/DES
3//
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU Lesser General Public License as published
6// by the Free Software Foundation, either version 3 of the License, or any
7// later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU Lesser General Public License for more details.
13//
14// You should have received a copy of the GNU Lesser General Public License
15// along with this program. If not, see <http://www.gnu.org/licenses/>.
18// $Id$
19// $Author$
20// $Date$
21// $Revision$
22// $State$
24
41#ifndef TCMN_H
42#define TCMN_H
43#include "TSensitivityTest.h"
44
45namespace URANIE {
46namespace Sensitivity {
47class TCMN: public TSensitivityTest {
48public:
49 //---------------------------------------------
53
56 TCMN(URANIE::DataServer::TDataServer *tds, const char *varexpinput,
57 const char *varexpoutput, Option_t * option = "");
59 virtual ~TCMN();
61
62 //---------------------------------------------
66 virtual void generateSample(Option_t * option = "");
68
69 //---------------------------------------------
73 void computeIndexes(Option_t * option = "");
74 void evaluateIndexes(Option_t * option = "");
75 Double_t getPValue()
76 {
77 return _dpvalue;
78 }
80
81 //---------------------------------------------
85 virtual void printLog(Option_t *option = "");
87
88 ClassDef(URANIE::Sensitivity::TCMN, ID_SENSITIVITY)
89
90 //---------------------------------------------
95private:
96 Int_t _nBins;
97 Double_t _dpvalue;
99
100};
101
102} // End Of namespace Sensitivity
103} // End Of namespace URANIE
104#endif
Interface of class URANIE::Sensitivity::TSensitivityTest.
Description of the class TCMN.
Definition TCMN.h:47
virtual ~TCMN()
Default destructor.
void computeIndexes(Option_t *option="")
private Double_t _dpvalue
The number of bins.
Definition TCMN.h:97
Double_t getPValue()
Definition TCMN.h:75
TCMN(URANIE::DataServer::TDataServer *tds, const char *varexpinput, const char *varexpoutput, Option_t *option="")
Default constructor.
TCMN()
Default constructor.
virtual void printLog(Option_t *option="")
virtual void generateSample(Option_t *option="")
void evaluateIndexes(Option_t *option="")
Evaluates the index from a Specific TDataServer.
Description of the class TSensitivityTest.
Definition TSensitivityTest.h:53
ROOT.
Definition TCMN.h:45