CMS 3D CMS Logo

OptOCubeSplitter.cc
Go to the documentation of this file.
1 // COCOA class implementation file
2 //Id: OptOCubeSplitter.cc
3 //CAT: Model
4 //
5 // History: v1.0
6 // Pedro Arce
7 
12 #include "CLHEP/Units/GlobalSystemOfUnits.h"
13 #ifdef COCOA_VIS
14 #include "Alignment/IgCocoaFileWriter/interface/IgCocoaFileMgr.h"
15 #include "Alignment/CocoaVisMgr/interface/ALIColour.h"
16 #endif
19 
20 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
21 //@@ Fast simulation of deviation of the light ray:
22 //@@ Reflect in a Cube Splitter
23 //@@ The beam is reflected in the first plate of the Cube splitter, which is obtained without applying the rotation by 'wedge'.
24 //@@ After the beam is reflected, it is rotated around the splitter X axis by 'deviX' and around the Y axis by 'deviY'.
25 //@@
26 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
28  if (ALIUtils::debug >= 2)
29  std::cout << "LR: FAST REFLECTION IN CUBE SPLITTER " << name() << std::endl;
30 
31  //---------- Get forward plate
32  ALIPlane plate = getMiddlePlate();
33  //---------- Reflect in plate (including intersection with it)
34  lightray.reflect(plate);
35  if (ALIUtils::debug >= 2) {
36  lightray.dumpData("Reflected in plate");
37  }
38  //---------- Deviate Lightray
39  // ALIdouble deviRX = findExtraEntryValue("deviRX");
40  // ALIdouble deviRY = findExtraEntryValue("deviRY");
41  // lightray.shiftAndDeviateWhileTraversing( this, 0., 0., 0., deviRX, deviRY, 0.);
42  lightray.shiftAndDeviateWhileTraversing(this, 'R');
43  if (ALIUtils::debug >= 2) {
44  lightray.dumpData("Deviated ");
45  }
46 }
47 
48 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
49 //@@ Fast simulation of the light ray traversing
50 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
51 //@@ Traverse Plane Parallel Plate
52 //@@ Traslated to the backward plate of the plate splitter
53 //@@ Shifted in the splitter X direction by 'shiftX', and in the Y direction by 'shiftY'
54 //@@ and rotated around the splitter X axis by 'deviX' and around the Y axis by 'deviY'.
55 //@@
56 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
58  if (ALIUtils::debug >= 2)
59  std::cout << "LR: FAST TRAVERSE CUBE SPLITTER " << name() << std::endl;
60 
61  //---------- Get backward plate
62  ALIPlane plate = getPlate(false, false);
63  lightray.intersect(plate);
64  if (ALIUtils::debug >= 2) {
65  lightray.dumpData("Intersected with plate");
66  }
67  //---------- Shift and Deviate
68  lightray.shiftAndDeviateWhileTraversing(this, 'T');
69  /* ALIdouble shiftX = findExtraEntryValue("shiftX");
70  ALIdouble shiftY = findExtraEntryValue("shiftY");
71  ALIdouble deviTX = findExtraEntryValue("deviTX");
72  ALIdouble deviTY = findExtraEntryValue("deviTY");
73  lightray.shiftAndDeviateWhileTraversing( this, shiftX, shiftY, deviTX, deviTY);*/
74 
75  if (ALIUtils::debug >= 2) {
76  lightray.dumpData("Shifted and Deviated");
77  }
78 }
79 
80 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
81 //@@ Detailed simulation of deviation of the light ray (reflection, shift, ...)
82 
83 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
84 //@@ Detailed simulation of Reflection in Cube Splitter
85 //@@ The software gets the plane of entering as the forward splitter plane and the beam is refracted
86 //@@ The software gets the plane of reflection as the middle splitter plane
87 //@@ The beam is reflected in this plane.
88 //@@ The beam is refracted at exiting
89 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
91  if (ALIUtils::debug >= 2)
92  std::cout << "LR: DETAILED REFLECTION IN CUBE SPLITTER " << name() << std::endl;
93 
94  if (ALIUtils::debug >= 2)
95  ALIUtils::dump3v(centreGlob(), "centreGlob");
96  //---------- Get first plate
97  if (ALIUtils::debug >= 3)
98  std::cout << "%%%%% refracting at entering first plate " << std::endl;
99  if (ALIUtils::debug >= 3)
100  std::cout << "%%% getting first plate " << std::endl;
101  ALIPlane plate = getPlate(true, true);
102 
103  //---------- Refract
104  ALIdouble refra_ind1 = 1.;
105  ALIdouble refra_ind2 = findExtraEntryValue("refra_ind");
106  lightray.refract(plate, refra_ind1, refra_ind2);
107 
108  //---------- Get middle plate
109  if (ALIUtils::debug >= 3)
110  std::cout << "%%%%% reflecting in middle plate " << std::endl;
111  if (ALIUtils::debug >= 3)
112  std::cout << "%%% getting middle plate " << std::endl;
113  plate = getMiddlePlate();
114 
115  //---------- Reflect
116  lightray.reflect(plate);
117  if (ALIUtils::debug >= 2) {
118  lightray.dumpData("Reflected in plate");
119  }
120 
121  //--------- Get upper plate
122  if (ALIUtils::debug >= 3)
123  std::cout << "%%%%% getting second plate " << std::endl;
124  plate = getUpperPlate();
125  if (ALIUtils::debug >= 3)
126  std::cout << "%%%%% refracting at exiting second plate " << std::endl;
127  lightray.refract(plate, refra_ind2, refra_ind1);
128 
129  if (ALIUtils::debug >= 2) {
130  lightray.dumpData("After CubeSplitter");
131  }
132 }
133 
134 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
135 //@@ Detailed simulation of the light ray traversing
136 //@@ The beam enters the splitter, is refracted, traverses the splitter and finally is again refracted when it exits:
137 //@@ Get the intersection with the forward splitter plane
138 //@@ Refract the beam and propagate until it intersects the backward splitter plane.
139 //@@ Finally the beam is refracted again.
140 //@@
141 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
143  if (ALIUtils::debug >= 2)
144  std::cout << "LR: DETAILED TRAVERSE CUBE SPLITTER " << name() << std::endl;
145 
146  //---------- Get forward plate
147  ALIPlane plate = getPlate(true, true);
148 
149  //---------- Refract while entering splitter
150  ALIdouble refra_ind1 = 1.;
151  ALIdouble refra_ind2 = findExtraEntryValue("refra_ind");
152  lightray.refract(plate, refra_ind1, refra_ind2);
153  if (ALIUtils::debug >= 2) {
154  lightray.dumpData("Refracted in first plate");
155  }
156 
157  //---------- Get backward plate
158  plate = getPlate(false, true);
159  //---------- Refract while exiting splitter
160  lightray.refract(plate, refra_ind2, refra_ind1);
161  if (ALIUtils::debug >= 2) {
162  lightray.dumpData("Refracted in first plate");
163  }
164 }
165 
166 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
167 //@@ Get the middle semitransparent plate of a Cube Splittter
168 //@@ The point is defined taking the centre of the splitter,
169 //@@ The normal of this plane is obtained as the splitter Z rotated 45o around X
170 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
172  if (ALIUtils::debug >= 4)
173  std::cout << "%%% LR: GET MIDDLE PLATE " << name() << std::endl;
174  //---------- Get centre and normal of plate
175  //----- plate normal before wedge (Z axis of OptO)
176  ALIdouble anglePlanes;
177  ALIbool angpl = findExtraEntryValueIfExists("anglePlanes", anglePlanes);
178  if (!angpl) {
179  anglePlanes =
180  acos(0.) /
181  2.; //default is 45o !!! this creates problem in 'isr_medidas_globales.txt': laser goes along X and does not intersect cube if angles Y 0, anglePlanes 45
182  if (ALIUtils::debug >= 4)
183  std::cout << "anglePlanes default = " << anglePlanes / deg << std::endl;
184  }
185  CLHEP::Hep3Vector Axis(0., 0., 1.);
186  CLHEP::Hep3Vector XAxis(1., 0., 0.);
187  Axis.rotate(anglePlanes, XAxis);
188  CLHEP::HepRotation rmt = rmGlob();
189  CLHEP::Hep3Vector plate_normal = rmt * Axis;
190  if (ALIUtils::debug >= 3) {
191  ALIUtils::dumprm(rmt, "rmt before wedge angles");
192  ALIUtils::dump3v(plate_normal, "plate_normal before wedge");
193  }
194  //----- plate centre = OptO
195  CLHEP::Hep3Vector plate_point = centreGlob();
196 
197  //---------- Return plate plane
198  return ALIPlane(plate_point, plate_normal);
199 }
200 
201 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
202 //@@ Get the upper plate of a Cube Splittter
203 //@@ The point is defined taking the centre of the splitter,
204 //@@ The normal of this plane is obtained as the splitter Z rotated 45o around X
205 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
207  if (ALIUtils::debug >= 4)
208  std::cout << "LR: GET UPPER PLATE " << name() << std::endl;
209  //---------- Get centre and normal of plate
211  //----- plate normal before wedge (Y axis of OptO)
212  CLHEP::Hep3Vector Axis(0., 1., 0.);
213  CLHEP::HepRotation rmt = rmGlob();
214  CLHEP::Hep3Vector plate_normal = rmt * Axis;
215  if (ALIUtils::debug >= 3) {
216  ALIUtils::dumprm(rmt, "rmt before wedge angles");
217  ALIUtils::dump3v(plate_normal, "plate_normal before wedge");
218  }
219  //----- plate centre = OptO centre +1/2 width in Y direction
220  CLHEP::Hep3Vector plate_point = centreGlob();
221  plate_point += width / 2. * plate_normal;
222 
223  //---------- Return plate plane
224  return ALIPlane(plate_point, plate_normal);
225 }
226 
227 #ifdef COCOA_VIS
228 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
230  ALIColour* col = new ALIColour(0., 0., 0., 0.);
232  ALIbool wexists = findExtraEntryValueIfExists("width", width);
233  if (!wexists)
234  width = 4.;
235 
236  std::vector<ALIdouble> spar;
237  spar.push_back(width);
238  spar.push_back(width);
239  spar.push_back(width);
240  IgCocoaFileMgr::getInstance().addSolid(*this, "BOX", spar, col);
241 }
242 #endif
243 
244 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
246  ALIdouble go;
248  gomgr->getGlobalOptionValue("VisScale", go);
249 
251  "Box", go * 5. * cm / m, go * 5. * cm / m, go * 5. * cm / m); //COCOA internal units are meters
252 }
void fastTraversesLightRay(LightRay &lightray) override
const ALIdouble findExtraEntryValue(const ALIstring &eename) const
const CLHEP::Hep3Vector & centreGlob() const
Definition: OpticalObject.h:75
long double ALIdouble
Definition: CocoaGlobals.h:11
CocoaSolidShape * theSolidShape
void shiftAndDeviateWhileTraversing(const OpticalObject *opto, char behav)
Definition: LightRay.cc:235
static void dumprm(const CLHEP::HepRotation &rm, const std::string &msg, std::ostream &out=std::cout)
Definition: ALIUtils.cc:71
void refract(const ALIPlane &plate, const ALIdouble refra_ind1, const ALIdouble refra_ind2)
Definition: LightRay.cc:157
static ALIint debug
Definition: ALIUtils.h:34
const ALIstring & name() const
Definition: OpticalObject.h:58
static GlobalOptionMgr * getInstance()
const ALIbool findExtraEntryValueIfExists(const ALIstring &eename, ALIdouble &value) const
void detailedDeviatesLightRay(LightRay &lightray) override
int getGlobalOptionValue(const ALIstring &sstr, ALIdouble &val)
--— Search a string in theGlobalOptions and return 1 if found
bool ALIbool
Definition: CocoaGlobals.h:19
void constructSolidShape() override
void dumpData(const ALIstring &str) const
Definition: LightRay.cc:374
void detailedTraversesLightRay(LightRay &lightray) override
ALIPlane getUpperPlate()
const CLHEP::HepRotation & rmGlob() const
Definition: OpticalObject.h:83
static void dump3v(const CLHEP::Hep3Vector &vec, const std::string &msg)
Definition: ALIUtils.cc:58
void intersect(const ALIPlane &plane)
Definition: LightRay.cc:93
void fastDeviatesLightRay(LightRay &lightray) override
virtual void fillIguana()
Definition: OpticalObject.h:55
ALIPlane getPlate(const ALIbool forwardPlate, const ALIbool applyWedge)
col
Definition: cuy.py:1009
ALIPlane getMiddlePlate()
void reflect(const ALIPlane &plane)
Definition: LightRay.cc:138