CMS 3D CMS Logo

HGCalParametersFromDD.cc
Go to the documentation of this file.
9 
11 #include "CLHEP/Units/GlobalSystemOfUnits.h"
12 #include <iostream>
13 #include <iomanip>
14 
15 //#define EDM_ML_DEBUG
16 
17 namespace {
18  int getGeometryMode(const char* s, const DDsvalues_type & sv) {
19  DDValue val(s);
20  if (DDfetch(&sv, val)) {
21  const std::vector<std::string> & fvec = val.strings();
22  if (fvec.size() == 0) {
23  throw cms::Exception("HGCalGeom") << "Failed to get " << s << " tag.";
24  }
25 
26  int result(-1);
29  result = (int)(mode);
30  return result;
31  } else {
32  throw cms::Exception("HGCalGeom") << "Failed to get "<< s << " tag.";
33  }
34  }
35 }
36 
38  HGCalParameters& php,
39  const std::string& name,
40  const std::string& namew,
41  const std::string& namec) {
42 
43 #ifdef EDM_ML_DEBUG
44  std::cout << "HGCalParametersFromDD::build called with names " << name << ":"
45  << namew << ":" << namec << std::endl;
46 #endif
47 
48  //Special parameters at simulation level
49  std::string attribute = "Volume";
51  DDValue val(attribute, value, 0.0);
53  filter.setCriteria(val, DDCompOp::equals);
54  DDFilteredView fv(*cpv);
55  fv.addFilter(filter);
56  bool ok = fv.firstChild();
57 
58  if (ok) {
60  php.mode_ = getGeometryMode("GeometryMode", sv);
62  if (php.mode_ == static_cast<int> (HGCalGeometryMode::Square)) {
63  //Load the SpecPars
64  geom->loadSpecParsSquare(fv, php);
65  //Load the Geometry parameters
66  geom->loadGeometrySquare(fv, php, name);
67  } else if (php.mode_ == static_cast<int> (HGCalGeometryMode::Hexagon)) {
68  //Load the SpecPars
69  geom->loadSpecParsHexagon(fv, php, cpv, namew, namec);
70  //Load the Geometry parameters
71  geom->loadGeometryHexagon(fv, php, name, cpv, namew, namec);
72  //Load cell parameters
73  geom->loadCellParsHexagon(cpv, php);
74  } else if (php.mode_ == static_cast<int> (HGCalGeometryMode::HexagonFull)){
75  //Load the SpecPars
76  geom->loadSpecParsHexagon(fv, php, cpv, namew, namec);
77  //Load the Geometry parameters
78  geom->loadGeometryHexagon(fv, php, name, cpv, namew, namec);
79  //Modify some constants
80  geom->loadWaferHexagon(php);
81  //Load cell parameters
82  geom->loadCellParsHexagon(cpv, php);
83  } else {
84  edm::LogError("HGCalGeom") << "Unknown Geometry type " << php.mode_
85  << " for HGCal " << name << ":" << namew
86  << ":" << namec;
87  throw cms::Exception("DDException")
88  << "Unknown Geometry type " << php.mode_ << " for HGCal " << name
89  << ":" << namew << ":" << namec;
90  }
91  } else {
92  edm::LogError("HGCalGeom") << " Attribute " << val
93  << " not found but needed.";
94  throw cms::Exception("DDException") << "Attribute " << val
95  << " not found but needed.";
96  }
97 
98  edm::LogInfo("HGCalGeom") << "Return from HGCalParametersFromDD::build with "
99  << ok;
100  return ok;
101 }
T parseString(const std::string &value)
void addFilter(const DDFilter &, DDLogOp op=DDLogOp::AND)
void loadSpecParsHexagon(const DDFilteredView &, HGCalParameters &, const DDCompactView *, const std::string &, const std::string &)
bool build(const DDCompactView *, HGCalParameters &, const std::string &, const std::string &, const std::string &)
type of data representation of DDCompactView
Definition: DDCompactView.h:90
bool DDfetch(const DDsvalues_type *, DDValue &)
helper for retrieving DDValues from DDsvalues_type *.
Definition: DDsvalues.cc:80
void loadCellParsHexagon(const DDCompactView *cpv, HGCalParameters &php)
std::vector< std::pair< unsigned int, DDValue > > DDsvalues_type
std::maps an index to a DDValue. The index corresponds to the index assigned to the name of the std::...
Definition: DDsvalues.h:20
Definition: value.py:1
HGCalGeometryMode
void loadWaferHexagon(HGCalParameters &php)
void loadSpecParsSquare(const DDFilteredView &, HGCalParameters &)
DDsvalues_type mergedSpecifics() const
bool firstChild()
set the current node to the first child ...
void loadGeometryHexagon(const DDFilteredView &, HGCalParameters &, const std::string &, const DDCompactView *, const std::string &, const std::string &)
void loadGeometrySquare(const DDFilteredView &, HGCalParameters &, const std::string &)
void setCriteria(const DDValue &nameVal, DDCompOp, DDLogOp l=DDLogOp::AND, bool asString=true, bool merged=true)
Definition: DDFilter.cc:253
The DDGenericFilter is a runtime-parametrized Filter looking on DDSpecifcs.
Definition: DDFilter.h:33