test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MeasurementDistancemeter3dim.cc
Go to the documentation of this file.
1 // COCOA class implementation file
2 // Id: Measurement.C
3 // CAT: Model
4 // ---------------------------------------------------------------------------
5 // History: v1.0
6 // Authors:
7 // Pedro Arce
8 
12 #include <iostream>
13 #include <iomanip>
14 #include <cstdlib>
15 #ifdef COCOA_VIS
16 #include "Alignment/CocoaVisMgr/interface/ALIVRMLMgr.h"
17 #include "Alignment/IgCocoaFileWriter/interface/IgCocoaFileMgr.h"
18 #include "Alignment/IgCocoaFileWriter/interface/ALIVisLightPath.h"
19 #endif
21 
22 
23 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
24 //@@ calculate the simulated value propagating the light ray through the OptO that take part in the Measurement
25 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
27 {
28 
29  if( ALIUtils::debug >= 2) printStartCalculateSimulatedValue( this ); // important for Examples/FakeMeas
30 
31  //---------- Loop list of OptO that take part in measurement
32  std::vector<OpticalObject*>::const_iterator vocite = OptOList().begin();
33  if( ALIUtils::debug >= 5) std::cout << "OptOList size" <<OptOList().size() << std::endl;
34 
35  //----- Check that there are only two measurements that are 'distance_target' and 'distancemeter3dim'
36  ALIbool right_objects = 0;
37  if( OptOList().size() == 2 ) {
38  if( (*vocite)->type() == "distance_target"
39  && ( (*(vocite+1))->type() == "distancemeter3dim" ) ) {
40  right_objects = 1;
41  }
42  }
43  if( !right_objects ) {
44  std::cerr << "!!! ERROR in MeasurementDistancemeter3dim: " << name() << " There should only be two objects of type 'distance_target' and 'distancemeter3dim' " << std::endl;
45  std::cerr << " 1st " << (*vocite)->name() << " 2nd " << (*vocite+1)->name() << std::endl;
46  std::cerr << " 1st " << (*vocite)->type() << " 2nd " << (*vocite+1)->type() << std::endl;
47 
50  }
51 
52 #ifdef COCOA_VIS
53  ALIVisLightPath* vispath = 0;
54  if( ALIUtils::getFirstTime() ) {
56  if(gomgr->GlobalOptions()["VisWriteIguana"] > 1) {
57  vispath = IgCocoaFileMgr::getInstance().newLightPath( name() );
58  }
59  }
60 #endif
61 
62  ALIuint isec = 0; //security variable to check OptOList().size()
63  for( vocite = OptOList().begin(); vocite != OptOList().end(); ++vocite) {
64  if( ALIUtils::debug >= 2) std::cout << std::endl << "@@@@ LR:OBJECT " << (*vocite)->name() << std::endl;
65  isec ++;
66 
67  //---------- Get the behaviour of the object w.r.t the measurement (if it reflects the light, let it traverse it, ...)
68  ALIstring behav = getMeasuringBehaviour(vocite);
69 
70  //---------- participate in measurement
71  LightRay lightray; //it is not used in this measurement type
72  (*vocite)->participateInMeasurement( lightray, *this, behav);
73 
74 #ifdef COCOA_VIS
75  if( ALIUtils::getFirstTime() ) {
77  if(gomgr->GlobalOptions()["VisWriteVRML"] > 1) {
78  ALIVRMLMgr::getInstance().addLightPoint( lightray.point() );
79  if(ALIUtils::debug >= 5)std::cout << "ALIVRMLMg addLightPoint " << lightray.point() << (*vocite)->name() << std::endl;
80  }
81  if(gomgr->GlobalOptions()["VisWriteIguana"] > 1) {
82  vispath->addLightPoint( lightray.point(), *vocite );
83  }
84  }
85 #endif
86 
87  if ( isec > OptOList().size() ) {
88  std::cerr << "ERROR DE PROGRAMACION EN GetSimulatedValue" << std::endl;
90  }
91  }
92 
93  if(ALIUtils::debug >= 5) std::cout << "end calculateSimulatedValue" <<std::endl;
94 
95 }
96 
97 
98 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
99 //@@ You input 2 numbers after 'DISTANCEMETER':
100 //@@
101 //@@ set the conversion factor from mV to mm
102 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
103 void MeasurementDistancemeter3dim::setConversionFactor( const std::vector<ALIstring>& wordlist )
104 {
105  //--------- Check that the format is OK
106  if(wordlist.size() == 1) return;
107  if( wordlist.size() != 4
108  || !ALIUtils::IsNumber(wordlist[1]) || !ALIUtils::IsNumber(wordlist[3])
109  || wordlist[2] != ALIstring("+-") ){
110  std::cerr << "!! Distancemeter3dim Measurement setConversionFactor: WRONG FORMAT "<< std::endl
111  << "It should be: DISTANCEMETER3DIM factor +- error " << std::endl
112  << "It is: ";
113  ALIUtils::dumpVS( wordlist, " ", std::cerr );
114  std::exception();
115  }
116  theFactor = atof(wordlist[1].c_str());
117  //------ correct by dimension of value of tiltmeter
119  ALIint dimfac = ALIint( gomgr->GlobalOptions()[ ALIstring("distancemeter_meas_value_dimension") ] );
120  if( dimfac == 0 ) {
121  theFactor *= 1.;
122  } else if( dimfac == 1 ) {
123  theFactor *= 1.E-3;
124  } else if( dimfac == 2 ) {
125  theFactor *= 1.E-6;
126  } else {
127  std::cerr << " !!!EXITING: error in global option distancemeter3dim_meas_value_dimension, it can only take values 0,1,2, not " << dimfac;
128  std::exception();
129  }
130  theFactorSigma = atof(wordlist[3].c_str());
131 
132 }
133 
134 
135 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
136 //@@ Value is given in mV: convert to mm
137 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
139 {
140  ALIdouble val = value()[0];
141  ALIdouble sig = sigma()[0];
142  if(ALIUtils::debug >= 4) std::cout << "MeasurementDistancemeter3dim::correctValueAndSigma: old value" << val << " +- " << sig << std::endl;
143 
144  //- std::cout << "FACTOR " << theFactor << "correct " << val << " " << thePedestal << std::endl;
145  val *= theFactor;
146  //-------- Do not correct the sigma!!!!
147  //- sig *= theFactor;
148  if(ALIUtils::debug >= 4) std::cout << "MeasuremenDistancemeter3dim::correctValueAndSigma: new value " << val << " +- " << sig << std::endl;
149  setValue( 0, val );
150  setSigma( 0, sig );
151 
152 }
153 
long double ALIdouble
Definition: CocoaGlobals.h:11
void setValue(ALIint coor, ALIdouble val)
Definition: Measurement.h:167
int ALIint
Definition: CocoaGlobals.h:15
static ALIint debug
Definition: ALIUtils.h:35
static GlobalOptionMgr * getInstance()
ALIstring getMeasuringBehaviour(const std::vector< OpticalObject * >::const_iterator vocite)
Definition: Measurement.cc:592
virtual void calculateSimulatedValue(ALIbool firstTime)
void DumpBadOrderOptOs()
Definition: Measurement.cc:488
virtual void setConversionFactor(const std::vector< ALIstring > &wordlist)
bool ALIbool
Definition: CocoaGlobals.h:19
void setSigma(ALIint coor, ALIdouble val)
Definition: Measurement.h:171
static int IsNumber(const ALIstring &str)
Definition: ALIUtils.cc:34
bool firstTime
Definition: QTestHandle.cc:16
const ALIdouble * sigma() const
Definition: Measurement.h:132
const CLHEP::Hep3Vector & point() const
Definition: LightRay.h:52
const std::vector< OpticalObject * > & OptOList() const
Definition: Measurement.h:109
static ALIbool getFirstTime()
Definition: ALIUtils.h:100
static void dumpVS(const std::vector< ALIstring > &wl, const std::string &msg, std::ostream &outs=std::cout)
dumps a vector of strings with a message to outs
Definition: ALIUtils.cc:501
const ALIdouble * value() const
Definition: Measurement.h:125
#define begin
Definition: vmac.h:30
const ALIstring & type() const
Definition: Measurement.h:86
std::string ALIstring
Definition: CocoaGlobals.h:9
void printStartCalculateSimulatedValue(const Measurement *meas)
Definition: Measurement.cc:445
const ALIstring & name() const
Definition: Measurement.h:90
tuple cout
Definition: gather_cfg.py:145
std::map< ALIstring, ALIdouble, std::less< ALIstring > > & GlobalOptions()
tuple size
Write out results.
unsigned int ALIuint
Definition: CocoaGlobals.h:17