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 #include <memory>
8 
21 
22 class modGains : public edm::one::EDAnalyzer<edm::one::WatchRuns> {
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 
37 modGains::modGains(const edm::ParameterSet& iConfig) : vectorop(false) {
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) || (std::strcmp(s_operation.c_str(), "sub") == 0) ||
45  (std::strcmp(s_operation.c_str(), "mult") == 0) ||
46  (std::strcmp(s_operation.c_str(), "div") == 0)) { // vector operation
47  vectorop = true;
48  } else if ((std::strcmp(s_operation.c_str(), "sadd") == 0) || (std::strcmp(s_operation.c_str(), "ssub") == 0) ||
49  (std::strcmp(s_operation.c_str(), "smult") == 0) ||
50  (std::strcmp(s_operation.c_str(), "sdiv") == 0)) { // scalar operation
51  std::cerr << "Scalar operation: using val=" << val << std::endl;
52  } else {
53  throw cms::Exception("Unknown", "modGains") << "Unknown operator. " << s_operation << " Stopping.\n";
54  }
55 }
56 
58 
59 void modGains::analyze(edm::Event const&, edm::EventSetup const& iSetup) {
61  iSetup.get<HcalRecNumberingRecord>().get(htopo);
62  HcalTopology topo = (*htopo);
63 
64  // get base conditions
65  std::cerr << fileIn << std::endl;
66  std::ifstream inStream(fileIn.c_str());
67  HcalGains gainsIn(&topo);
68  ;
69  HcalDbASCIIIO::getObject(inStream, &gainsIn);
70  inStream.close();
71 
72  HcalRespCorrs corrsIn(&topo);
73  ;
74  if (vectorop) {
75  std::ifstream inCorr(fileCorr.c_str());
76  HcalDbASCIIIO::getObject(inCorr, &corrsIn);
77  inCorr.close();
78  }
79 
80  HcalGains gainsOut(&topo);
81  ;
82  std::vector<DetId> channels = gainsIn.getAllChannels();
83  std::cerr << "size = " << channels.size() << std::endl;
84  for (unsigned i = 0; i < channels.size(); i++) {
85  DetId id = channels[i];
86 
87  if (vectorop) { // vector operation
88  if ((std::strcmp(s_operation.c_str(), "mult") == 0) || (std::strcmp(s_operation.c_str(), "div") == 0))
89  val = 1.0; // mult,div
90  if ((std::strcmp(s_operation.c_str(), "add") == 0) || (std::strcmp(s_operation.c_str(), "sub") == 0))
91  val = 0.0; // add,sub
92  if (corrsIn.exists(id)) {
93  val = corrsIn.getValues(id)->getValue();
94  }
95  if (i % 100 == 0)
96  std::cerr << "Vector operation, " << i << "th channel: using val=" << val << std::endl;
97  }
98 
99  std::unique_ptr<HcalGain> p_item;
100  if ((std::strcmp(s_operation.c_str(), "add") == 0) || (std::strcmp(s_operation.c_str(), "sadd") == 0))
101  p_item = std::make_unique<HcalGain>(id,
102  gainsIn.getValues(id)->getValue(0) + val,
103  gainsIn.getValues(id)->getValue(1) + val,
104  gainsIn.getValues(id)->getValue(2) + val,
105  gainsIn.getValues(id)->getValue(3) + val);
106 
107  if ((std::strcmp(s_operation.c_str(), "sub") == 0) || (std::strcmp(s_operation.c_str(), "ssub") == 0))
108  p_item = std::make_unique<HcalGain>(id,
109  gainsIn.getValues(id)->getValue(0) - val,
110  gainsIn.getValues(id)->getValue(1) - val,
111  gainsIn.getValues(id)->getValue(2) - val,
112  gainsIn.getValues(id)->getValue(3) - val);
113 
114  if ((std::strcmp(s_operation.c_str(), "mult") == 0) || (std::strcmp(s_operation.c_str(), "smult") == 0))
115  p_item = std::make_unique<HcalGain>(id,
116  gainsIn.getValues(id)->getValue(0) * val,
117  gainsIn.getValues(id)->getValue(1) * val,
118  gainsIn.getValues(id)->getValue(2) * val,
119  gainsIn.getValues(id)->getValue(3) * val);
120 
121  if ((std::strcmp(s_operation.c_str(), "div") == 0) || (std::strcmp(s_operation.c_str(), "sdiv") == 0))
122  p_item = std::make_unique<HcalGain>(id,
123  gainsIn.getValues(id)->getValue(0) / val,
124  gainsIn.getValues(id)->getValue(1) / val,
125  gainsIn.getValues(id)->getValue(2) / val,
126  gainsIn.getValues(id)->getValue(3) / val);
127 
128  // for all
129  if (p_item)
130  gainsOut.addValues(*p_item);
131  // std::cerr << i << std::endl;
132  }
133  // write out
134  std::ofstream outStream(fileOut.c_str());
135  HcalDbASCIIIO::dumpObject(outStream, gainsOut);
136  outStream.close();
137 }
138 
139 //define this as a plug-in
modGains::fileOut
std::string fileOut
Definition: modGains.cc:32
EDAnalyzer.h
HcalRespCorrs
Definition: HcalRespCorrs.h:17
mps_fire.i
i
Definition: mps_fire.py:355
funct::false
false
Definition: Factorize.h:34
ESHandle.h
edm::Run
Definition: Run.h:45
HcalCondObjectContainer::exists
const bool exists(DetId fId) const
Definition: HcalCondObjectContainer.h:223
HcalTopology
Definition: HcalTopology.h:26
modGains::beginRun
void beginRun(edm::Run const &iEvent, edm::EventSetup const &) override
Definition: modGains.cc:28
HcalRecNumberingRecord.h
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
edm::one::EDAnalyzer
Definition: EDAnalyzer.h:30
HcalCondObjectContainer::getValues
const Item * getValues(DetId fId, bool throwOnFail=true) const
Definition: HcalCondObjectContainer.h:159
DetId
Definition: DetId.h:17
MakerMacros.h
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
modGains::fileIn
std::string fileIn
Definition: modGains.cc:32
modGains::endRun
void endRun(edm::Run const &iEvent, edm::EventSetup const &) override
Definition: modGains.cc:30
edm::ESHandle< HcalTopology >
HcalRecNumberingRecord
Definition: HcalRecNumberingRecord.h:23
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
HcalRespCorr::getValue
float getValue() const
Definition: HcalRespCorr.h:19
edm::ParameterSet
Definition: ParameterSet.h:36
Event.h
beam_dqm_sourceclient-live_cfg.cerr
cerr
Definition: beam_dqm_sourceclient-live_cfg.py:17
iEvent
int iEvent
Definition: GenABIO.cc:224
modGains::modGains
modGains(const edm::ParameterSet &)
Definition: modGains.cc:37
edm::EventSetup
Definition: EventSetup.h:57
HcalRespCorrs.h
HcalGains.h
get
#define get
modGains::s_operation
std::string s_operation
Definition: modGains.cc:31
HcalDbASCIIIO::dumpObject
bool dumpObject(std::ostream &fOutput, const HcalPedestals &fObject)
HcalTopology.h
HcalDbASCIIIO.h
Frameworkfwd.h
modGains::fileCorr
std::string fileCorr
Definition: modGains.cc:32
Exception
Definition: hltDiff.cc:246
HcalDbASCIIIO::getObject
bool getObject(std::istream &fInput, HcalPedestals *fObject)
ewkTauDQM_cfi.channels
channels
Definition: ewkTauDQM_cfi.py:14
HcalGains
Definition: HcalGains.h:17
modGains
Definition: modGains.cc:22
Exception.h
modGains::~modGains
~modGains() override
Definition: modGains.cc:57
HcalCondObjectContainer::addValues
bool addValues(const Item &myItem)
Definition: HcalCondObjectContainer.h:234
ParameterSet.h
edm::Event
Definition: Event.h:73
modGains::val
double val
Definition: modGains.cc:33
modGains::analyze
void analyze(edm::Event const &, edm::EventSetup const &) override
Definition: modGains.cc:59
modGains::vectorop
bool vectorop
Definition: modGains.cc:34