CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 
20 
21 class modGains : public edm::one::EDAnalyzer<edm::one::WatchRuns> {
22 public:
23  explicit modGains(const edm::ParameterSet&);
24  ~modGains() override;
25 
26 private:
27  void beginRun(edm::Run const& iEvent, edm::EventSetup const&) override {}
28  void analyze(edm::Event const&, edm::EventSetup const&) override;
29  void endRun(edm::Run const& iEvent, edm::EventSetup const&) override {}
32  double val;
33  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  tok_htopo_ = esConsumes<HcalTopology, HcalRecNumberingRecord>();
44 
45  if ((std::strcmp(s_operation.c_str(), "add") == 0) || (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) || (std::strcmp(s_operation.c_str(), "ssub") == 0) ||
50  (std::strcmp(s_operation.c_str(), "smult") == 0) ||
51  (std::strcmp(s_operation.c_str(), "sdiv") == 0)) { // scalar operation
52  std::cerr << "Scalar operation: using val=" << val << std::endl;
53  } else {
54  throw cms::Exception("Unknown", "modGains") << "Unknown operator. " << s_operation << " Stopping.\n";
55  }
56 }
57 
59 
60 void modGains::analyze(edm::Event const&, edm::EventSetup const& iSetup) {
61  HcalTopology topo = iSetup.getData(tok_htopo_);
62 
63  // get base conditions
64  std::cerr << fileIn << std::endl;
65  std::ifstream inStream(fileIn.c_str());
66  HcalGains gainsIn(&topo);
67  ;
68  HcalDbASCIIIO::getObject(inStream, &gainsIn);
69  inStream.close();
70 
71  HcalRespCorrs corrsIn(&topo);
72  ;
73  if (vectorop) {
74  std::ifstream inCorr(fileCorr.c_str());
75  HcalDbASCIIIO::getObject(inCorr, &corrsIn);
76  inCorr.close();
77  }
78 
79  HcalGains gainsOut(&topo);
80  ;
81  std::vector<DetId> channels = gainsIn.getAllChannels();
82  std::cerr << "size = " << channels.size() << std::endl;
83  for (unsigned i = 0; i < channels.size(); i++) {
84  DetId id = channels[i];
85 
86  if (vectorop) { // vector operation
87  if ((std::strcmp(s_operation.c_str(), "mult") == 0) || (std::strcmp(s_operation.c_str(), "div") == 0))
88  val = 1.0; // mult,div
89  if ((std::strcmp(s_operation.c_str(), "add") == 0) || (std::strcmp(s_operation.c_str(), "sub") == 0))
90  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  std::unique_ptr<HcalGain> p_item;
99  if ((std::strcmp(s_operation.c_str(), "add") == 0) || (std::strcmp(s_operation.c_str(), "sadd") == 0))
100  p_item = std::make_unique<HcalGain>(id,
101  gainsIn.getValues(id)->getValue(0) + val,
102  gainsIn.getValues(id)->getValue(1) + val,
103  gainsIn.getValues(id)->getValue(2) + val,
104  gainsIn.getValues(id)->getValue(3) + val);
105 
106  if ((std::strcmp(s_operation.c_str(), "sub") == 0) || (std::strcmp(s_operation.c_str(), "ssub") == 0))
107  p_item = std::make_unique<HcalGain>(id,
108  gainsIn.getValues(id)->getValue(0) - val,
109  gainsIn.getValues(id)->getValue(1) - val,
110  gainsIn.getValues(id)->getValue(2) - val,
111  gainsIn.getValues(id)->getValue(3) - val);
112 
113  if ((std::strcmp(s_operation.c_str(), "mult") == 0) || (std::strcmp(s_operation.c_str(), "smult") == 0))
114  p_item = std::make_unique<HcalGain>(id,
115  gainsIn.getValues(id)->getValue(0) * val,
116  gainsIn.getValues(id)->getValue(1) * val,
117  gainsIn.getValues(id)->getValue(2) * val,
118  gainsIn.getValues(id)->getValue(3) * val);
119 
120  if ((std::strcmp(s_operation.c_str(), "div") == 0) || (std::strcmp(s_operation.c_str(), "sdiv") == 0))
121  p_item = std::make_unique<HcalGain>(id,
122  gainsIn.getValues(id)->getValue(0) / val,
123  gainsIn.getValues(id)->getValue(1) / val,
124  gainsIn.getValues(id)->getValue(2) / val,
125  gainsIn.getValues(id)->getValue(3) / val);
126 
127  // for all
128  if (p_item)
129  gainsOut.addValues(*p_item);
130  // std::cerr << i << std::endl;
131  }
132  // write out
133  std::ofstream outStream(fileOut.c_str());
134  HcalDbASCIIIO::dumpObject(outStream, gainsOut);
135  outStream.close();
136 }
137 
138 //define this as a plug-in
std::string fileOut
Definition: modGains.cc:31
T getUntrackedParameter(std::string const &, T const &) const
double val
Definition: modGains.cc:32
void beginRun(edm::Run const &iEvent, edm::EventSetup const &) override
Definition: modGains.cc:27
void analyze(edm::Event const &, edm::EventSetup const &) override
Definition: modGains.cc:60
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const Item * getValues(DetId fId, bool throwOnFail=true) const
bool getData(T &iHolder) const
Definition: EventSetup.h:128
void endRun(edm::Run const &iEvent, edm::EventSetup const &) override
Definition: modGains.cc:29
std::string fileIn
Definition: modGains.cc:31
int iEvent
Definition: GenABIO.cc:224
edm::ESGetToken< HcalTopology, HcalRecNumberingRecord > tok_htopo_
Definition: modGains.cc:34
Definition: DetId.h:17
std::string s_operation
Definition: modGains.cc:30
~modGains() override
Definition: modGains.cc:58
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:19
bool vectorop
Definition: modGains.cc:33
bool exists(DetId fId) const
bool addValues(const Item &myItem)
std::string fileCorr
Definition: modGains.cc:31
Definition: Run.h:45