CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripThresholdBuilder.cc
Go to the documentation of this file.
3 #include <iostream>
4 #include <fstream>
5 
7  fp_(iConfig.getUntrackedParameter<edm::FileInPath>("file",edm::FileInPath("CalibTracker/SiStripCommon/data/SiStripDetInfo.dat"))),
8  printdebug_(iConfig.getUntrackedParameter<uint32_t>("printDebug",3)){}
9 
10 
12 
13 
14  unsigned int run=evt.id().run();
15 
16  edm::LogInfo("SiStripThresholdBuilder") << "... creating dummy SiStripThreshold Data for Run " << run << "\n " << std::endl;
17 
19 
21 
22  const std::map<uint32_t, SiStripDetInfoFileReader::DetInfo > DetInfos = reader.getAllData();
23 
24  int count=-1;
25  for(std::map<uint32_t, SiStripDetInfoFileReader::DetInfo >::const_iterator it = DetInfos.begin(); it != DetInfos.end(); it++){
26  count++;
27  //Generate Pedestal for det detid
28  SiStripThreshold::Container theSiStripVector;
29  uint16_t strip=0;
30  while(strip<128*it->second.nApvs){
31 
32  float lTh = (CLHEP::RandFlat::shoot(1.) * 64)/5;
33  float hTh = (CLHEP::RandFlat::shoot(1.) * 64)/5;
34  if (hTh < lTh){
35  float tmp = hTh;
36  hTh = lTh;
37  lTh = tmp;
38  }
39  float cTh = (CLHEP::RandFlat::shoot(1.) * 30.);
40 
41  obj->setData(strip,lTh,hTh,cTh,theSiStripVector);
42  if (count<(int)printdebug_){
43  std::stringstream ss;
44  theSiStripVector.back().print(ss);
45  edm::LogInfo("SiStripThresholdBuilder") <<"detid: " << it->first << " \n"
46  << "firstStrip: " << strip << " \t"
47  << "lTh: " << lTh << " \t"
48  << "hTh: " << hTh << " \t"
49  << "cTh: " << cTh << " \t"
50  << "FirstStrip_and_Hth: " << theSiStripVector.back().FirstStrip_and_Hth << " \n"
51  << ss.str()
52  << std::endl;
53  }
54  obj->setData(strip+1,lTh,hTh,theSiStripVector);
55  strip=(uint16_t) (CLHEP::RandFlat::shoot(strip+2,128*it->second.nApvs));
56  }
57  if ( ! obj->put(it->first,theSiStripVector) )
58  edm::LogError("SiStripThresholdBuilder")<<"[SiStripThresholdBuilder::analyze] detid already exists"<<std::endl;
59  }
60 
61 
62  //End now write sistrippedestals data in DB
64 
65  if( mydbservice.isAvailable() ){
66  if ( mydbservice->isNewTagRequest("SiStripThresholdRcd") ){
67  mydbservice->createNewIOV<SiStripThreshold>(obj,mydbservice->beginOfTime(),mydbservice->endOfTime(),"SiStripThresholdRcd");
68  } else {
69  mydbservice->appendSinceTime<SiStripThreshold>(obj,mydbservice->currentTime(),"SiStripThresholdRcd");
70  }
71  }else{
72  edm::LogError("SiStripThresholdBuilder")<<"Service is unavailable"<<std::endl;
73  }
74 }
75 
RunNumber_t run() const
Definition: EventID.h:39
bool put(const uint32_t &detID, const InputVector &vect)
virtual void analyze(const edm::Event &, const edm::EventSetup &)
U second(std::pair< T, U > const &p)
std::vector< Data > Container
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:46
void createNewIOV(T *firstPayloadObj, cond::Time_t firstSinceTime, cond::Time_t firstTillTime, const std::string &recordName, bool withlogging=false)
SiStripThresholdBuilder(const edm::ParameterSet &iConfig)
void setData(const uint16_t &strip, const float &lTh, const float &hTh, Container &vthr)
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
edm::EventID id() const
Definition: EventBase.h:59
std::string fullPath() const
Definition: FileInPath.cc:184