CMS 3D CMS Logo

CaloGeometryBuilder.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: CaloGeometryBuilder
4 // Class: CaloGeometryBuilder
5 //
13 //
14 // Original Author: Jeremiah Mans
15 // Created: Mon Oct 3 11:35:27 CDT 2005
16 //
17 //
18 
19 
20 // user include files
35 //
36 // member functions
37 //
39 {
40  //the following line is needed to tell the framework what
41  // data is being produced
42  setWhatProduced( this,
44 
45  //now do what ever other initialization is needed
46 
47  theCaloList = iConfig.getParameter< std::vector<std::string> >("SelectedCalos");
48  if ( theCaloList.empty() ) throw cms::Exception("Configuration")
49  << "No calorimeter specified for geometry, aborting";
50 }
51 
52 // ------------ method called to produce the data ------------
53 
56 {
58 
59  ReturnType pCalo = std::make_unique<CaloGeometry>();
60 
61  // loop on selected calorimeters
62 
63  for ( std::vector<std::string>::const_iterator ite ( theCaloList.begin() ) ;
64  ite != theCaloList.end(); ++ite )
65  {
66  // look for HCAL parts
67  // assume 'HCAL' for all of HCAL.
68  if ( (*ite) == HcalGeometry::producerTag() )
69  {
70  edm::LogInfo("CaloGeometryBuilder") << "Building HCAL reconstruction geometry";
71 
72  iRecord.getRecord< HcalGeometryRecord >().get( HcalGeometry::producerTag(), pG );
73  pCalo->setSubdetGeometry( DetId::Hcal, HcalBarrel , pG.product() );
74  pCalo->setSubdetGeometry( DetId::Hcal, HcalEndcap , pG.product() );
75  pCalo->setSubdetGeometry( DetId::Hcal, HcalOuter , pG.product() );
76  pCalo->setSubdetGeometry( DetId::Hcal, HcalForward, pG.product() );
77  }
78  else if ( (*ite) == ZdcGeometry::producerTag() )
79  {
80  edm::LogInfo("CaloGeometryBuilder") << "Building ZDC reconstruction geometry";
81  iRecord.getRecord< ZDCGeometryRecord >().get( ZdcGeometry::producerTag(), pG );
82  pCalo->setSubdetGeometry( DetId::Calo, HcalZDCDetId::SubdetectorId,pG.product());
83  }
84  else if ( (*ite) == CastorGeometry::producerTag() )
85  {
86  edm::LogInfo("CaloGeometryBuilder") << "Building CASTOR reconstruction geometry";
88  pCalo->setSubdetGeometry( DetId::Calo, HcalCastorDetId::SubdetectorId,pG.product());
89  }
90  // look for Ecal Barrel
91  else if ( (*ite) == EcalBarrelGeometry::producerTag() )
92  {
93  edm::LogInfo("CaloGeometryBuilder") << "Building EcalBarrel reconstruction geometry";
95  pCalo->setSubdetGeometry(DetId::Ecal,EcalBarrel,pG.product());
96  }
97  // look for Ecal Endcap
98  else if ( (*ite) == EcalEndcapGeometry::producerTag() )
99  {
100  edm::LogInfo("CaloGeometryBuilder") << "Building EcalEndcap reconstruction geometry";
102  pCalo->setSubdetGeometry(DetId::Ecal,EcalEndcap,pG.product());
103  }
104  // look for Ecal Preshower
105  else if ( (*ite) == EcalPreshowerGeometry::producerTag() )
106  {
107  edm::LogInfo("CaloGeometryBuilder") << "Building EcalPreshower reconstruction geometry";
109  pCalo->setSubdetGeometry(DetId::Ecal,EcalPreshower,pG.product());
110  }
111  // look for TOWER parts
112  else if ( (*ite) == CaloTowerGeometry::producerTag() )
113  {
114  edm::LogInfo("CaloGeometryBuilder") << "Building TOWER reconstruction geometry";
116  pCalo->setSubdetGeometry(DetId::Calo,1,pG.product());
117  }
118  else if ( ite->find(HGCalGeometry::producerTag()) != std::string::npos ) {
119  edm::LogInfo("CaloGeometryBuilder") << "Building " << *ite << " reconstruction geometry";
121  iRecord.getRecord<IdealGeometryRecord>().get(*ite,pHG);
122  const auto& topo = pHG->topology();
123  pCalo->setSubdetGeometry(topo.detector(),topo.subDetector(),pHG.product());
124  }
125  else
126  {
127  edm::LogWarning("CaloGeometryBuilder")
128  << "Reconstruction geometry requested for a not implemented sub-detector: "
129  << (*ite);
130  }
131  }
132  return pCalo ;
133 }
T getParameter(std::string const &) const
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:124
static std::string producerTag()
Definition: ZdcGeometry.h:46
static std::string producerTag()
static std::string producerTag()
Definition: HcalGeometry.h:67
static std::string producerTag()
CaloGeometryBuilder(const edm::ParameterSet &iConfig)
static std::string producerTag()
static std::string producerTag()
const HGCalTopology & topology() const
std::vector< std::string > theCaloList
static const int SubdetectorId
static std::string producerTag()
static const int SubdetectorId
Definition: HcalZDCDetId.h:25
static std::string producerTag()
std::unique_ptr< CaloGeometry > ReturnType
T const * product() const
Definition: ESHandle.h:86
ReturnType produceAligned(const CaloGeometryRecord &iRecord)