CMS 3D CMS Logo

CocoaToDDLMgr.cc
Go to the documentation of this file.
1 // COCOA class implementation file
2 //Id: CocoaToDDLMgr.cc
3 //
4 // History: v1.0
5 // Pedro Arce
6 
9 #define UC(val, category) UnitConverter(val, category).ucstring()
10 
14 
19 
21 
22 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
24  if (!instance) {
25  instance = new CocoaToDDLMgr;
26  }
27  return instance;
28 }
29 
30 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
32  //---- Write header
34 
35  //---- Write materials
37 
38  //---- Write solids
39  writeSolids();
40 
41  //---- Write logical volumes
43 
44  //---- Write physical volumes
46 
47  //---- Write rotations
49 
50  //---- Write SpecPar's
51  writeSpecPars();
52 
53  newPartPost(filename, "");
54 }
55 
56 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
58 
59 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
61  newSectPre_ma("");
62  auto& optolist = Model::OptOList();
63  for (auto ite = optolist.begin(); ite != optolist.end(); ite++) {
64  if ((*ite)->type() == "system")
65  continue;
66  CocoaMaterialElementary* mat = (*ite)->getMaterial();
67  //- std::cout << " mat of opto " << (*ite)->name() << " = " << mat->getName() << std::endl;
68  if (mat) {
69  if (!materialIsRepeated(mat))
70  ma(mat);
71  }
72  }
73 
74  newSectPost_ma("");
75 }
76 
77 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
79  newSectPre_so("");
80 
81  auto& optolist = Model::OptOList();
82  for (auto ite = optolist.begin(); ite != optolist.end(); ite++) {
83  bool alreadyWritten = false;
84  for (auto ite2 = optolist.begin(); ite2 != ite; ite2++) {
85  if ((*ite)->shortName() == (*ite2)->shortName()) {
86  alreadyWritten = true;
87  }
88  }
89  std::cout << " CocoaToDDLMgr::writeSolids() " << alreadyWritten << *ite;
90  std::cout << (*ite)->name() << std::endl;
91  if (!alreadyWritten)
92  so(*ite);
93  }
94 
95  newSectPost_so("");
96 }
97 
98 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
100  newSectPre_lv("");
101 
102  auto& optolist = Model::OptOList();
103  for (auto ite = optolist.begin(); ite != optolist.end(); ite++) {
104  bool alreadyWritten = false;
105  for (auto ite2 = optolist.begin(); ite2 != ite; ite2++) {
106  if ((*ite)->shortName() == (*ite2)->shortName()) {
107  alreadyWritten = true;
108  }
109  }
110  if (!alreadyWritten)
111  lv(*ite);
112  }
113 
114  newSectPost_lv("");
115 }
116 
117 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
119  newSectPre_pv("");
120 
121  auto& optolist = Model::OptOList();
122  for (auto ite = optolist.begin(); ite != optolist.end(); ite++) {
123  if ((*ite)->type() == "system")
124  continue;
125  pv(*ite);
126  }
127 
128  newSectPost_pv("");
129 }
130 
131 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
133  newSectPre_ro("");
134  std::vector<CLHEP::HepRotation>::const_iterator ite;
135  int nc = 0;
136  for (ite = theRotationList.begin(); ite != theRotationList.end(); ++ite) {
137  //- std::cout << nc << " rot size " << theRotationList.size() << std::endl;
138  ro(*ite, nc);
139  nc++;
140  }
141  newSectPost_ro("");
142 }
143 
144 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
146  newSectPre_specPar("");
147 
148  auto& optolist = Model::OptOList();
149  for (auto ite = optolist.begin(); ite != optolist.end(); ite++) {
150  if ((*ite)->type() == "system")
151  continue;
152  specPar(*ite);
153  }
154 
156 
157  //---- Write Measurements's
159 
161 }
162 
163 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
164 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
166  filename_ = name;
167  file_.open(filename_.c_str());
168  file_.precision(8);
169  file_ << "<?xml version=\"1.0\"?>" << std::endl;
170 
171  // all files get schema references and namespaces.
172  file_ << "<DDDefinition xmlns=\"http://www.cern.ch/cms/DDL\""
173  << " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\""
174  << " xsi:schemaLocation=\"http://www.cern.ch/cms/DDL ../../DDLSchema/DDLSchema.xsd\">" << std::endl
175  << std::endl;
176 
177 #ifdef gdebug
178  cout << "part-pre:" << name << std::endl;
179 #endif
180 }
181 
182 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
184  file_ << std::endl << "</DDDefinition>" << std::endl;
185  file_.close();
186 }
187 
188 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
189 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
191 #ifdef gdebug
192  std::cout << " sect-mat-pre:" << name << '-' << std::endl;
193 #endif
194  newSectPre(filename_, std::string("MaterialSection"));
195 }
196 
197 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
199  theMaterialList.push_back(ma);
200 
201 #ifdef gdebug
202  cout << " ma:" << ma->getName() << std::endl;
203 #endif
204 
205  ALIfloat density = ma->getDensity();
206 
207  // start tag
208  file_ << " <ElementaryMaterial";
209  ALIstring cSymbol = ma->getSymbol();
210 
211  // name attribute
212  file_ << " name=\"" << ma->getName() << "\"";
213 
214  // put out common attributes
215  // file_ << " density=\"" << UnitConverter(density,"Volumic Mass") << "\"";
216  file_ << " density=\"" << UC(density, "Volumic Mass") << "\"";
217  file_ << " symbol=\"" << ma->getSymbol() << "\"";
218 
219  // finish last two attributes and end material element
220  file_ << " atomicWeight=\"" << (ma->getA()) << "*g/mole\""
221  << " atomicNumber=\"" << ma->getZ() << "\""
222  << "/>" << std::endl;
223 }
224 
225 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
227 #ifdef gdebug
228  cout << " sect-mat-post:" << name << '-' << std::endl;
229 #endif
230  newSectPost("MaterialSection");
231 }
232 
233 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
234 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
236 #ifdef gdebug
237  cout << " sect-so-pre:" << name << '-' << std::endl;
238 #endif
239  newSectPre(filename_, std::string("SolidSection"));
240 }
241 
242 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
244  std::cout << " CocoaToDDLMgr::so( " << opto;
245  std::cout << " " << opto->shortName() << std::endl;
246 
247  std::string name = opto->shortName();
248 
249  if (opto->type() == "system") {
250  // file_ << " <Box name=\"" << name << "\"";
251  file_ << " <Box name=\"" << opto->name() << "\"";
252  file_ << " dx=\"10.*m"
253  << "\" dy=\"10.*m"
254  << "\" dz=\"10.*m"
255  << "\"/>" << std::endl;
256  return;
257  }
258 
259  CocoaSolidShape* so = opto->getSolidShape();
260 
261  std::cout << " CocoaToDDLMgr::so( so " << so << std::endl;
262  std::string solidType = so->getType();
263 
264  if (solidType == "Box") {
265  file_ << " <" << solidType << " name=\"" << name << "\"";
266  CocoaSolidShapeBox* sb = dynamic_cast<CocoaSolidShapeBox*>(so);
267  file_ << " dx=\"" << UC(sb->getXHalfLength(), "Length") << "\" dy=\"" << UC(sb->getYHalfLength(), "Length")
268  << "\" dz=\"" << UC(sb->getZHalfLength(), "Length") << "\"/>" << std::endl;
269  } else if (solidType == "Tubs") {
270  CocoaSolidShapeTubs* tu = dynamic_cast<CocoaSolidShapeTubs*>(so);
271  file_ << " <" << solidType << " name=\"" << name << "\""
272  << " rMin=\"" << UC(tu->getInnerRadius(), "Length") << "\""
273  << " rMax=\"" << UC(tu->getOuterRadius(), "Length") << "\""
274  << " dz=\"" << UC(tu->getZHalfLength(), "Length") << "\""
275  << " startPhi=\"" << UC(tu->getStartPhiAngle(), "Angle") << "\""
276  << " deltaPhi=\"" << UC(tu->getDeltaPhiAngle(), "Angle") << "\""
277  << "/>" << std::endl;
278  }
279  /* else if (solidType == "Cons")
280  {
281  G4Cons * cn = dynamic_cast < G4Cons * > (so);
282  file_ << " <" << solidType
283  << " name=\"" << name << "\""
284  << " dz=\"" << UC(cn->getZHalfLength(),"Length") << "\""
285  << " rMin1=\"" << UC(cn->getInnerRadiusMinusZ(),"Length") << "\""
286  << " rMax1=\"" << UC(cn->getOuterRadiusMinusZ(),"Length") << "\""
287  << " rMin2=\"" << UC(cn->getInnerRadiusPlusZ(),"Length") << "\""
288  << " rMax2=\"" << UC(cn->getOuterRadiusPlusZ(),"Length") << "\""
289  << " startPhi=\"" << UC(cn->getStartPhiAngle(),"Angle") << "\""
290  << " deltaPhi=\"" << UC(cn->getDeltaPhiAngle(),"Angle") << "\""
291  //<< " lengthUnit=\"mm\" angleUnit=\"degree\"/>"
292  << " />" << std::endl;
293  }
294  else if (solidType == "Polycone")
295  {
296  G4Polycone * pc = dynamic_cast < G4Polycone * > (so);
297  file_ << " <Polycone name=\"" << name<< "\"";
298  bool isOpen = pc->IsOpen();
299  G4int numRZCorner = (dynamic_cast < G4Polycone * > (so))->getNumRZCorner();
300 
301  file_ << " startPhi=\"" << UC(pc->getStartPhi(),"Angle") << "\""
302  //<< " deltaPhi=\"" << UC(fabs((pc->getEndPhi()/deg - pc->getStartPhi()/deg))*deg,"Angle") << "\""
303  //<< " deltaPhi=\"" << UC(pc->getEndPhi(),"Angle") << "\""
304  << " deltaPhi=\"" << UC(pc->original_parameters->Opening_angle,"Angle") << "\""
305  //<< " angleUnit=\"degree\">"
306  << " >" << std::endl;
307 
308  G4PolyconeSideRZ rz;
309 
310  //liendl: FIXME put a switch which decides whether RZ or Rmin,Rmax,Z types should
311  // by generated ....
312  //outPolyZSections(rz, (dynamic_cast < G4Polycone * > (so)), numRZCorner);
313  G4double * zVal;
314  G4double * rmin;
315  G4double * rmax;
316  G4int zPlanes;
317  zPlanes = pc->original_parameters->Num_z_planes;
318  zVal = pc->original_parameters->Z_values;
319  rmin = pc->original_parameters->Rmin;
320  rmax = pc->original_parameters->Rmax;
321  outPolySections(zPlanes, zVal, rmin, rmax);
322  file_ << " </Polycone> " << std::endl;
323  }
324  else if (solidType == "Polyhedra")
325  {
326  // bool isOpen = (dynamic_cast < G4Polyhedra * > (so))->IsOpen();
327  G4Polyhedra * ph = (dynamic_cast < G4Polyhedra * > (so));
328  G4int numRZCorner = ph->getNumRZCorner();
329 
330  file_ << " <Polyhedra name=\"" << name<< "\""
331  << " numSide=\"" << ph->getNumSide() << "\""
332  << " startPhi=\"" << UC(ph->getStartPhi(),"Angle") << "\""
333  //<< " deltaPhi=\"" << UC(fabs((ph->getEndPhi()/deg - ph->getStartPhi()/deg))*deg,"Angle") << "\""
334  << " deltaPhi=\"" << UC(ph->original_parameters->Opening_angle,"Angle") << "\""
335  << " >" << std::endl;
336 
337  G4PolyhedraSideRZ rz;
338  //liendl: FIXME put a switch which decides whether RZ or Rmin,Rmax,Z types should
339  // by generated ....
340  // outPolyZSections(rz, (dynamic_cast < G4Polyhedra * > (so)), numRZCorner);
341  G4double * zVal;
342  G4double * rmin;
343  G4double * rmax;
344  // convertRad of ctor of G4Polyhedra(..) ....
345  G4double strangeG3G4Factor = cos(0.5*ph->original_parameters->Opening_angle/G4double(ph->getNumSide()));
346  G4int zPlanes;
347  zPlanes = ph->original_parameters->Num_z_planes;
348  zVal = ph->original_parameters->Z_values;
349  rmin = ph->original_parameters->Rmin;
350  rmax = ph->original_parameters->Rmax;
351  for (int i=0; i<zPlanes;++i) {
352  *(rmin+i) = *(rmin+i) * strangeG3G4Factor;
353  *(rmax+i) = *(rmax+i) * strangeG3G4Factor;
354  }
355  outPolySections(zPlanes, zVal, rmin, rmax);
356 
357  file_ << " </Polyhedra>" << std::endl;
358  }
359  else if (solidType == "Trapezoid")
360  {
361  // DDL fields
362  // ALP1, ALP2, Bl1, Bl2, Dz, H1, H2, Phi, Thet, TL1, TL2, lengthUnit, angleUnit
363  // Phi and Theta are !NOT!optional.
364  G4Trap * trp = dynamic_cast < G4Trap * > (so);
365  G4ThreeVector symAxis(trp->getSymAxis());
366  double theta, phi;
367  theta = symAxis.theta();
368  phi = symAxis.phi();
369 
370  file_ << " <" << solidType
371  << " name=\"" << name << "\""
372  << " dz=\"" << UC(trp->getZHalfLength(),"Length") << "\""
373  << " alp1=\"" << UC(atan(trp->getTanAlpha1()/rad),"Angle") << "\""
374  << " bl1=\"" << UC(trp->getXHalfLength1(),"Length") << "\""
375  << " tl1=\"" << UC(trp->getXHalfLength2(),"Length") << "\""
376  << " h1=\"" << UC(trp->getYHalfLength1(),"Length") << "\""
377  << " alp2=\"" << UC(atan(trp->getTanAlpha2()/rad),"Angle") << "\""
378  << " bl2=\"" << UC(trp->getXHalfLength3(),"Length") << "\""
379  << " tl2=\"" << UC(trp->getXHalfLength4(),"Length") << "\""
380  << " h2=\"" << UC(trp->getYHalfLength2(),"Length") << "\""
381  << " phi=\"" << UC(phi,"Angle") << "\""
382  << " theta=\"" << UC(theta,"Angle") << "\""
383  << " />" << std::endl ;
384  }
385  else if (solidType == "Trd1")
386  {
387  G4Trd * tr = dynamic_cast < G4Trd * > (so);
388  file_ << " <" << solidType
389  << " name=\"" << name << "\""
390  << " dz=\"" << UC(tr->getZHalfLength(),"Length") << "\""
391  << " dy1=\"" << UC(tr->getYHalfLength1(),"Length") << "\""
392  << " dy2=\"" << UC(tr->getYHalfLength2(),"Length")<< "\""
393  << " dx1=\"" << UC(tr->getXHalfLength1(),"Length") << "\""
394  << " dx2=\"" << UC(tr->getXHalfLength2(),"Length") << "\""
395  //<< " lengthUnit=\"mm\"/>"
396  << " />" << std::endl;
397  }
398  */
399  else {
400  std::cerr << " <!-- NOT HANDLED: " << solidType << " name=\"" << name << "\""
401  << ">" << std::endl
402  << " </" << solidType << "> -->" << std::endl;
403  std::exception();
404  }
405 }
406 
407 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
409 #ifdef gdebug
410  cout << " sect-so-post:" << name << '-' << std::endl;
411 #endif
412  newSectPost("SolidSection");
413 }
414 
415 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
416 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
418 #ifdef gdebug
419  cout << " sect-lv-pre:" << name << '-' << std::endl;
420 #endif
421  newSectPre(filename_, std::string("LogicalPartSection"));
422 }
423 
424 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
426  std::string name = opto->shortName();
427  std::string rSolid = opto->shortName();
428  std::string sensitive = "unspecified";
429 
430  if (opto->type() == "system") {
431  file_ << " <LogicalPart name=\"" << name << "\" category=\"" << sensitive << "\">" << std::endl
432  << " <rSolid name=\"" << rSolid << "\"/>" << std::endl
433  << " <rMaterial name=\"Hydrogen\""
434  << "/>" << std::endl
435  << " </LogicalPart>" << std::endl;
436  return;
437  }
438 
439 #ifdef gdebug_v
440  cout << "xml:lv " << opto->name() << std::endl;
441 #endif
442  file_ << " <LogicalPart name=\"" << name << "\" category=\"" << sensitive << "\">" << std::endl
443  << " <rSolid name=\"" << rSolid << "\"/>" << std::endl
444  << " <rMaterial name=\"" << opto->getMaterial()->getName() << "\""
445  << "/>" << std::endl
446  << " </LogicalPart>" << std::endl;
447 }
448 
449 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
451 #ifdef gdebug
452  cout << " sect-lv-post:" << name << '-' << std::endl;
453 #endif
454  newSectPost("LogicalPartSection");
455 }
456 
457 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
458 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
460 #ifdef gdebug
461  cout << " sect-pv-pre:" << name << '-' << std::endl;
462 #endif
463  newSectPre(filename_, std::string("PosPartSection"));
464 }
465 
466 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
468 #ifdef gdebug_v
469  cout << " pv:" << opto->name() << ':' << opto->parent()->name() << std::endl;
470 #endif
471 
472  // file_ << " <PosPart copyNumber=\"" << pv->GetCopyNo() << "\">" << std::endl;
473  file_ << " <PosPart copyNumber=\""
474  << "1"
475  << "\">" << std::endl;
476  file_ << " <rParent name=\"";
477 
478  //t if (file!=filename_) file_ << file << ":";
479 
480  file_ << opto->parent()->shortName() << "\"/>" << std::endl;
481 
482  file_ << " <rChild name=\"";
483  //t if (file_d != filename_) file_<< file_d << ":";
484  file_ << opto->shortName();
485  file_ << "\"/>" << std::endl;
486 
487  int rotNumber = buildRotationNumber(opto);
488  //CocoaDDLRotation* rot = buildRotationNotRepeated( opto );
489 
490  if (rotNumber != -1)
491  file_ << " <rRotation name=\"R" << rotNumber << "\"/>" << std::endl;
492 
493  CLHEP::Hep3Vector t = opto->centreLocal();
494  if (t != CLHEP::Hep3Vector()) { //if (0,0,0) write nothing
495  const CLHEP::Hep3Vector t = opto->centreLocal();
496 
497  file_ << " <Translation x=\"" << UC(t[0], "Length") << "\""
498  << " y=\"" << UC(t[1], "Length") << "\""
499  << " z=\"" << UC(t[2], "Length") << "\" />" << std::endl;
500  }
501 
502  file_ << " </PosPart>" << std::endl;
503 }
504 
505 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
507 #ifdef gdebug
508  cout << " sect-pv-post:" << name << '-' << std::endl;
509 #endif
510  newSectPost("PosPartSection");
511 }
512 
513 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
514 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
516 
517 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
518 // handlers reflections and rotations ...
519 void CocoaToDDLMgr::ro(const CLHEP::HepRotation& ro, int n) {
520  CLHEP::HepRotation roinv = inverseOf(ro);
521  //- G4ThreeVector v(1.,1.,1.);
522  //- G4ThreeVector a;
523  //- a = (*ro)*v;
524  bool identity = false;
525  ALIstring tag = " <Rotation name=\"R";
526  identity = roinv.isIdentity();
527 
528  //---- DDD convention is to use the inverse matrix, COCOA is the direct one!!!
529  if (!identity) {
530  file_ << tag << n << "\"";
531  file_ << " phiX=\"" << UC(roinv.phiX(), "Angle") << "\""
532  << " thetaX=\"" << UC(roinv.thetaX(), "Angle") << "\""
533  << " phiY=\"" << UC(roinv.phiY(), "Angle") << "\""
534  << " thetaY=\"" << UC(roinv.thetaY(), "Angle") << "\""
535  << " phiZ=\"" << UC(roinv.phiZ(), "Angle") << "\""
536  << " thetaZ=\"" << UC(roinv.thetaZ(), "Angle")
537  << "\""
538  //<< " angleUnit=\"degree\"/>"
539  << " />" << std::endl;
540  }
541 }
542 
543 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
545 
546 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
547 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
549 #ifdef gdebug
550  cout << " sect-lv-pre:" << name << '-' << std::endl;
551 #endif
552  //- newSectPre(filename_,std::string("SpecParSection"));
553  file_ << "<SpecParSection label=\"" << filename_ << "\" eval=\"true\">" << std::endl;
554 }
555 
556 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
558  file_ << " <SpecPar name=\"" << opto->name() << "_PARAMS\">" << std::endl;
559  file_ << " <PartSelector path=\"/" << opto->name() << "\"/> " << std::endl;
560  file_ << " <Parameter name=\"cocoa_type\""
561  << " value=\"" << opto->type() << "\" eval=\"false\" /> " << std::endl;
562  file_ << " <Parameter name=\"cmssw_ID\""
563  << " value=\"" << opto->getCmsswID() << "\" /> " << std::endl;
564 
565  const std::vector<Entry*>& coord = opto->CoordinateEntryList();
566  for (int ii = 3; ii < 6; ii++) {
567  Entry* ent = coord[ii];
568  file_ << " <Parameter name=\"" << ent->name() + std::string("_value") << "\" value=\"";
569  file_ << UC(ent->value(), "Angle");
570  file_ << "\" /> " << std::endl;
571  }
572  for (int ii = 0; ii < 6; ii++) {
573  Entry* ent = coord[ii];
574  file_ << " <Parameter name=\"" << ent->name() + std::string("_sigma") << "\" value=\"";
575  if (ii < 3) {
576  file_ << UC(ent->sigma(), "Length");
577  } else {
578  file_ << UC(ent->sigma(), "Angle");
579  }
580  file_ << "\" /> " << std::endl;
581  file_ << " <Parameter name=\"" << ent->name() + std::string("_quality") << "\" value=\"" << ent->quality()
582  << "\" /> " << std::endl;
583  }
584 
585  const std::vector<Entry*>& extraEnt = opto->ExtraEntryList();
586  for (ALIuint ii = 0; ii < extraEnt.size(); ii++) {
587  Entry* ent = extraEnt[ii];
588  file_ << " <Parameter name=\"extra_entry\" value=\"" << ent->name() << "\" eval=\"false\" /> " << std::endl;
589  file_ << " <Parameter name=\"dimType\" value=\"" << ent->type() << "\" eval=\"false\" /> " << std::endl;
590  file_ << " <Parameter name=\"value\" value=\"";
591  if (ent->type() == "nodim") {
592  file_ << ent->value();
593  } else if (ent->type() == "length") {
594  file_ << UC(ent->value(), "Length");
595  } else if (ent->type() == "angle") {
596  file_ << UC(ent->value(), "Angle");
597  }
598  file_ << "\" eval=\"true\" /> " << std::endl;
599 
600  file_ << " <Parameter name=\"sigma\" value=\"";
601  if (ent->type() == "nodim") {
602  file_ << ent->sigma();
603  } else if (ent->type() == "length") {
604  file_ << UC(ent->sigma(), "Length");
605  } else if (ent->type() == "angle") {
606  file_ << UC(ent->sigma(), "Angle");
607  }
608  file_ << "\" eval=\"true\" /> " << std::endl;
609 
610  file_ << " <Parameter name=\"quality\" value=\"" << ent->quality() << "\" eval=\"true\" /> " << std::endl;
611  }
612 
613  file_ << " </SpecPar>" << std::endl;
614 }
615 
616 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
618  std::vector<Measurement*> measlist = Model::MeasurementList();
619  std::vector<Measurement*>::iterator mite;
620  std::vector<ALIstring>::iterator site;
621  std::multimap<OpticalObject*, Measurement*> optoMeasMap;
622  for (mite = measlist.begin(); mite != measlist.end(); ++mite) {
623  auto& optolist = (*mite)->OptOList();
624  OpticalObject* opto = optolist[optolist.size() - 1];
625  optoMeasMap.insert(std::multimap<OpticalObject*, Measurement*>::value_type(opto, *mite));
626  }
627 
628  typedef std::multimap<OpticalObject*, Measurement*>::const_iterator itemom;
629  itemom omite;
630  std::pair<itemom, itemom> omitep;
631  itemom omite2, omite3;
632 
633  for (omite = optoMeasMap.begin(); omite != optoMeasMap.end(); ++omite) {
634  omitep = optoMeasMap.equal_range((*omite).first);
635  if (omite != optoMeasMap.begin() && (*omite).first == (*omite3).first)
636  continue; // check that it is not the same OptO than previous one
637  omite3 = omite;
638  for (omite2 = omitep.first; omite2 != omitep.second; ++omite2) {
639  OpticalObject* opto = (*(omite2)).first;
640  Measurement* meas = (*(omite2)).second;
641  std::vector<ALIstring> namelist = meas->OptONameList();
642  if (omite2 == omitep.first) {
643  file_ << " <SpecPar name=\"" << meas->name() << "_MEASUREMENT\">" << std::endl;
644  file_ << " <PartSelector path=\"/" << opto->name() << "\"/> " << std::endl;
645  }
646 
647  file_ << " <Parameter name=\"" << std::string("meas_name") << "\" value=\"" << meas->name()
648  << "\" eval=\"false\" /> " << std::endl;
649  file_ << " <Parameter name=\"" << std::string("meas_type") << "\" value=\"" << meas->type()
650  << "\" eval=\"false\" /> " << std::endl;
651  for (site = namelist.begin(); site != namelist.end(); ++site) {
652  file_ << " <Parameter name=\"" << std::string("meas_object_name_") + meas->name() << "\" value=\"" << (*site)
653  << "\" eval=\"false\" /> " << std::endl;
654  }
655  for (ALIuint ii = 0; ii < meas->dim(); ii++) {
656  file_ << " <Parameter name=\"" << std::string("meas_value_name_") + meas->name() << "\" value=\""
657  << meas->valueType(ii) << "\" eval=\"false\" /> " << std::endl;
658  file_ << " <Parameter name=\"" << std::string("meas_value_") + meas->name() << "\" value=\""
659  << meas->value(ii) << "\" eval=\"true\" /> " << std::endl;
660  file_ << " <Parameter name=\"" << std::string("meas_sigma_") + meas->name() << "\" value=\""
661  << meas->sigma(ii) << "\" eval=\"true\" /> " << std::endl;
662  file_ << " <Parameter name=\"" << std::string("meas_is_simulated_value_") + meas->name() << "\" value=\""
663  << meas->valueIsSimulated(ii) << "\" eval=\"true\" /> " << std::endl;
664  }
665  }
666  file_ << " </SpecPar>" << std::endl;
667  }
668 }
669 
670 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
672  file_ << "<!-- Define volumes as COCOA objects --> " << std::endl << " <SpecPar name=\"COCOA\"> " << std::endl;
673 
674  auto& optolist = Model::OptOList();
675  for (auto ite = optolist.begin(); ite != optolist.end(); ite++) {
676  if ((*ite)->type() == "system")
677  continue;
678  file_ << " <PartSelector path=\"/" << (*ite)->name() << "\"/> " << std::endl;
679  }
680 
681  file_ << " <String name=\"COCOA\" value=\"COCOA\"/> " << std::endl << " </SpecPar> " << std::endl;
682 }
683 
684 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
686 
687 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
688 
689 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
691  file_ << "<" << type << " label=\"" << name << "\">" << std::endl;
692 }
693 
694 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
695 void CocoaToDDLMgr::newSectPost(std::string name) { file_ << "</" << name << ">" << std::endl << std::endl; }
696 
697 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
699  ALIbool isRepeated = false;
700  std::vector<CocoaMaterialElementary*>::const_iterator ite;
701 
702  for (ite = theMaterialList.begin(); ite != theMaterialList.end(); ++ite) {
703  if (*(*ite) == *ma) {
704  isRepeated = true;
705  break;
706  }
707  }
708 
709  return isRepeated;
710 }
711 
712 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
714  std::string::const_iterator ampat;
715  static const std::string amp = "_"; //"&amp;";
716  std::string ret = "";
717  for (ampat = s.begin(); ampat != s.end(); ++ampat) {
718  if (*ampat == '&')
719  ret = ret + amp;
720  else if (*ampat == '/')
721  ret = ret + ";";
722  else if (*ampat == ':')
723  ret = ret + '_';
724  else
725  ret = ret + *ampat;
726  }
727  // this works when used alone. when in this file it fails. i don't know why.
728  //for (ampat = s.begin(); ampat != s.end(); ampat++)
729  // {
730  // if (*ampat == '&'){
731  // s.insert(ampat+1, amp.begin(), amp.end());
732  // }
733  // }
734  // replace(s.begin(), s.end(), '/', ';');
735  //return s;
736  //cout << "AMP: " << ret << endl;
737  return ret;
738 }
739 
740 //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
742  ALIint rotnum = -1;
743 
744  if (opto->rmLocal().isIdentity())
745  return rotnum;
746 
747  std::vector<CLHEP::HepRotation>::const_iterator ite;
748 
749  int nc = 0;
750  for (ite = theRotationList.begin(); ite != theRotationList.end(); ++ite) {
751  if ((*ite) == opto->rmLocal()) {
752  rotnum = nc;
753  break;
754  }
755  nc++;
756  }
757 
758  if (rotnum == -1) {
759  theRotationList.push_back(opto->rmLocal());
760  rotnum = theRotationList.size() - 1;
761  }
762 
763  return rotnum;
764 }
runTheMatrix.ret
ret
prodAgent to be discontinued
Definition: runTheMatrix.py:355
CocoaMaterialElementary.h
CocoaToDDLMgr::writeSolids
void writeSolids()
Definition: CocoaToDDLMgr.cc:78
CocoaToDDLMgr::ro
void ro(const CLHEP::HepRotation &ro, int n)
Definition: CocoaToDDLMgr.cc:519
CocoaToDDLMgr::newSectPre
void newSectPre(std::string name, std::string type)
Definition: CocoaToDDLMgr.cc:690
CocoaToDDLMgr::measurementsAsSpecPars
void measurementsAsSpecPars()
Definition: CocoaToDDLMgr.cc:617
ALIbool
bool ALIbool
Definition: CocoaGlobals.h:19
OpticalObject.h
CocoaToDDLMgr::specPar
void specPar(OpticalObject *opto)
Definition: CocoaToDDLMgr.cc:557
dqmiodumpmetadata.n
n
Definition: dqmiodumpmetadata.py:28
Model.h
CocoaSolidShapeTubs::getStartPhiAngle
ALIfloat getStartPhiAngle() const
Definition: CocoaSolidShapeTubs.h:27
CocoaToDDLMgr::pv
void pv(OpticalObject *opto)
Definition: CocoaToDDLMgr.cc:467
Model::MeasurementList
static std::vector< Measurement * > & MeasurementList()
Definition: Model.h:88
CocoaToDDLMgr::newSectPost_ro
void newSectPost_ro(std::string name)
Definition: CocoaToDDLMgr.cc:544
OpticalObject::name
const ALIstring & name() const
Definition: OpticalObject.h:58
gather_cfg.cout
cout
Definition: gather_cfg.py:144
CocoaToDDLMgr::newSectPre_lv
void newSectPre_lv(std::string name)
Definition: CocoaToDDLMgr.cc:417
ALIstring
std::string ALIstring
Definition: CocoaGlobals.h:9
UC
#define UC(val, category)
Definition: CocoaToDDLMgr.cc:9
edmStreamStallGrapher.extension
extension
Definition: edmStreamStallGrapher.py:893
Entry::name
const ALIstring & name() const
Definition: Entry.h:50
CocoaToDDLMgr::getInstance
static CocoaToDDLMgr * getInstance()
Definition: CocoaToDDLMgr.cc:23
CocoaSolidShapeBox::getZHalfLength
ALIfloat getZHalfLength() const
Definition: CocoaSolidShapeBox.h:21
OpticalObject
Definition: OpticalObject.h:35
CocoaToDDLMgr::filename_
std::string filename_
Definition: CocoaToDDLMgr.h:74
CocoaToDDLMgr::instance
static CocoaToDDLMgr * instance
Definition: CocoaToDDLMgr.h:71
CocoaSolidShapeBox
Definition: CocoaSolidShapeBox.h:13
CocoaToDDLMgr::writeRotations
void writeRotations()
Definition: CocoaToDDLMgr.cc:132
Entry::value
ALIdouble value() const
Definition: Entry.h:53
CocoaToDDLMgr::newSectPre_ma
void newSectPre_ma(std::string name)
Definition: CocoaToDDLMgr.cc:190
CocoaToDDLMgr::theMaterialList
std::vector< CocoaMaterialElementary * > theMaterialList
Definition: CocoaToDDLMgr.h:76
Entry::sigma
ALIdouble sigma() const
Definition: Entry.h:55
OpticalObject::type
const ALIstring & type() const
Definition: OpticalObject.h:59
Measurement::valueIsSimulated
bool valueIsSimulated(ALIint coor)
Definition: Measurement.h:156
CocoaToDDLMgr::writeSpecParsCocoa
void writeSpecParsCocoa()
Definition: CocoaToDDLMgr.cc:671
Measurement::dim
const ALIuint dim() const
Definition: Measurement.h:82
CocoaToDDLMgr::newSectPost_specPar
void newSectPost_specPar(std::string name)
Definition: CocoaToDDLMgr.cc:685
CocoaToDDLMgr::materialIsRepeated
ALIbool materialIsRepeated(CocoaMaterialElementary *ma)
Definition: CocoaToDDLMgr.cc:698
CocoaToDDLMgr::so
void so(OpticalObject *opto)
Definition: CocoaToDDLMgr.cc:243
UnitConverter.h
OpticalObject::shortName
const ALIstring shortName() const
Definition: OpticalObject.cc:1649
alignCSCRings.s
s
Definition: alignCSCRings.py:92
CocoaSolidShapeTubs::getDeltaPhiAngle
ALIfloat getDeltaPhiAngle() const
Definition: CocoaSolidShapeTubs.h:28
CocoaToDDLMgr::newSectPost_so
void newSectPost_so(std::string name)
Definition: CocoaToDDLMgr.cc:408
OpticalObject::rmLocal
const CLHEP::HepRotation rmLocal() const
Definition: OpticalObject.cc:1669
GlobalPosition_Frontier_DevDB_cff.tag
tag
Definition: GlobalPosition_Frontier_DevDB_cff.py:11
CocoaSolidShapeTubs
Definition: CocoaSolidShapeTubs.h:14
Model::OptOList
static std::vector< OpticalObject * > & OptOList()
Definition: Model.h:84
corrVsCorr.filename
filename
Definition: corrVsCorr.py:123
Measurement
Definition: Measurement.h:27
OrderedSet.t
t
Definition: OrderedSet.py:90
Entry.h
CocoaToDDLMgr::newPartPre
void newPartPre(std::string name)
Definition: CocoaToDDLMgr.cc:165
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
Measurement.h
CocoaSolidShapeTubs::getInnerRadius
ALIfloat getInnerRadius() const
Definition: CocoaSolidShapeTubs.h:24
cppFunctionSkipper.exception
exception
Definition: cppFunctionSkipper.py:10
CocoaToDDLMgr::newPartPost
void newPartPost(std::string name, std::string extension)
Definition: CocoaToDDLMgr.cc:183
CocoaToDDLMgr::lv
void lv(OpticalObject *opto)
Definition: CocoaToDDLMgr.cc:425
OpticalObject::ExtraEntryList
const std::vector< Entry * > & ExtraEntryList() const
Definition: OpticalObject.h:65
CocoaSolidShapeBox::getXHalfLength
ALIfloat getXHalfLength() const
Definition: CocoaSolidShapeBox.h:19
OpticalObject::getCmsswID
const ALIuint getCmsswID() const
Definition: OpticalObject.h:97
CocoaToDDLMgr::writeHeader
void writeHeader(ALIstring filename)
Definition: CocoaToDDLMgr.cc:57
OpticalObject::parent
const OpticalObject * parent() const
Definition: OpticalObject.h:60
CocoaToDDLMgr::newSectPre_specPar
void newSectPre_specPar(std::string name)
Definition: CocoaToDDLMgr.cc:548
CocoaToDDLMgr::scrubString
std::string scrubString(const std::string &s)
Definition: CocoaToDDLMgr.cc:713
beam_dqm_sourceclient-live_cfg.cerr
cerr
Definition: beam_dqm_sourceclient-live_cfg.py:17
CocoaToDDLMgr::newSectPre_so
void newSectPre_so(std::string name)
Definition: CocoaToDDLMgr.cc:235
CocoaToDDLMgr::theRotationList
std::vector< CLHEP::HepRotation > theRotationList
Definition: CocoaToDDLMgr.h:77
CocoaToDDLMgr::file_
ALIFileOut file_
Definition: CocoaToDDLMgr.h:73
Measurement::valueType
const ALIstring valueType(ALIuint ii) const
Definition: Measurement.h:116
ALIuint
unsigned int ALIuint
Definition: CocoaGlobals.h:17
Measurement::type
const ALIstring & type() const
Definition: Measurement.h:84
CocoaToDDLMgr::newSectPost
void newSectPost(std::string name)
Definition: CocoaToDDLMgr.cc:695
CocoaToDDLMgr::writePhysicalVolumes
void writePhysicalVolumes()
Definition: CocoaToDDLMgr.cc:118
OpticalObject::CoordinateEntryList
const std::vector< Entry * > & CoordinateEntryList() const
Definition: OpticalObject.h:63
Entry
Definition: Entry.h:18
reco::JetExtendedAssociation::value_type
Container::value_type value_type
Definition: JetExtendedAssociation.h:30
Entry::type
const ALIstring & type() const
Definition: Entry.h:52
CocoaToDDLMgr::writeMaterials
void writeMaterials()
Definition: CocoaToDDLMgr.cc:60
Entry::quality
ALIint quality() const
Definition: Entry.h:57
identity
T identity(T t)
Definition: trackSplitPlot.h:71
CocoaToDDLMgr::writeSpecPars
void writeSpecPars()
Definition: CocoaToDDLMgr.cc:145
type
type
Definition: HCALResponse.h:21
CocoaToDDLMgr::buildRotationNumber
ALIint buildRotationNumber(OpticalObject *opto)
Definition: CocoaToDDLMgr.cc:741
Measurement::name
const ALIstring & name() const
Definition: Measurement.h:86
CocoaSolidShapeTubs.h
CocoaToDDLMgr::newSectPost_pv
void newSectPost_pv(std::string name)
Definition: CocoaToDDLMgr.cc:506
CocoaToDDLMgr::CocoaToDDLMgr
CocoaToDDLMgr()
Definition: CocoaToDDLMgr.h:28
CocoaToDDLMgr::writeLogicalVolumes
void writeLogicalVolumes()
Definition: CocoaToDDLMgr.cc:99
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
OpticalObject::getMaterial
CocoaMaterialElementary * getMaterial() const
Definition: OpticalObject.h:217
CocoaToDDLMgr
Definition: CocoaToDDLMgr.h:25
CocoaToDDLMgr::newSectPost_ma
void newSectPost_ma(std::string name)
Definition: CocoaToDDLMgr.cc:226
ALIint
int ALIint
Definition: CocoaGlobals.h:15
Measurement::value
const ALIdouble * value() const
Definition: Measurement.h:109
CocoaSolidShape
Definition: CocoaSolidShape.h:16
CocoaToDDLMgr::newSectPre_ro
void newSectPre_ro(std::string name)
Definition: CocoaToDDLMgr.cc:515
CocoaToDDLMgr::ma
void ma(CocoaMaterialElementary *ma)
Definition: CocoaToDDLMgr.cc:198
CocoaSolidShapeBox::getYHalfLength
ALIfloat getYHalfLength() const
Definition: CocoaSolidShapeBox.h:20
ALIfloat
float ALIfloat
Definition: CocoaGlobals.h:13
ALIFileOut::name
const ALIstring & name()
Definition: ALIFileOut.h:31
CocoaSolidShapeBox.h
Measurement::OptONameList
const std::vector< ALIstring > & OptONameList() const
Definition: Measurement.h:99
CocoaToDDLMgr::newSectPre_pv
void newSectPre_pv(std::string name)
Definition: CocoaToDDLMgr.cc:459
OpticalObject::centreLocal
const CLHEP::Hep3Vector centreLocal() const
Definition: OpticalObject.cc:1938
CocoaSolidShapeTubs::getZHalfLength
ALIfloat getZHalfLength() const
Definition: CocoaSolidShapeTubs.h:26
cuy.ii
ii
Definition: cuy.py:590
CocoaToDDLMgr.h
CocoaSolidShapeTubs::getOuterRadius
ALIfloat getOuterRadius() const
Definition: CocoaSolidShapeTubs.h:25
CocoaToDDLMgr::writeDDDFile
void writeDDDFile(ALIstring filename)
Definition: CocoaToDDLMgr.cc:31
CocoaMaterialElementary
Definition: CocoaMaterialElementary.h:16
fastSimProducer_cff.density
density
Definition: fastSimProducer_cff.py:61
CocoaToDDLMgr::newSectPost_lv
void newSectPost_lv(std::string name)
Definition: CocoaToDDLMgr.cc:450
CocoaMaterialElementary::getName
ALIstring getName() const
Definition: CocoaMaterialElementary.h:22
Measurement::sigma
const ALIdouble * sigma() const
Definition: Measurement.h:112