CMS 3D CMS Logo

OptOOpticalSquare.cc
Go to the documentation of this file.
1 // COCOA class implementation file
2 //Id: OptOOpticalSquare
3 //CAT: Model
4 //
5 // History: v1.0
6 // Pedro Arce
7 
12 #include <iostream>
13 #include <iomanip>
14 #ifdef COCOA_VIS
15 #include "Alignment/IgCocoaFileWriter/interface/IgCocoaFileMgr.h"
16 #include "Alignment/CocoaVisMgr/interface/ALIColour.h"
17 #endif
20 
21 using namespace CLHEP;
22 
23 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
24 //@@ Detailed simulation of deviation of the light ray
25 //@@ Refract at entering, reflect in two of the plates and gets deviated 90o, refract at exiting
26 //@@
27 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
29  if (ALIUtils::debug >= 2)
30  std::cout << "LR: DETAILED DEVIATION IN OPTICAL SQUARE " << name() << std::endl;
31 
32  calculateFaces(true);
33 
34  //---------- Deviate in prism
35  //---------- Refract after entering face 0, reflect in face 1, reflect in face 2, refract after face 3
36  const ALIdouble refra_ind = findExtraEntryValueMustExist("refra_ind");
37  const ALIdouble refra_ind0 = 1.;
38 
39  ALIint ii;
40  for (ii = 0; ii < 4; ii++) {
41  if (ii == 0) {
42  if (ALIUtils::debug >= 3)
43  std::cout << "## OPTOOPTICALSQUARE: refract in face " << ii << std::endl;
44  lightray.refract(ALIPlane(faceP[ii], faceV[ii]), refra_ind0, refra_ind);
45  } else if (ii == 3) {
46  //---- interchange refraction index for exiting instead of entering
47  lightray.refract(ALIPlane(faceP[ii], faceV[ii]), refra_ind, refra_ind0);
48  } else {
49  lightray.reflect(ALIPlane(faceP[ii], faceV[ii]));
50  }
51  if (ALIUtils::debug >= 3) {
52  lightray.dumpData("After face ");
53  }
54  }
55 
56  //----- checks that it is inside prism and the order of faces hit is the good one
57  //
58 }
59 
60 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
61 //@@ Detailed simulation of traversing of the light ray
62 //@@
63 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
65  if (ALIUtils::debug >= 2)
66  std::cout << "LR: DETAILED TRAVERSES OPTICAL SQUARE " << name() << std::endl;
67 
68  calculateFaces(true);
69  const ALIdouble refra_ind = findExtraEntryValueMustExist("refra_ind");
70  const ALIdouble refra_ind0 = 1.;
71 
72  lightray.refract(ALIPlane(faceP[0], faceV[0]), refra_ind0, refra_ind);
73  lightray.refract(ALIPlane(faceP[4], faceV[4]), refra_ind, refra_ind0);
74 }
75 
76 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
77 //@@ Fast simulation of deviation of the light ray
78 //@@ Reflect in two of the plates and gets deviated 90o
79 //@@
80 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
82  if (ALIUtils::debug >= 2)
83  std::cout << "LR: FAST DEVIATION IN OPTICAL SQUARE " << name() << std::endl;
84 
85  calculateFaces(false);
86 
87  //---------- Deviate in prism
88  lightray.reflect(ALIPlane(faceP[1], faceV[1]));
89  if (ALIUtils::debug >= 3) {
90  lightray.dumpData("After face 1");
91  }
92  lightray.reflect(ALIPlane(faceP[2], faceV[2]));
93  if (ALIUtils::debug >= 3) {
94  lightray.dumpData("After face 2");
95  }
96  lightray.intersect(ALIPlane(faceP[3], faceV[3]));
97  if (ALIUtils::debug >= 3) {
98  lightray.dumpData("intersected at face 3");
99  }
100 
101  //----- Deviates by 'devi' X & Y??
102  lightray.shiftAndDeviateWhileTraversing(this, 'R');
103  /* ALIdouble deviRX = findExtraEntryValue("deviRX");
104  ALIdouble deviRY = findExtraEntryValue("deviRY");
105  ALIdouble shiftRX = findExtraEntryValue("shiftRX");
106  ALIdouble shiftRY = findExtraEntryValue("shiftRY");
107  lightray.shiftAndDeviateWhileTraversing( this, shiftRX, shiftRY, deviRX, deviRY);
108  */
109 
110  if (ALIUtils::debug >= 2) {
111  // std::cout << " shiftRX " << shiftRX << " shiftRY " << shiftRY << std::endl;
112  // std::cout << " deviRX " << deviRX << " deviRY " << deviRY << std::endl;
113  lightray.dumpData("Deviated ");
114  }
115 }
116 
117 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
118 //@@
119 //@@
120 //@@
121 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
122 //---------- Fast simulation of the light ray traversing
124  // std::cerr << " WARNING there should be an extra piece to make entering and exiting surfaces parallel (like in modified_rhomboid_prism) " << std::endl;
125 
126  calculateFaces(false);
127 
128  lightray.intersect(ALIPlane(faceP[1], faceV[1]));
129  //---------- Shift and Deviate
130  lightray.shiftAndDeviateWhileTraversing(this, 'T');
131  /* ALIdouble shiftX = findExtraEntryValue("shiftTX");
132  ALIdouble shiftY = findExtraEntryValue("shiftTY");
133  ALIdouble deviTX = findExtraEntryValue("deviTX");
134  ALIdouble deviTY = findExtraEntryValue("deviTY");
135  lightray.shiftAndDeviateWhileTraversing( this, shiftX, shiftY, deviTX, deviTY);
136  */
137  if (ALIUtils::debug >= 2) {
138  lightray.dumpData("Shifted and Deviated");
139  }
140 }
141 
142 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
143 //@@ Calculate the centre points and normal std::vector of each of the four pentaprism faces the light ray may touch
144 //@@ Build the four faces. 0: entry, 1: 1st reflection, 2: 2nd reflection, 3: exit (look at figure in documentation)
145 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
147  ALIint numberOfFaces = 5;
148 
149  //----- useful variables
150  CLHEP::Hep3Vector opto_centre = centreGlob();
151  if (ALIUtils::debug >= 3)
152  std::cout << "opto_centre " << opto_centre << std::endl;
153  const ALIdouble hlen1 = findExtraEntryValueMustExist("length1") / 2.;
154  const ALIdouble hlen2 = findExtraEntryValueMustExist("length2") / 2.;
155  ALIdouble ang = 67.5 * acos(0.) / 90.;
156 
157  //- if( ALIUtils::debug >= 3) std::cout << "length 1 " << 2*hlen1 << " length 2 " << hlen2 * 2 << std::endl;
158  faceP[0] = CLHEP::Hep3Vector(0, 0, -hlen1);
159  faceV[0] = CLHEP::Hep3Vector(0, 0, -1);
160  faceP[1] = CLHEP::Hep3Vector(0, hlen1 - hlen2 * sin(ang), hlen1 + hlen2 * cos(ang));
161  faceV[1] = CLHEP::Hep3Vector(0, cos(ang), sin(ang));
162 
163  faceP[2] = CLHEP::Hep3Vector(0, -hlen1 - hlen2 * cos(ang), -hlen1 + hlen2 * sin(ang));
164  faceV[2] = CLHEP::Hep3Vector(0, -sin(ang), -cos(ang));
165  faceP[3] = CLHEP::Hep3Vector(0, hlen1, 0);
166  faceV[3] = CLHEP::Hep3Vector(0, 1, 0);
167 
168  // face of added piece (so that light when traversing finds parallel surfaces at entry and exit)
169  faceP[4] = CLHEP::Hep3Vector(0, 0, hlen1 + 2 * hlen2 * cos(ang));
170  faceV[4] = CLHEP::Hep3Vector(0, 0, 1);
171 
172  //--------- Put faces in global reference frame
173  CLHEP::HepRotation rmt = rmGlob();
174  ALIint ii;
175  if (ALIUtils::debug >= 3) {
176  std::cout << " optical_square centre" << opto_centre << std::endl;
177  }
178  for (ii = 0; ii < numberOfFaces; ii++) {
179  faceP[ii] = rmt * faceP[ii];
180  faceP[ii] += opto_centre;
181  faceV[ii] = rmt * faceV[ii];
182  if (ALIUtils::debug >= 3) {
183  std::cout << "point at face " << ii << ": " << faceP[ii] << std::endl;
184  std::cout << "normal at face " << ii << ": " << faceV[ii] << std::endl;
185  }
186  }
187 
188  //----------- Correct faces 1 & 2 by wedge: rotate each face normal 1/2 of the wedge around two axis perpendicular to normal
189  if (isDetailed) {
190  ALIdouble wedge, wedgeX, wedgeY;
191  const ALIbool wxy = findExtraEntryValueIfExists("wedge", wedge);
192  if (!wxy) {
193  wedgeX = findExtraEntryValue("wedgeX");
194  wedgeY = findExtraEntryValue("wedgeY");
195  } else {
196  wedgeX = wedge;
197  wedgeY = wedge;
198  }
199 
200  //----- One axis is along X axis for the two faces (X belong to both faces)
201  if (ALIUtils::debug >= 4)
202  std::cout << "OptOOpticalSquare calculateFaces: wedgeX " << wedgeX << " wedgeY " << wedgeY << std::endl;
203  CLHEP::Hep3Vector Axis1(1., 0., 0.);
204  Axis1 = rmt * Axis1;
205  if (ALIUtils::debug >= 4) {
206  ALIUtils::dump3v(faceV[1], "faceV[1] before wedge");
207  ALIUtils::dump3v(faceV[2], "faceV[2] before wedge");
208  }
209  faceV[1].rotate(0.5 * wedgeX, Axis1);
210  if (ALIUtils::debug >= 4)
211  ALIUtils::dump3v(Axis1, " Axis1 in faceV[1] ");
212  faceV[2].rotate(-0.5 * wedgeX, Axis1);
213  if (ALIUtils::debug >= 4) {
214  ALIUtils::dump3v(Axis1, " Axis1 in faceV[2] ");
215  ALIUtils::dump3v(faceV[1], "faceV[1] after wedge X");
216  ALIUtils::dump3v(faceV[2], "faceV[2] after wedge X");
217  }
218 
219  //----- Other axis perpendicular to first and to normal of each face
220  CLHEP::Hep3Vector Axis2 = Axis1;
221  Axis2 = Axis2.cross(faceV[1]);
222  faceV[1].rotate(0.5 * wedgeY, Axis2);
223  if (ALIUtils::debug >= 4)
224  ALIUtils::dump3v(Axis2, " Axis2 in faceV[1] ");
225  Axis2 = Axis1;
226  Axis2 = Axis2.cross(faceV[2]);
227  faceV[2].rotate(-0.5 * wedgeY, Axis2);
228  if (ALIUtils::debug >= 4) {
229  ALIUtils::dump3v(Axis2, " Axis2 in faceV[2] ");
230  ALIUtils::dump3v(faceV[1], "faceV[1] after wedge Y");
231  ALIUtils::dump3v(faceV[2], "faceV[2] after wedge Y");
232  }
233  }
234 }
235 
236 #ifdef COCOA_VIS
237 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
239  ALIColour* col = new ALIColour(0., 0., 1., 0.);
240  ALIdouble length1;
241  ALIbool wexists = findExtraEntryValueIfExists("length1", length1);
242  if (!wexists)
243  length1 = 4.;
244  ALIdouble length2;
245  wexists = findExtraEntryValueIfExists("length2", length2);
246  if (!wexists)
247  length2 = 4.;
248 
249  std::vector<ALIdouble> spar;
250  spar.push_back(length1);
251  spar.push_back(length2);
252  IgCocoaFileMgr::getInstance().addSolid(*this, "OPTSQR", spar, col);
253 }
254 #endif
255 
256 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
258  ALIdouble go;
260  gomgr->getGlobalOptionValue("VisScale", go);
261 
262  theSolidShape = new CocoaSolidShapeBox(
263  "Box", go * 5. * cm / m, go * 5. * cm / m, go * 5. * cm / m); //COCOA internal units are meters
264 }
long double ALIdouble
Definition: CocoaGlobals.h:11
void shiftAndDeviateWhileTraversing(const OpticalObject *opto, char behav)
Definition: LightRay.cc:235
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
void refract(const ALIPlane &plate, const ALIdouble refra_ind1, const ALIdouble refra_ind2)
Definition: LightRay.cc:157
int ALIint
Definition: CocoaGlobals.h:15
static ALIint debug
Definition: ALIUtils.h:34
static GlobalOptionMgr * getInstance()
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
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
void dumpData(const ALIstring &str) const
Definition: LightRay.cc:374
void fastTraversesLightRay(LightRay &lightray) override
void fastDeviatesLightRay(LightRay &lightray) override
void constructSolidShape() override
ii
Definition: cuy.py:589
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 calculateFaces(ALIbool isDetailed)
virtual void fillIguana()
Definition: OpticalObject.h:55
col
Definition: cuy.py:1009
void detailedTraversesLightRay(LightRay &lightray) override
void reflect(const ALIPlane &plane)
Definition: LightRay.cc:138