CMS 3D CMS Logo

HFNoseSensitiveDetectorBuilder.cc
Go to the documentation of this file.
1 
2 // system include files
3 #include <string>
4 #include <vector>
5 
6 // user include files
10 
14 
21 
23 public:
25  : hgcToken_{cc.esConsumes<edm::Transition::BeginRun>(edm::ESInputTag{"", "HGCalHFNoseSensitive"})},
26  hgcons_{nullptr} {}
27 
28  void beginRun(const edm::EventSetup& es) final { hgcons_ = es.getHandle(hgcToken_); }
29 
30  std::unique_ptr<SensitiveDetector> make(const std::string& iname,
31  const SensitiveDetectorCatalog& clg,
32  const edm::ParameterSet& p,
33  const SimTrackManager* man,
34  SimActivityRegistry& reg) const final {
35  auto hgc = ((iname.find("HFNoseHits") != std::string::npos) && hgcons_.isValid()) ? hgcons_.product() : nullptr;
36  auto sd = std::make_unique<HFNoseSD>(iname, hgc, clg, p, man);
38  return sd;
39  }
40 
41 private:
44 };
45 
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
SimTrackManager
Definition: SimTrackManager.h:35
edm::ESInputTag
Definition: ESInputTag.h:87
MessageLogger.h
ESHandle.h
HFNoseSD.h
ESGetToken.h
HFNoseSensitiveDetectorBuilder
Definition: HFNoseSensitiveDetectorBuilder.cc:22
HFNoseSensitiveDetectorBuilder::hgcToken_
const edm::ESGetToken< HGCalDDDConstants, IdealGeometryRecord > hgcToken_
Definition: HFNoseSensitiveDetectorBuilder.cc:42
hgc_digi
Definition: HGCDigitizerTypes.h:10
HFNoseSD
Definition: HFNoseSD.h:20
edm::ESHandle< HGCalDDDConstants >
SensitiveDetectorCatalog
Definition: SensitiveDetectorCatalog.h:10
edm::ParameterSet
Definition: ParameterSet.h:47
AlCaHLTBitMon_ParallelJobs.p
def p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
SensitiveDetectorMakerBase
Definition: SensitiveDetectorMakerBase.h:28
ModuleDef.h
SimActivityRegistryEnroller::enroll
static void enroll(SimActivityRegistry &iReg, T *iObj)
Definition: SimActivityRegistryEnroller.h:50
IdealGeometryRecord.h
edm::EventSetup
Definition: EventSetup.h:58
cc
edm::ESHandleBase::isValid
bool isValid() const
Definition: ESHandle.h:44
edm::ESGetToken< HGCalDDDConstants, IdealGeometryRecord >
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
SimActivityRegistryEnroller.h
HFNoseSensitiveDetectorBuilder::HFNoseSensitiveDetectorBuilder
HFNoseSensitiveDetectorBuilder(edm::ParameterSet const &p, edm::ConsumesCollector cc)
Definition: HFNoseSensitiveDetectorBuilder.cc:24
SimActivityRegistry
Definition: SimActivityRegistry.h:39
DEFINE_SENSITIVEDETECTORBUILDER
#define DEFINE_SENSITIVEDETECTORBUILDER(type, name)
Definition: SensitiveDetectorPluginFactory.h:21
edm::Transition::BeginRun
sd
double sd
Definition: CascadeWrapper.h:113
HFNoseSensitiveDetectorBuilder::make
std::unique_ptr< SensitiveDetector > make(const std::string &iname, const SensitiveDetectorCatalog &clg, const edm::ParameterSet &p, const SimTrackManager *man, SimActivityRegistry &reg) const final
Definition: HFNoseSensitiveDetectorBuilder.cc:30
ConsumesCollector.h
SensitiveDetectorPluginFactory.h
HGCalDDDConstants.h
ParameterSet.h
HFNoseSensitiveDetectorBuilder::beginRun
void beginRun(const edm::EventSetup &es) final
Definition: HFNoseSensitiveDetectorBuilder.cc:28
SensitiveDetectorMakerBase.h
edm::ConsumesCollector
Definition: ConsumesCollector.h:45
HFNoseSensitiveDetectorBuilder::hgcons_
edm::ESHandle< HGCalDDDConstants > hgcons_
Definition: HFNoseSensitiveDetectorBuilder.cc:43
HFNoseSensitiveDetector
HFNoseSD HFNoseSensitiveDetector
Definition: HFNoseSensitiveDetectorBuilder.cc:46