CMS 3D CMS Logo

MeasurementDistancemeter.h
Go to the documentation of this file.
1 // COCOA class header file
2 // Id: MeasurementDistancemeter.h
3 // CAT: Model
4 //
5 // Class for measurements
6 //
7 // History: v1.0
8 // Authors:
9 // Pedro Arce
10 
11 #ifndef _MEASUREMENTDISTANCEMETER_HH
12 #define _MEASUREMENTDISTANCEMETER_HH
13 
14 #include <vector>
17 
19 public:
21  : Measurement(measdim, type, name), theFactor(1.), theFactorSigma(0.){};
24 
25  // Get simulated value (called every time a parameter is displaced)
26  void calculateSimulatedValue(ALIbool firstTime) override;
27 
28  //---------- Convert from V to rad
29  void setConversionFactor(const std::vector<ALIstring>& wordlist) override;
30 
31  //---------- Add any correction between the measurement data and the default format in COCOA
32  void correctValueAndSigma() override;
33 
34 private:
37 };
38 
39 #endif
long double ALIdouble
Definition: CocoaGlobals.h:11
int ALIint
Definition: CocoaGlobals.h:15
bool ALIbool
Definition: CocoaGlobals.h:19
void setConversionFactor(const std::vector< ALIstring > &wordlist) override
std::string ALIstring
Definition: CocoaGlobals.h:9
MeasurementDistancemeter(const ALIint measdim, ALIstring &type, ALIstring &name)
const ALIstring & name() const
Definition: Measurement.h:86
void calculateSimulatedValue(ALIbool firstTime) override