CMS 3D CMS Logo

HcalPedestalWidthsCheck.cc
Go to the documentation of this file.
2 
4  outfile = ps.getUntrackedParameter<std::string>("outFile", "null");
5  dumprefs = ps.getUntrackedParameter<std::string>("dumpRefWidthsTo", "null");
6  dumpupdate = ps.getUntrackedParameter<std::string>("dumpUpdateWidthsTo", "null");
7  checkemapflag = ps.getUntrackedParameter<bool>("checkEmap", false);
8  validateflag = ps.getUntrackedParameter<bool>("validateWidths", false);
9  epsilon = ps.getUntrackedParameter<double>("deltaW", 0);
10  m_tok1 = esConsumes<HcalPedestalWidths, HcalPedestalWidthsRcd>(edm::ESInputTag("", "update"));
11  m_tok2 = esConsumes<HcalPedestalWidths, HcalPedestalWidthsRcd>(edm::ESInputTag("", "reference"));
12  m_tokmap = esConsumes<HcalElectronicsMap, HcalElectronicsMapRcd>(edm::ESInputTag("", "reference"));
13 }
14 
16 
18  using namespace edm::eventsetup;
19 
20  // get fake pedestals from file ("new pedestals")
21  const HcalPedestalWidths* myNewPeds = &es.getData(m_tok1);
22 
23  // get DB pedestals from Frontier/OrcoX ("reference")
24  const HcalPedestalWidths* myRefPeds = &es.getData(m_tok2);
25 
26  // get e-map from reference
27  const HcalElectronicsMap* myRefEMap = &es.getData(m_tokmap);
28 
29  // dump pedestals:
30  if (dumpupdate != "null") {
31  std::ofstream outStream(dumpupdate.c_str());
32  std::cout << "--- Dumping PedestalWidths - update ---" << std::endl;
33  HcalDbASCIIIO::dumpObject(outStream, (*myNewPeds));
34  }
35  if (dumprefs != "null") {
36  std::ofstream outStream2(dumprefs.c_str());
37  std::cout << "--- Dumping PedestalWidths - reference ---" << std::endl;
38  HcalDbASCIIIO::dumpObject(outStream2, (*myRefPeds));
39  }
40  // first get the list of all channels from the update
41  std::vector<DetId> listNewChan = myNewPeds->getAllChannels();
42 
43  // go through list of valid channels from reference, look up if pedestals exist for update
44  // push back into new vector the corresponding updated pedestals,
45  // or if it doesn't exist, the reference
46  HcalPedestalWidths* resultPeds = new HcalPedestalWidths(myRefPeds->topo(), myRefPeds->isADC());
47  std::vector<DetId> listRefChan = myRefPeds->getAllChannels();
48  std::vector<DetId>::iterator cell;
49 
50  if (validateflag) {
51  for (std::vector<DetId>::iterator it = listRefChan.begin(); it != listRefChan.end(); it++) {
52  DetId mydetid = *it;
53  cell = std::find(listNewChan.begin(), listNewChan.end(), mydetid);
54  if (cell == listNewChan.end()) // not present in new list, take old pedestals
55  {
56  throw cms::Exception("DataDoesNotMatch") << "Value not found in reference" << std::endl;
57  } else // present in new list, take new pedestals
58  {
59  const HcalPedestalWidth* first = myNewPeds->getValues(mydetid);
60  const HcalPedestalWidth* second = myRefPeds->getValues(mydetid);
61  const float* newwidth = first->getValues();
62  const float* oldwidth = second->getValues();
63  if ((*newwidth != *oldwidth) || (*(newwidth + 1) != *(oldwidth + 1)) || (*(newwidth + 2) != *(oldwidth + 2)) ||
64  (*(newwidth + 3) != *(oldwidth + 3)) || (*(newwidth + 4) != *(oldwidth + 4)) ||
65  (*(newwidth + 5) != *(oldwidth + 5)) || (*(newwidth + 6) != *(oldwidth + 6)) ||
66  (*(newwidth + 7) != *(oldwidth + 7)) || (*(newwidth + 8) != *(oldwidth + 8)) ||
67  (*(newwidth + 9) != *(oldwidth + 9))) {
68  throw cms::Exception("DataDoesNotMatch") << "Values are not identical" << std::endl;
69  }
70  listNewChan.erase(cell); // fix 25.02.08
71  }
72  }
73  std::cout << "These are identical" << std::endl;
74  }
75 
76  if (epsilon != 0) {
77  for (std::vector<DetId>::iterator it = listRefChan.begin(); it != listRefChan.end(); it++) {
78  DetId mydetid = *it;
79  cell = std::find(listNewChan.begin(), listNewChan.end(), mydetid);
80  if (cell == listNewChan.end()) // not present in new list, take old pedestals
81  {
82  throw cms::Exception("DataDoesNotMatch") << "Value not found in reference" << std::endl;
83  } else // present in new list, take new pedestals
84  {
85  const HcalPedestalWidth* first = myNewPeds->getValues(mydetid);
86  const HcalPedestalWidth* second = myRefPeds->getValues(mydetid);
87  const float* newwidth = first->getValues();
88  const float* oldwidth = second->getValues();
89  if (fabs(*newwidth - *oldwidth) > epsilon || fabs(*(newwidth + 1) - *(oldwidth + 1)) > epsilon ||
90  fabs(*(newwidth + 2) - *(oldwidth + 2)) > epsilon || fabs(*(newwidth + 3) - *(oldwidth + 3)) > epsilon ||
91  fabs(*(newwidth + 4) - *(oldwidth + 4)) > epsilon || fabs(*(newwidth + 5) - *(oldwidth + 5)) > epsilon ||
92  fabs(*(newwidth + 6) - *(oldwidth + 6)) > epsilon || fabs(*(newwidth + 7) - *(oldwidth + 7)) > epsilon ||
93  fabs(*(newwidth + 8) - *(oldwidth + 8)) > epsilon || fabs(*(newwidth + 9) - *(oldwidth + 9)) > epsilon) {
94  throw cms::Exception("DataDoesNotMatch") << "Values differ by more than deltaW" << std::endl;
95  }
96  listNewChan.erase(cell); // fix 25.02.08
97  }
98  }
99  std::cout << "These are identical" << std::endl;
100  }
101  if (outfile != "null") {
102  for (std::vector<DetId>::iterator it = listRefChan.begin(); it != listRefChan.end(); it++) {
103  DetId mydetid = *it;
104  cell = std::find(listNewChan.begin(), listNewChan.end(), mydetid);
105  if (cell == listNewChan.end()) // not present in new list, take old pedestals
106  {
107  const HcalPedestalWidth* mywidth = myRefPeds->getValues(mydetid);
108  std::cout << "o";
109  resultPeds->addValues(*mywidth);
110  } else // present in new list, take new pedestals
111  {
112  const HcalPedestalWidth* mywidth = myNewPeds->getValues(mydetid);
113  std::cout << "n";
114  resultPeds->addValues(*mywidth);
115 
116  listNewChan.erase(cell); // fix 25.02.08
117  }
118  }
119 
120  for (std::vector<DetId>::iterator it = listNewChan.begin(); it != listNewChan.end(); it++) // fix 25.02.08
121  {
122  DetId mydetid = *it;
123  const HcalPedestalWidth* mywidth = myNewPeds->getValues(mydetid);
124  std::cout << "N";
125  resultPeds->addValues(*mywidth);
126  }
127  // dump the resulting list of pedestals into a file
128  std::ofstream outStream3(outfile.c_str());
129  std::cout << "--- Dumping PedestalWidths - the combined ones ---" << std::endl;
130  HcalDbASCIIIO::dumpObject(outStream3, (*resultPeds));
131  }
132  std::cout << std::endl;
133  if (checkemapflag) {
134  std::vector<DetId> listResult = resultPeds->getAllChannels();
135  // get the e-map list of channels
136  std::vector<HcalGenericDetId> listEMap = myRefEMap->allPrecisionId();
137  // look up if emap channels are all present in pedestals, if not then cerr
138  for (std::vector<HcalGenericDetId>::const_iterator it = listEMap.begin(); it != listEMap.end(); it++) {
139  DetId mydetid = DetId(it->rawId());
140  if (std::find(listResult.begin(), listResult.end(), mydetid) == listResult.end()) {
141  std::cout << "Conditions not found for DetId = " << HcalGenericDetId(it->rawId()) << std::endl;
142  }
143  }
144  }
145 }
146 
147 //vecDetId HcalPedestalWidthsCheck::getMissingDetIds(vector<HcalPedestalWidths> & myPedestalWidths)
148 //{
149 // HcalGeometry myHcalGeometry;
150 // // get the valid detid from the various subdetectors
151 // vecDetId validHB = myHcalGeometry.getValidDetIds(Hcal,HcalBarrel); // check these numbers
152 // vecDetId validHE = myHcalGeometry.getValidDetIds(Hcal,HcalEndcap);
153 // vecDetId validHF = myHcalGeometry.getValidDetIds(Hcal,HcalForward);
154 // vecDetId validHO = myHcalGeometry.getValidDetIds(Hcal,HcalOuter);
155 // vecDetId validZDC = myHcalGeometry.getValidDetIds(Calo,2);
156 //
157 // // check if everything is there in pedestals
158 //
159 //
160 //}
161 
HcalPedestalWidthsCheck::checkemapflag
bool checkemapflag
Definition: HcalPedestalWidthsCheck.h:54
HcalPedestalWidthsCheck::dumpupdate
std::string dumpupdate
Definition: HcalPedestalWidthsCheck.h:53
edm::ESInputTag
Definition: ESInputTag.h:87
HcalPedestalWidthsCheck
Definition: HcalPedestalWidthsCheck.h:42
HcalPedestalWidthsCheck::m_tokmap
edm::ESGetToken< HcalElectronicsMap, HcalElectronicsMapRcd > m_tokmap
Definition: HcalPedestalWidthsCheck.h:59
HcalPedestalWidthsCheck::~HcalPedestalWidthsCheck
~HcalPedestalWidthsCheck() override
Definition: HcalPedestalWidthsCheck.cc:15
HcalPedestalWidthsCheck::validateflag
bool validateflag
Definition: HcalPedestalWidthsCheck.h:55
HcalGenericDetId
Definition: HcalGenericDetId.h:15
gather_cfg.cout
cout
Definition: gather_cfg.py:144
edm::second
U second(std::pair< T, U > const &p)
Definition: ParameterSet.cc:222
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
HcalCondObjectContainer::getValues
const Item * getValues(DetId fId, bool throwOnFail=true) const
Definition: HcalCondObjectContainer.h:159
HcalElectronicsMap::allPrecisionId
std::vector< HcalGenericDetId > allPrecisionId() const
Definition: HcalElectronicsMap.cc:139
HcalPedestalWidths
Definition: HcalPedestalWidths.h:17
DetId
Definition: DetId.h:17
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
HcalPedestalWidthsCheck::outfile
std::string outfile
Definition: HcalPedestalWidthsCheck.h:51
first
auto first
Definition: CAHitNtupletGeneratorKernelsImpl.h:125
HcalPedestalWidthsCheck::epsilon
double epsilon
Definition: HcalPedestalWidthsCheck.h:56
HcalPedestalWidthsCheck::m_tok2
edm::ESGetToken< HcalPedestalWidths, HcalPedestalWidthsRcd > m_tok2
Definition: HcalPedestalWidthsCheck.h:58
edm::ParameterSet
Definition: ParameterSet.h:47
HcalPedestalWidths::isADC
bool isADC() const
Definition: HcalPedestalWidths.h:28
HcalCondObjectContainer::getAllChannels
std::vector< DetId > getAllChannels() const
Definition: HcalCondObjectContainer.h:312
HcalCondObjectContainerBase::topo
const HcalTopology * topo() const
Definition: HcalCondObjectContainer.h:22
edm::EventSetup
Definition: EventSetup.h:58
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
HcalPedestalWidthsCheck::analyze
void analyze(const edm::Event &ev, const edm::EventSetup &es) override
Definition: HcalPedestalWidthsCheck.cc:17
edm::EventSetup::getData
bool getData(T &iHolder) const
Definition: EventSetup.h:127
HcalElectronicsMap
Definition: HcalElectronicsMap.h:31
HcalDbASCIIIO::dumpObject
bool dumpObject(std::ostream &fOutput, const HcalPedestals &fObject)
HcalPedestalWidthsCheck::HcalPedestalWidthsCheck
HcalPedestalWidthsCheck(edm::ParameterSet const &ps)
Definition: HcalPedestalWidthsCheck.cc:3
ev
bool ev
Definition: Hydjet2Hadronizer.cc:97
Exception
Definition: hltDiff.cc:245
HcalCondObjectContainer::addValues
bool addValues(const Item &myItem)
Definition: HcalCondObjectContainer.h:234
HcalPedestalWidthsCheck::m_tok1
edm::ESGetToken< HcalPedestalWidths, HcalPedestalWidthsRcd > m_tok1
Definition: HcalPedestalWidthsCheck.h:57
HcalPedestalWidth
Definition: HcalPedestalWidth.h:15
HcalPedestalWidthsCheck.h
HcalPedestalWidthsCheck::dumprefs
std::string dumprefs
Definition: HcalPedestalWidthsCheck.h:52
edm::Event
Definition: Event.h:73
edm::eventsetup
Definition: ES_DDDetector.cc:16