English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / Sensitivity: TCramerVonMises.h Source File
Uranie / Sensitivity  v4.10.0
/* @license-end */
TCramerVonMises.h
Go to the documentation of this file.
1 // 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 TCramerVonMises_H
42 #define TCramerVonMises_H
43 #include "TString.h"
44 #ifndef ROOT_TMethodCall
45 #include "TMethodCall.h"
46 #endif
47 #ifndef ROOT_TNtupleD
48 #include "TNtupleD.h"
49 #endif
50 
51 // Uranie
52 #include "TStochAttribut.h"
53 #include "TSensitivity.h"
54 #include "TSobol.h"
55 #include "TSampling.h"
56 #include "TQMC.h"
57 
58 using std::cout;
59 using std::endl;
60 
61 namespace URANIE {
62 namespace Sensitivity {
63 class TCramerVonMises: public TSobol {
64 
65 
66 public:
67  //---------------------------------------------
74  /*
75  \param tds (URANIE::DataServer::TDataServer *) the dataserver
76  \param fcn (void *) The function to analyze
77  \param ns (Int_t) The size (total) of the sampling
78  \param varexpinput(const char*)[""] The list of input attributes to pass to the function separated by the caracter ":"
79  \param varexpoutput (const char *)[""] The list of output attributes separated by the caracter ":"
80  \param
81  */
82  TCramerVonMises(URANIE::DataServer::TDataServer *tds, void (*fcn)(Double_t*,Double_t*),
83  const char *varexpinput, const char *varexpoutput,
84  Int_t ns, Option_t * option = "");
86  /*
87  \param tds (URANIE::DataServer::TDataServer *) the dataserver
88  \param fcn (const char*) The function to analyze
89  \param ns (Int_t) The size (total) of the sampling
90  \param varexpinput(const char*)[""] The list of input attributes to pass to the function separated by the caracter ":"
91  \param varexpoutput (const char *)[""] The list of output attributes separated by the caracter ":"
92  \param
93  */
94  TCramerVonMises(URANIE::DataServer::TDataServer *tds, const char *fcn,
95  Int_t ns, const char *varexpinput, const char *varexpoutput,
96  Option_t* option="");
98  TCramerVonMises(URANIE::DataServer::TDataServer *tds, const char *varexpinput,
99  const char *varexpoutput, Option_t * option = "");
100 
102  TCramerVonMises(URANIE::DataServer::TDataServer *tds, URANIE::Launcher::TCode *fcode,
103  Int_t ns, Option_t * option = "");
105  TCramerVonMises(URANIE::DataServer::TDataServer *tds, URANIE::Relauncher::TRun *run,
106  Int_t ns, Option_t * option = "");
108  virtual ~TCramerVonMises();
109 
111 
112 
113 
114  virtual void generateSample(Option_t * option = "");
115 
116  void evaluateIndexes(Option_t * option = "");
117 
118  void drawIndexes(TString sTitre, const char *select = "", Option_t * option = "");
119 
120 
121  TMatrixD _matO;
122 TMatrixD _valO;
123 
124 
125 };
126 
127 } // End Of namespace Sensitivity
128 } // End Of namespace URANIE
129 #endif
130 
ROOT.
Definition: TCMN.h:45
ClassDef(URANIE::Sensitivity::TCramerVonMises, ID_SENSITIVITY)
TMatrixD _valO
Definition: TCramerVonMises.h:122
virtual void generateSample(Option_t *option="")
Generates all the matrix of sample.
Description of the class TCramerVonMises.
Definition: TCramerVonMises.h:63
Description of the class TSobol.
Definition: TSobol.h:62
TCramerVonMises()
Default constructor.
void evaluateIndexes(Option_t *option="")
Evaluates the index from a Specific TDataServer.
void drawIndexes(TString sTitre, const char *select="", Option_t *option="")
Draws the indexes.
virtual ~TCramerVonMises()
Default destructor.
TMatrixD _matO
The matrix M.
Definition: TCramerVonMises.h:121
Interface of class URANIE::Sensitivity::TSobol.
Interface of class URANIE::Sensitivity::TSensitivity.