CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripDetVOffFakeBuilder.cc
Go to the documentation of this file.
1 // system include files
2 #include <memory>
3 
4 // user include files
5 
7 
8 
10 
16 
17 
19 
20 using namespace std;
21 using namespace cms;
22 
24  printdebug_(iConfig.getUntrackedParameter<bool>("printDebug",false)){}
25 
27 
28 
30 
32  iSetup.get<TrackerDigiGeometryRecord>().get( pDD );
33  edm::LogInfo("SiStripDetVOffFakeBuilder") <<" There are "<<pDD->detUnits().size() <<" detectors"<<std::endl;
34 
35  for(TrackerGeometry::DetUnitContainer::const_iterator it = pDD->detUnits().begin(); it != pDD->detUnits().end(); it++){
36 
37  if( dynamic_cast<StripGeomDetUnit*>((*it))!=0){
38  uint32_t detid=((*it)->geographicalId()).rawId();
39  const StripTopology& p = dynamic_cast<StripGeomDetUnit*>((*it))->specificTopology();
40  unsigned short Nstrips = p.nstrips();
41  if(Nstrips<1 || Nstrips>768 ) {
42  edm::LogError("SiStripDetVOffFakeBuilder")<<" Problem with Number of strips in detector.. "<< p.nstrips() <<" Exiting program"<<endl;
43  exit(1);
44  }
45  detids.push_back(detid);
46  if (printdebug_)
47  edm::LogInfo("SiStripDetVOffFakeBuilder")<< "detid " << detid;
48  }
49  }
50 }
51 
53 {
54  initialize(iSetup);
55 
56  unsigned int run=evt.id().run();
57 
58  edm::LogInfo("SiStripDetVOffFakeBuilder") << "... creating dummy SiStripDetVOff Data for Run " << run << "\n " << std::endl;
59 
60 
61 
62  SiStripDetVOff* SiStripDetVOff_ = new SiStripDetVOff();
63 
64  // std::vector<uint32_t> TheDetIdHVVector;
65 
66  for(std::vector<uint32_t>::const_iterator it = detids.begin(); it != detids.end(); it++){
67 
68  //Generate HV and LV for each channel, if at least one of the two is off fill the value
69  int hv=rand() % 20;
70  int lv=rand() % 20;
71  if( hv<=2 ) {
72  edm::LogInfo("SiStripDetVOffFakeBuilder") << "detid: " << *it << " HV\t OFF" << std::endl;
73  SiStripDetVOff_->put( *it, 1, -1 );
74  // TheDetIdHVVector.push_back(*it);
75  }
76  if( lv<=2 ) {
77  edm::LogInfo("SiStripDetVOffFakeBuilder") << "detid: " << *it << " LV\t OFF" << std::endl;
78  SiStripDetVOff_->put( *it, -1, 1 );
79  // TheDetIdHVVector.push_back(*it);
80  }
81  if( lv<=2 || hv<=2 ) edm::LogInfo("SiStripDetVOffFakeBuilder") << "detid: " << *it << " V\t OFF" << std::endl;
82  }
83 
84  // SiStripDetVOff_->put(TheDetIdHVVector);
85 
86 
87 
88  //End now write DetVOff data in DB
90 
91  if( mydbservice.isAvailable() ){
92  try{
93  if( mydbservice->isNewTagRequest("SiStripDetVOffRcd") ){
94  mydbservice->createNewIOV<SiStripDetVOff>(SiStripDetVOff_,mydbservice->beginOfTime(),mydbservice->endOfTime(),"SiStripDetVOffRcd");
95  } else {
96  mydbservice->appendSinceTime<SiStripDetVOff>(SiStripDetVOff_,mydbservice->currentTime(),"SiStripDetVOffRcd");
97  }
98  }catch(const cond::Exception& er){
99  edm::LogError("SiStripDetVOffFakeBuilder")<<er.what()<<std::endl;
100  }catch(const std::exception& er){
101  edm::LogError("SiStripDetVOffFakeBuilder")<<"caught std::exception "<<er.what()<<std::endl;
102  }catch(...){
103  edm::LogError("SiStripDetVOffFakeBuilder")<<"Funny error"<<std::endl;
104  }
105  }else{
106  edm::LogError("SiStripDetVOffFakeBuilder")<<"Service is unavailable"<<std::endl;
107  }
108 }
RunNumber_t run() const
Definition: EventID.h:42
virtual char const * what() const
Definition: Exception.cc:141
virtual int nstrips() const =0
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:47
void createNewIOV(T *firstPayloadObj, cond::Time_t firstSinceTime, cond::Time_t firstTillTime, const std::string &recordName, bool withlogging=false)
const T & get() const
Definition: EventSetup.h:55
std::vector< uint32_t > detids
edm::EventID id() const
Definition: EventBase.h:56
Signal rand(Signal arg)
Definition: vlib.cc:442
virtual void analyze(const edm::Event &, const edm::EventSetup &)
virtual void initialize(const edm::EventSetup &)
SiStripDetVOffFakeBuilder(const edm::ParameterSet &iConfig)