CMS 3D CMS Logo

modGains.cc
Go to the documentation of this file.
1 #include <cstdlib>
2 #include <iostream>
3 #include <fstream>
4 #include <vector>
5 #include <cstring>
6 #include <string>
7 
20 
21 class modGains : public edm::one::EDAnalyzer<edm::one::WatchRuns> {
22 
23 public:
24  explicit modGains(const edm::ParameterSet&);
25  ~modGains() override;
26 
27 private:
28  void beginRun(edm::Run const& iEvent, edm::EventSetup const&) override {}
29  void analyze(edm::Event const&, edm::EventSetup const&) override;
30  void endRun(edm::Run const& iEvent, edm::EventSetup const&) override {}
33  double val;
34  bool vectorop;
35 };
36 
38  s_operation = iConfig.getUntrackedParameter<std::string>("Operation");
39  fileIn = iConfig.getUntrackedParameter<std::string>("FileIn");
40  fileOut = iConfig.getUntrackedParameter<std::string>("FileOut");
41  fileCorr = iConfig.getUntrackedParameter<std::string>("FileCorr");
42  val = iConfig.getUntrackedParameter<double>("ScalarFactor");
43 
44  if ( (std::strcmp(s_operation.c_str(),"add")==0) ||
45  (std::strcmp(s_operation.c_str(),"sub")==0) ||
46  (std::strcmp(s_operation.c_str(),"mult")==0) ||
47  (std::strcmp(s_operation.c_str(),"div")==0) ) { // vector operation
48  vectorop = true;
49  } else if ((std::strcmp(s_operation.c_str(),"sadd")==0) ||
50  (std::strcmp(s_operation.c_str(),"ssub")==0) ||
51  (std::strcmp(s_operation.c_str(),"smult")==0) ||
52  (std::strcmp(s_operation.c_str(),"sdiv")==0)) {// scalar operation
53  std::cerr << "Scalar operation: using val=" << val << std::endl;
54  } else {
55  throw cms::Exception("Unknown", "modGains") << "Unknown operator. "
56  << s_operation <<" Stopping.\n";
57  }
58 }
59 
61 
62 void modGains::analyze(edm::Event const&, edm::EventSetup const& iSetup) {
63 
65  iSetup.get<HcalRecNumberingRecord>().get(htopo);
66  HcalTopology topo = (*htopo);
67 
68  // get base conditions
69  std::cerr << fileIn << std::endl;
70  std::ifstream inStream (fileIn.c_str());
71  HcalGains gainsIn(&topo);;
72  HcalDbASCIIIO::getObject (inStream, &gainsIn);
73  inStream.close();
74 
75  HcalRespCorrs corrsIn(&topo);;
76  if (vectorop) {
77  std::ifstream inCorr (fileCorr.c_str());
78  HcalDbASCIIIO::getObject (inCorr, &corrsIn);
79  inCorr.close();
80  }
81 
82  HcalGains gainsOut(&topo);;
83  std::vector<DetId> channels = gainsIn.getAllChannels ();
84  std::cerr << "size = " << channels.size() << std::endl;
85  for (unsigned i = 0; i < channels.size(); i++) {
86  DetId id = channels[i];
87 
88  if (vectorop) { // vector operation
89  if ((std::strcmp(s_operation.c_str(),"mult")==0)||(std::strcmp(s_operation.c_str(),"div")==0)) val = 1.0; // mult,div
90  if ((std::strcmp(s_operation.c_str(),"add")==0)||(std::strcmp(s_operation.c_str(),"sub")==0)) val = 0.0; // add,sub
91  if (corrsIn.exists(id)) {
92  val = corrsIn.getValues(id)->getValue();
93  }
94  if (i%100 == 0)
95  std::cerr << "Vector operation, " << i << "th channel: using val=" << val << std::endl;
96  }
97 
98  HcalGain* p_item = nullptr;
99  if ((std::strcmp(s_operation.c_str(),"add")==0) || (std::strcmp(s_operation.c_str(),"sadd")==0))
100  p_item = new HcalGain(id, gainsIn.getValues(id)->getValue(0) + val, gainsIn.getValues(id)->getValue(1) + val,
101  gainsIn.getValues(id)->getValue(2) + val, gainsIn.getValues(id)->getValue(3) + val);
102 
103  if ((std::strcmp(s_operation.c_str(),"sub")==0) || (std::strcmp(s_operation.c_str(),"ssub")==0))
104  p_item = new HcalGain(id, gainsIn.getValues(id)->getValue(0) - val, gainsIn.getValues(id)->getValue(1) - val,
105  gainsIn.getValues(id)->getValue(2) - val, gainsIn.getValues(id)->getValue(3) - val);
106 
107  if ((std::strcmp(s_operation.c_str(),"mult")==0) || (std::strcmp(s_operation.c_str(),"smult")==0))
108  p_item = new HcalGain(id, gainsIn.getValues(id)->getValue(0) * val, gainsIn.getValues(id)->getValue(1) * val,
109  gainsIn.getValues(id)->getValue(2) * val, gainsIn.getValues(id)->getValue(3) * val);
110 
111  if ((std::strcmp(s_operation.c_str(),"div")==0) || (std::strcmp(s_operation.c_str(),"sdiv")==0))
112  p_item = new HcalGain(id, gainsIn.getValues(id)->getValue(0) / val, gainsIn.getValues(id)->getValue(1) / val,
113  gainsIn.getValues(id)->getValue(2) / val, gainsIn.getValues(id)->getValue(3) / val);
114 
115 
116  // for all
117  if (p_item) gainsOut.addValues(*p_item);
118  // std::cerr << i << std::endl;
119  }
120  // write out
121  std::ofstream outStream (fileOut.c_str());
122  HcalDbASCIIIO::dumpObject (outStream, gainsOut);
123  outStream.close();
124 }
125 
126 //define this as a plug-in
std::string fileOut
Definition: modGains.cc:32
T getUntrackedParameter(std::string const &, T const &) const
double val
Definition: modGains.cc:33
void beginRun(edm::Run const &iEvent, edm::EventSetup const &) override
Definition: modGains.cc:28
void analyze(edm::Event const &, edm::EventSetup const &) override
Definition: modGains.cc:62
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
const Item * getValues(DetId fId, bool throwOnFail=true) const
void endRun(edm::Run const &iEvent, edm::EventSetup const &) override
Definition: modGains.cc:30
std::string fileIn
Definition: modGains.cc:32
int iEvent
Definition: GenABIO.cc:230
const bool exists(DetId fId) const
Definition: DetId.h:18
std::string s_operation
Definition: modGains.cc:31
const T & get() const
Definition: EventSetup.h:55
~modGains() override
Definition: modGains.cc:60
modGains(const edm::ParameterSet &)
Definition: modGains.cc:37
bool getObject(std::istream &fInput, HcalPedestals *fObject)
bool dumpObject(std::ostream &fOutput, const HcalPedestals &fObject)
float getValue() const
Definition: HcalRespCorr.h:20
bool vectorop
Definition: modGains.cc:34
bool addValues(const Item &myItem)
std::string fileCorr
Definition: modGains.cc:32
Definition: Run.h:43