CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalAutoPedestalValidator.cc
Go to the documentation of this file.
2 
4 {
5  outfile = ps.getUntrackedParameter<std::string>("outFile","changed.bool");
6  epsilon = ps.getUntrackedParameter<double>("deltaP",.25);
7 }
8 
10 {
11 }
12 
14 {
15  using namespace edm::eventsetup;
16  // get fake pedestals from file ("new pedestals")
18  es.get<HcalPedestalsRcd>().get("update",newPeds);
19  const HcalPedestals* myNewPeds = newPeds.product();
20 
21  // get DB pedestals from Frontier/OrcoX ("reference")
23  es.get<HcalPedestalsRcd>().get("reference",refPeds);
24  const HcalPedestals* myRefPeds = refPeds.product();
25 
26  std::vector<DetId> listNewChan = myNewPeds->getAllChannels();
27  std::vector<DetId> listRefChan = myRefPeds->getAllChannels();
28  std::vector<DetId>::iterator cell;
29  bool failflag = false;
30  for (std::vector<DetId>::iterator it = listRefChan.begin(); it != listRefChan.end(); it++)
31  {
32  DetId mydetid = *it;
33  cell = std::find(listNewChan.begin(), listNewChan.end(), mydetid);
34  if (cell == listNewChan.end()) {continue;}
35  else
36  {
37  const float* values = (myNewPeds->getValues( mydetid ))->getValues();
38  const float* oldvalue = (myRefPeds->getValues( mydetid ))->getValues();
39  if( (*values==0) &&(*(values+1)==0) && (*(values+2)==0) && (*(values+3)==0) )continue;
40  if( (*oldvalue-*values) + (*(oldvalue+1)-*(values+1)) + (*(oldvalue+2)-*(values+2)) + (*(oldvalue+3)-*(values+3))/4 > epsilon)
41  {
42  std::cout << "Channel " << std::hex << mydetid.rawId() << " Values differ by " << std::dec << (*oldvalue-*values) << " " << (*(oldvalue+1)-*(values+1)) << " " << (*(oldvalue+2)-*(values+2)) << " " << (*(oldvalue+3)-*(values+3)) << std::endl;
43  failflag = true;
44  }
45  listNewChan.erase(cell); // fix 25.02.08
46  }
47  }
48 
49  if(!failflag) std::cout << "These are identical to within deltaP" << std::endl;
50  if(failflag)
51  {
52  // if changed, this creates the empty file changed.bool which the auto job uses as a flag
53  std::ofstream outStream3(outfile.c_str());
54  std::cout << "--- Pedestals changed! ---" << std::endl;
55  }
56 }
57 
T getUntrackedParameter(std::string const &, T const &) const
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
bool ev
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
void analyze(const edm::Event &ev, const edm::EventSetup &es)
std::vector< DetId > getAllChannels() const
Definition: DetId.h:18
HcalAutoPedestalValidator(edm::ParameterSet const &ps)
const T & get() const
Definition: EventSetup.h:55
tuple cout
Definition: gather_cfg.py:121