CMS 3D CMS Logo

MeasurementDistancemeter.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 //@@ calculate the simulated value propagating the light ray through the OptO that take part in the Measurement
24 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
26  if (ALIUtils::debug >= 2)
27  printStartCalculateSimulatedValue(this); // important for Examples/FakeMeas
28 
29  //---------- Loop list of OptO that take part in measurement
30  std::vector<OpticalObject*>::const_iterator vocite = OptOList().begin();
31  if (ALIUtils::debug >= 5)
32  std::cout << "OptOList size= " << OptOList().size() << std::endl;
33 
34  //----- Check that there are only two measurements that are 'distance_target' and 'distancemeter'
35  ALIbool right_objects = false;
36  if (OptOList().size() == 2) {
37  if ((*vocite)->type() == "distance_target" &&
38  ((*(vocite + 1))->type() == "distancemeter" || (*(vocite + 1))->type() == "distancemeter1dim")) {
39  right_objects = true;
40  }
41  }
42  if (!right_objects) {
43  std::cerr << "!!! ERROR in MeasurementDistancemeter: " << name()
44  << " There should only be two objects of type 'distance_target' and 'distancemeter' " << 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)
65  std::cout << std::endl << "@@@@ LR:OBJECT " << (*vocite)->name() << std::endl;
66  isec++;
67 
68  //---------- Get the behaviour of the object w.r.t the measurement (if it reflects the light, let it traverse it, ...)
69  ALIstring behav = getMeasuringBehaviour(vocite);
70 
71  //---------- participate in measurement
72  LightRay lightray; //it is not used in this measurement type
73  (*vocite)->participateInMeasurement(lightray, *this, behav);
74 
75 #ifdef COCOA_VIS
76  if (ALIUtils::getFirstTime()) {
78  if (gomgr->GlobalOptions()["VisWriteVRML"] > 1) {
79  ALIVRMLMgr::getInstance().addLightPoint(lightray.point());
80  if (ALIUtils::debug >= 5)
81  std::cout << "ALIVRMLMg addLightPoint " << lightray.point() << (*vocite)->name() << std::endl;
82  }
83  if (gomgr->GlobalOptions()["VisWriteIguana"] > 1) {
84  vispath->addLightPoint(lightray.point(), *vocite);
85  }
86  }
87 #endif
88 
89  if (isec > OptOList().size()) {
90  std::cerr << "ERROR DE PROGRAMACION EN GetSimulatedValue" << std::endl;
92  }
93  }
94 
95  if (ALIUtils::debug >= 5)
96  std::cout << "end calculateSimulatedValue" << std::endl;
97 }
98 
99 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
100 //@@ You input 2 numbers after 'DISTANCEMETER':
101 //@@
102 //@@ set the conversion factor from mV to mm
103 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
104 void MeasurementDistancemeter::setConversionFactor(const std::vector<ALIstring>& wordlist) {
105  //--------- Check that the format is OK
106  if (wordlist.size() == 1)
107  return;
108  if (wordlist.size() != 4 || !ALIUtils::IsNumber(wordlist[1]) || !ALIUtils::IsNumber(wordlist[3]) ||
109  wordlist[2] != ALIstring("+-")) {
110  std::cerr << "!! Distancemeter Measurement setConversionFactor: WRONG FORMAT " << std::endl
111  << "It should be: DISTANCEMETER 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
128  << " !!!EXITING: error in global option distancemeter_meas_value_dimension, it can only take values 0,1,2, not "
129  << dimfac;
130  std::exception();
131  }
132  theFactorSigma = atof(wordlist[3].c_str());
133 }
134 
135 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
136 //@@ Value is given in mV: convert to mm
137 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
139  ALIdouble val = value()[0];
140  ALIdouble sig = sigma()[0];
141  if (ALIUtils::debug >= 4)
142  std::cout << "MeasurementDistancemeter::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)
149  std::cout << "MeasuremenDistancemeter::correctValueAndSigma: new value " << val << " +- " << sig << std::endl;
150  setValue(0, val);
151  setSigma(0, sig);
152 }
size
Write out results.
long double ALIdouble
Definition: CocoaGlobals.h:11
const ALIdouble * value() const
Definition: Measurement.h:109
void setValue(ALIint coor, ALIdouble val)
Definition: Measurement.h:129
int ALIint
Definition: CocoaGlobals.h:15
ALIstring getMeasuringBehaviour(const std::vector< OpticalObject *>::const_iterator vocite)
Definition: Measurement.cc:568
static ALIint debug
Definition: ALIUtils.h:34
static GlobalOptionMgr * getInstance()
void DumpBadOrderOptOs()
Definition: Measurement.cc:469
bool ALIbool
Definition: CocoaGlobals.h:19
void setSigma(ALIint coor, ALIdouble val)
Definition: Measurement.h:131
static int IsNumber(const ALIstring &str)
Definition: ALIUtils.cc:33
const CLHEP::Hep3Vector & point() const
Definition: LightRay.h:57
void setConversionFactor(const std::vector< ALIstring > &wordlist) override
static ALIbool getFirstTime()
Definition: ALIUtils.h:87
const ALIdouble * sigma() const
Definition: Measurement.h:112
const ALIstring & type() const
Definition: Measurement.h:84
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:465
std::map< ALIstring, ALIdouble, std::less< ALIstring > > & GlobalOptions()
std::string ALIstring
Definition: CocoaGlobals.h:9
void printStartCalculateSimulatedValue(const Measurement *meas)
Definition: Measurement.cc:427
const std::vector< OpticalObject * > & OptOList() const
Definition: Measurement.h:101
const ALIstring & name() const
Definition: Measurement.h:86
unsigned int ALIuint
Definition: CocoaGlobals.h:17
void calculateSimulatedValue(ALIbool firstTime) override