CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
MeasurementDiffEntry.h
Go to the documentation of this file.
1 // COCOA class header file
2 // Id: MeasurementDiffEntry.h
3 // CAT: Model
4 //
5 // Class for measurements
6 //
7 // History: v1.0
8 // Authors:
9 // Pedro Arce
10 
11 #ifndef _MeasurementDiffEntry_HH
12 #define _MeasurementDiffEntry_HH
13 
14 #include <vector>
17 
19 public:
20  MeasurementDiffEntry(const ALIint measdim, ALIstring& type, ALIstring& name) : Measurement(measdim, type, name){};
22  ~MeasurementDiffEntry() override{};
23 
24  // separate OptO names and Entry names
25  void buildOptONamesList(const std::vector<ALIstring>& wl) override;
26 
27  // Get simulated value (called every time a parameter is displaced)
28  void calculateSimulatedValue(ALIbool firstTime) override;
29 
30 private:
33 };
34 
35 #endif
int ALIint
Definition: CocoaGlobals.h:15
bool ALIbool
Definition: CocoaGlobals.h:19
void buildOptONamesList(const std::vector< ALIstring > &wl) override
MeasurementDiffEntry(const ALIint measdim, ALIstring &type, ALIstring &name)
std::string ALIstring
Definition: CocoaGlobals.h:9
const ALIstring & name() const
Definition: Measurement.h:86
void calculateSimulatedValue(ALIbool firstTime) override