CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 {
29  if (ALIUtils::debug >= 2) 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 
50 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
51 //@@ Fast simulation of the light ray traversing
52 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
53 //@@ Traverse Plane Parallel Plate
54 //@@ Traslated to the backward plate of the plate splitter
55 //@@ Shifted in the splitter X direction by 'shiftX', and in the Y direction by 'shiftY'
56 //@@ and rotated around the splitter X axis by 'deviX' and around the Y axis by 'deviY'.
57 //@@
58 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
60 {
61  if (ALIUtils::debug >= 2) std::cout << "LR: FAST TRAVERSE CUBE SPLITTER " << name() << std::endl;
62 
63  //---------- Get backward plate
64  ALIPlane plate = getPlate(0, 0);
65  lightray.intersect( plate );
66  if (ALIUtils::debug >= 2) {
67  lightray.dumpData("Intersected with plate");
68  }
69  //---------- Shift and Deviate
70  lightray.shiftAndDeviateWhileTraversing( this, 'T');
71  /* ALIdouble shiftX = findExtraEntryValue("shiftX");
72  ALIdouble shiftY = findExtraEntryValue("shiftY");
73  ALIdouble deviTX = findExtraEntryValue("deviTX");
74  ALIdouble deviTY = findExtraEntryValue("deviTY");
75  lightray.shiftAndDeviateWhileTraversing( this, shiftX, shiftY, deviTX, deviTY);*/
76 
77  if (ALIUtils::debug >= 2) {
78  lightray.dumpData("Shifted and Deviated");
79  }
80 
81 }
82 
83 
84 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
85 //@@ Detailed simulation of deviation of the light ray (reflection, shift, ...)
86 
87 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88 //@@ Detailed simulation of Reflection in Cube Splitter
89 //@@ The software gets the plane of entering as the forward splitter plane and the beam is refracted
90 //@@ The software gets the plane of reflection as the middle splitter plane
91 //@@ The beam is reflected in this plane.
92 //@@ The beam is refracted at exiting
93 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
95 {
96  if (ALIUtils::debug >= 2) std::cout << "LR: DETAILED REFLECTION IN CUBE SPLITTER " << name() << std::endl;
97 
98  if(ALIUtils::debug >= 2) ALIUtils::dump3v( centreGlob(), "centreGlob");
99  //---------- Get first plate
100  if (ALIUtils::debug >= 3) std::cout << "%%%%% refracting at entering first plate " << std::endl;
101  if (ALIUtils::debug >= 3) std::cout << "%%% getting first plate " << std::endl;
102  ALIPlane plate = getPlate(1, 1);
103 
104  //---------- Refract
105  ALIdouble refra_ind1 = 1.;
106  ALIdouble refra_ind2 = findExtraEntryValue("refra_ind");
107  lightray.refract( plate, refra_ind1, refra_ind2 );
108 
109  //---------- Get middle plate
110  if (ALIUtils::debug >= 3) std::cout << "%%%%% reflecting in middle plate " << std::endl;
111  if (ALIUtils::debug >= 3) std::cout << "%%% getting middle plate " << std::endl;
112  plate = getMiddlePlate();
113 
114  //---------- Reflect
115  lightray.reflect( plate );
116  if (ALIUtils::debug >= 2) {
117  lightray.dumpData("Reflected in plate");
118  }
119 
120  //--------- Get upper plate
121  if (ALIUtils::debug >= 3) std::cout << "%%%%% getting second plate " << std::endl;
122  plate = getUpperPlate();
123  if (ALIUtils::debug >= 3) std::cout << "%%%%% refracting at exiting second plate " << std::endl;
124  lightray.refract( plate, refra_ind2, refra_ind1 );
125 
126  if (ALIUtils::debug >= 2) {
127  lightray.dumpData("After CubeSplitter");
128  }
129 
130 }
131 
132 
133 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
134 //@@ Detailed simulation of the light ray traversing
135 //@@ The beam enters the splitter, is refracted, traverses the splitter and finally is again refracted when it exits:
136 //@@ Get the intersection with the forward splitter plane
137 //@@ Refract the beam and propagate until it intersects the backward splitter plane.
138 //@@ Finally the beam is refracted again.
139 //@@
140 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
142 {
143  if (ALIUtils::debug >= 2) std::cout << "LR: DETAILED TRAVERSE CUBE SPLITTER " << name() << std::endl;
144 
145  //---------- Get forward plate
146  ALIPlane plate = getPlate(1, 1);
147 
148  //---------- Refract while entering splitter
149  ALIdouble refra_ind1 = 1.;
150  ALIdouble refra_ind2 = findExtraEntryValue("refra_ind");
151  lightray.refract( plate, refra_ind1, refra_ind2 );
152  if (ALIUtils::debug >= 2) {
153  lightray.dumpData("Refracted in first plate");
154  }
155 
156  //---------- Get backward plate
157  plate = getPlate(0, 1);
158  //---------- Refract while exiting splitter
159  lightray.refract( plate, refra_ind2, refra_ind1 );
160  if (ALIUtils::debug >= 2) {
161  lightray.dumpData("Refracted in first plate");
162  }
163 
164 }
165 
166 
167 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
168 //@@ Get the middle semitransparent plate of a Cube Splittter
169 //@@ The point is defined taking the centre of the splitter,
170 //@@ The normal of this plane is obtained as the splitter Z rotated 45o around X
171 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
173 {
174  if (ALIUtils::debug >= 4) std::cout << "%%% LR: GET MIDDLE PLATE " << name() << std::endl;
175  //---------- Get centre and normal of plate
176  //----- plate normal before wedge (Z axis of OptO)
177  ALIdouble anglePlanes;
178  ALIbool angpl = findExtraEntryValueIfExists("anglePlanes", anglePlanes);
179  if( !angpl ) {
180  anglePlanes = acos(0.)/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
181  if (ALIUtils::debug >= 4) std::cout << "anglePlanes default = " << anglePlanes/deg << std::endl;
182  }
183  CLHEP::Hep3Vector Axis(0., 0., 1.);
184  CLHEP::Hep3Vector XAxis(1., 0., 0.);
185  Axis.rotate( anglePlanes, XAxis);
186  CLHEP::HepRotation rmt = rmGlob();
187  CLHEP::Hep3Vector plate_normal = rmt*Axis;
188  if (ALIUtils::debug >= 3) {
189  ALIUtils::dumprm( rmt, "rmt before wedge angles" );
190  ALIUtils::dump3v( plate_normal, "plate_normal before wedge");
191  }
192  //----- plate centre = OptO
193  CLHEP::Hep3Vector plate_point = centreGlob();
194 
195  //---------- Return plate plane
196  return ALIPlane(plate_point, plate_normal);
197 
198 }
199 
200 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
201 //@@ Get the upper plate of a Cube Splittter
202 //@@ The point is defined taking the centre of the splitter,
203 //@@ The normal of this plane is obtained as the splitter Z rotated 45o around X
204 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
206 {
207  if (ALIUtils::debug >= 4) std::cout << "LR: GET UPPER PLATE " << name() << std::endl;
208  //---------- Get centre and normal of plate
210  //----- plate normal before wedge (Y axis of OptO)
211  CLHEP::Hep3Vector Axis(0., 1., 0.);
212  CLHEP::HepRotation rmt = rmGlob();
213  CLHEP::Hep3Vector plate_normal = rmt*Axis;
214  if (ALIUtils::debug >= 3) {
215  ALIUtils::dumprm( rmt, "rmt before wedge angles" );
216  ALIUtils::dump3v( plate_normal, "plate_normal before wedge");
217  }
218  //----- plate centre = OptO centre +1/2 width in Y direction
219  CLHEP::Hep3Vector plate_point = centreGlob();
220  plate_point += width/2. * plate_normal;
221 
222  //---------- Return plate plane
223  return ALIPlane(plate_point, plate_normal);
224 
225 }
226 
227 
228 #ifdef COCOA_VIS
229 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
231 {
232  ALIColour* col = new ALIColour( 0., 0., 0., 0. );
234  ALIbool wexists = findExtraEntryValueIfExists("width",width);
235  if( !wexists ) width = 4.;
236 
237  std::vector<ALIdouble> spar;
238  spar.push_back(width);
239  spar.push_back(width);
240  spar.push_back(width);
241  IgCocoaFileMgr::getInstance().addSolid( *this, "BOX", spar, col);
242 }
243 #endif
244 
245 
246 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
248 {
249  ALIdouble go;
251  gomgr->getGlobalOptionValue("VisScale", go );
252 
253  theSolidShape = new CocoaSolidShapeBox( "Box", go*5.*cm/m, go*5.*cm/m, go*5.*cm/m ); //COCOA internal units are meters
254 }
long double ALIdouble
Definition: CocoaGlobals.h:11
CocoaSolidShape * theSolidShape
void shiftAndDeviateWhileTraversing(const OpticalObject *opto, char behav)
Definition: LightRay.cc:240
static void dumprm(const CLHEP::HepRotation &rm, const std::string &msg, std::ostream &out=std::cout)
Definition: ALIUtils.cc:77
const ALIbool findExtraEntryValueIfExists(const ALIstring &eename, ALIdouble &value) const
void refract(const ALIPlane &plate, const ALIdouble refra_ind1, const ALIdouble refra_ind2)
Definition: LightRay.cc:162
static ALIint debug
Definition: ALIUtils.h:35
static GlobalOptionMgr * getInstance()
const CLHEP::HepRotation & rmGlob() const
int getGlobalOptionValue(const ALIstring &sstr, ALIdouble &val)
--— Search a string in theGlobalOptions and return 1 if found
bool ALIbool
Definition: CocoaGlobals.h:19
virtual void fastDeviatesLightRay(LightRay &lightray)
virtual void fastTraversesLightRay(LightRay &lightray)
const ALIdouble findExtraEntryValue(const ALIstring &eename) const
ALIPlane getUpperPlate()
static void dump3v(const CLHEP::Hep3Vector &vec, const std::string &msg)
Definition: ALIUtils.cc:61
void intersect(const ALIPlane &plane)
Definition: LightRay.cc:100
virtual void fillIguana()
Definition: OpticalObject.h:56
const CLHEP::Hep3Vector & centreGlob() const
Definition: OpticalObject.h:85
ALIPlane getPlate(const ALIbool forwardPlate, const ALIbool applyWedge)
void dumpData(const ALIstring &str) const
Definition: LightRay.cc:381
ALIPlane getMiddlePlate()
tuple cout
Definition: gather_cfg.py:121
const ALIstring & name() const
Definition: OpticalObject.h:60
int col
Definition: cuy.py:1008
void reflect(const ALIPlane &plane)
Definition: LightRay.cc:141
virtual void detailedDeviatesLightRay(LightRay &lightray)
virtual void detailedTraversesLightRay(LightRay &lightray)