CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
HcalTestSimHitID.cc
Go to the documentation of this file.
3 
12 
25 
26 #include <memory>
27 #include <iostream>
28 #include <fstream>
29 #include <vector>
30 #include <string>
31 
33 public:
35  ~HcalTestSimHitID() override = default;
36  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
37 
38 protected:
39  void beginJob() override {}
40  void endJob() override {}
41  void analyze(const edm::Event& e, const edm::EventSetup& c) override;
42 
43 private:
45  const bool testN_, dumpHits_;
46  const int maxEvent_;
50  int nevt_;
52 };
53 
55  : g4Label_(ps.getUntrackedParameter<std::string>("moduleLabel", "g4SimHits")),
56  hitLab_(ps.getUntrackedParameter<std::string>("hcCollection", "HcalHits")),
57  testN_(ps.getUntrackedParameter<bool>("testNumbering", false)),
58  dumpHits_(ps.getUntrackedParameter<bool>("dumpHits", false)),
59  maxEvent_(ps.getUntrackedParameter<int>("maxEvent", 100)),
63  nevt_(0) {
64  // register for data access
65  toks_calo_ = consumes<edm::PCaloHitContainer>(edm::InputTag(g4Label_, hitLab_));
66 
67  edm::LogVerbatim("HcalSim") << "HcalTestSimHitID::Module Label: " << g4Label_ << " Hits: " << hitLab_
68  << " MaxEvent: " << maxEvent_ << " Numbering scheme: " << testN_ << " (0 normal; 1 test)";
69 }
70 
73  desc.addUntracked<std::string>("moduleLabel", "g4SimHits");
74  desc.addUntracked<std::string>("hcCollection", "HcalHits");
75  desc.addUntracked<bool>("testNumbering", false);
76  desc.addUntracked<bool>("dumpHits", false);
77  desc.addUntracked<int>("maxEvent", 100);
78  descriptions.add("hcalTestSimHitID", desc);
79 }
80 
82  ++nevt_;
83  edm::LogVerbatim("HcalSim") << "HcalTestSimHitID::Serial # " << nevt_ << " Run # " << e.id().run() << " Event # "
84  << e.id().event();
85  const HcalDDDRecConstants* hcr = &iS.getData(tok_hrdd_);
86  const HcalTopology* theHBHETopology = &iS.getData(tok_topo_);
87  const CaloGeometry* caloGeom = &iS.getData(tok_geom_);
88  const HcalGeometry* hcalGeom =
89  static_cast<const HcalGeometry*>(caloGeom->getSubdetectorGeometry(DetId::Hcal, HcalBarrel));
90 
91  if (nevt_ <= maxEvent_) {
92  std::vector<PCaloHit> hcHits;
94  e.getByToken(toks_calo_, hitsCalo);
95  if (hitsCalo.isValid()) {
96  std::vector<PCaloHit> hits;
97  hits.insert(hits.end(), hitsCalo->begin(), hitsCalo->end());
98  edm::LogVerbatim("HcalSim") << "HcalValidation: Hit buffer " << hits.size();
99 
100  //Now the testing
101  unsigned int good(0);
102  for (unsigned int i = 0; i < hits.size(); i++) {
103  unsigned int id = hits[i].id();
104  HcalDetId hid;
105  GlobalPoint p1, p2;
106  if (testN_) {
107  p1 = hcalGeom->getPosition(id, true);
108  hid = HcalDetId(HcalHitRelabeller::relabel(id, hcr));
109  } else {
110  hid = HcalDetId(id);
111  }
112  p2 = hcalGeom->getPosition(DetId(hid));
113  if (theHBHETopology->validHcal(hid)) {
114  ++good;
115  if (dumpHits_) {
116  edm::LogVerbatim("HcalSim") << "Hit[" << i << "] " << hid;
117  if (testN_)
118  edm::LogVerbatim("HcalSim") << "Test " << p1 << " from HcalDetId " << p2;
119  }
120  } else {
121  edm::LogVerbatim("HcalSim") << "Hit[" << i << "] " << hid << " ***** ERROR *****";
122  }
123  }
124  edm::LogVerbatim("HcalSim") << "\nHcalTestSimHitID:: " << good << " among " << hits.size() << " hits";
125  }
126  }
127 }
128 
129 //define this as a plug-in
RunNumber_t run() const
Definition: EventID.h:38
Log< level::Info, true > LogVerbatim
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:34
EventNumber_t event() const
Definition: EventID.h:40
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
const edm::EventSetup & c
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
const TString p2
Definition: fwPaths.cc:13
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void beginJob() override
maxEvent_(ps.getParameter< int >("MaxEvent"))
bool validHcal(const HcalDetId &id) const
bool getData(T &iHolder) const
Definition: EventSetup.h:128
const edm::ESGetToken< HcalTopology, HcalRecNumberingRecord > tok_topo_
const std::string hitLab_
const std::string g4Label_
edm::EDGetTokenT< edm::PCaloHitContainer > toks_calo_
const TString p1
Definition: fwPaths.cc:12
const edm::ESGetToken< HcalDDDRecConstants, HcalRecNumberingRecord > tok_hrdd_
void analyze(const edm::Event &e, const edm::EventSetup &c) override
bool isValid() const
Definition: HandleBase.h:70
GlobalPoint getPosition(const DetId &id) const
Definition: DetId.h:17
auto const good
min quality of good
void add(std::string const &label, ParameterSetDescription const &psetDescription)
HcalTestSimHitID(const edm::ParameterSet &ps)
edm::EventID id() const
Definition: EventBase.h:59
DetId relabel(const uint32_t testId) const
const edm::ESGetToken< CaloGeometry, CaloGeometryRecord > tok_geom_
ESGetTokenH3DDVariant esConsumes(std::string const &Reccord, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
void endJob() override
tok_geom_(esConsumes< CaloGeometry, CaloGeometryRecord, edm::Transition::BeginRun >())
~HcalTestSimHitID() override=default