CMS 3D CMS Logo

SiStripDetVOffFakeBuilder.cc
Go to the documentation of this file.
1 // system include files
2 #include <memory>
3 
4 // user include files
5 
7 
9 
15 
17 
18 using namespace std;
19 using namespace cms;
20 
22  : printdebug_(iConfig.getUntrackedParameter<bool>("printDebug", false)) {}
23 
25 
28  iSetup.get<TrackerDigiGeometryRecord>().get(pDD);
29  edm::LogInfo("SiStripDetVOffFakeBuilder") << " There are " << pDD->detUnits().size() << " detectors" << std::endl;
30 
31  for (const auto& it : pDD->detUnits()) {
32  if (dynamic_cast<StripGeomDetUnit const*>(it) != nullptr) {
33  uint32_t detid = (it->geographicalId()).rawId();
34  const StripTopology& p = dynamic_cast<StripGeomDetUnit const*>(it)->specificTopology();
35  unsigned short Nstrips = p.nstrips();
36  if (Nstrips < 1 || Nstrips > 768) {
37  edm::LogError("SiStripDetVOffFakeBuilder")
38  << " Problem with Number of strips in detector.. " << p.nstrips() << " Exiting program" << endl;
39  exit(1);
40  }
41  detids.push_back(detid);
42  if (printdebug_)
43  edm::LogInfo("SiStripDetVOffFakeBuilder") << "detid " << detid;
44  }
45  }
46 }
47 
49  initialize(iSetup);
50 
51  unsigned int run = evt.id().run();
52 
53  edm::LogInfo("SiStripDetVOffFakeBuilder")
54  << "... creating dummy SiStripDetVOff Data for Run " << run << "\n " << std::endl;
55 
56  SiStripDetVOff* SiStripDetVOff_ = new SiStripDetVOff();
57 
58  // std::vector<uint32_t> TheDetIdHVVector;
59 
60  for (std::vector<uint32_t>::const_iterator it = detids.begin(); it != detids.end(); it++) {
61  //Generate HV and LV for each channel, if at least one of the two is off fill the value
62  int hv = rand() % 20;
63  int lv = rand() % 20;
64  if (hv <= 2) {
65  edm::LogInfo("SiStripDetVOffFakeBuilder") << "detid: " << *it << " HV\t OFF" << std::endl;
66  SiStripDetVOff_->put(*it, 1, -1);
67  // TheDetIdHVVector.push_back(*it);
68  }
69  if (lv <= 2) {
70  edm::LogInfo("SiStripDetVOffFakeBuilder") << "detid: " << *it << " LV\t OFF" << std::endl;
71  SiStripDetVOff_->put(*it, -1, 1);
72  // TheDetIdHVVector.push_back(*it);
73  }
74  if (lv <= 2 || hv <= 2)
75  edm::LogInfo("SiStripDetVOffFakeBuilder") << "detid: " << *it << " V\t OFF" << std::endl;
76  }
77 
78  // SiStripDetVOff_->put(TheDetIdHVVector);
79 
80  //End now write DetVOff data in DB
82 
83  if (mydbservice.isAvailable()) {
84  try {
85  if (mydbservice->isNewTagRequest("SiStripDetVOffRcd")) {
86  mydbservice->createNewIOV<SiStripDetVOff>(
87  SiStripDetVOff_, mydbservice->beginOfTime(), mydbservice->endOfTime(), "SiStripDetVOffRcd");
88  } else {
89  mydbservice->appendSinceTime<SiStripDetVOff>(SiStripDetVOff_, mydbservice->currentTime(), "SiStripDetVOffRcd");
90  }
91  } catch (const cond::Exception& er) {
92  edm::LogError("SiStripDetVOffFakeBuilder") << er.what() << std::endl;
93  } catch (const std::exception& er) {
94  edm::LogError("SiStripDetVOffFakeBuilder") << "caught std::exception " << er.what() << std::endl;
95  }
96  } else {
97  edm::LogError("SiStripDetVOffFakeBuilder") << "Service is unavailable" << std::endl;
98  }
99 }
RunNumber_t run() const
Definition: EventID.h:38
Base exception class for the object to relational access.
Definition: Exception.h:11
const DetContainer & detUnits() const override
Returm a vector of all GeomDet.
char const * what() const override
Definition: Exception.cc:103
susybsm::HSCParticleRefVector hv
Definition: classes.h:28
bool put(const uint32_t DetId, const int HVoff, const int LVoff)
Insert information for a single detId.
void appendSinceTime(T *payloadObj, cond::Time_t sinceTime, const std::string &recordName, bool withlogging=false)
bool isNewTagRequest(const std::string &recordName)
bool isAvailable() const
Definition: Service.h:40
void createNewIOV(T *firstPayloadObj, cond::Time_t firstSinceTime, cond::Time_t firstTillTime, const std::string &recordName, bool withlogging=false)
Namespace of DDCMS conversion namespace.
void analyze(const edm::Event &, const edm::EventSetup &) override
virtual int nstrips() const =0
std::vector< uint32_t > detids
edm::EventID id() const
Definition: EventBase.h:59
T get() const
Definition: EventSetup.h:73
Signal rand(Signal arg)
Definition: vlib.cc:379
virtual void initialize(const edm::EventSetup &)
SiStripDetVOffFakeBuilder(const edm::ParameterSet &iConfig)
def exit(msg="")