CMS 3D CMS Logo

SiStripThresholdBuilder.cc
Go to the documentation of this file.
3 #include <iostream>
4 #include <fstream>
5 
7  : fp_(iConfig.getUntrackedParameter<edm::FileInPath>(
8  "file", edm::FileInPath("CalibTracker/SiStripCommon/data/SiStripDetInfo.dat"))),
9  printdebug_(iConfig.getUntrackedParameter<uint32_t>("printDebug", 3)) {}
10 
12  unsigned int run = evt.id().run();
13 
14  edm::LogInfo("SiStripThresholdBuilder")
15  << "... creating dummy SiStripThreshold Data for Run " << run << "\n " << std::endl;
16 
18 
20 
21  const std::map<uint32_t, SiStripDetInfoFileReader::DetInfo>& DetInfos = reader.getAllData();
22 
23  int count = -1;
24  for (std::map<uint32_t, SiStripDetInfoFileReader::DetInfo>::const_iterator it = DetInfos.begin();
25  it != DetInfos.end();
26  it++) {
27  count++;
28  //Generate Pedestal for det detid
29  SiStripThreshold::Container theSiStripVector;
30  uint16_t strip = 0;
31  while (strip < 128 * it->second.nApvs) {
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")
46  << "detid: " << it->first << " \n"
47  << "firstStrip: " << strip << " \t"
48  << "lTh: " << lTh << " \t"
49  << "hTh: " << hTh << " \t"
50  << "cTh: " << cTh << " \t"
51  << "FirstStrip_and_Hth: " << theSiStripVector.back().FirstStrip_and_Hth << " \n"
52  << ss.str() << 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")
59  << "[SiStripThresholdBuilder::analyze] detid already exists" << std::endl;
60  }
61 
62  //End now write sistrippedestals data in DB
64 
65  if (mydbservice.isAvailable()) {
66  if (mydbservice->isNewTagRequest("SiStripThresholdRcd")) {
67  mydbservice->createNewIOV<SiStripThreshold>(
68  obj, mydbservice->beginOfTime(), mydbservice->endOfTime(), "SiStripThresholdRcd");
69  } else {
70  mydbservice->appendSinceTime<SiStripThreshold>(obj, mydbservice->currentTime(), "SiStripThresholdRcd");
71  }
72  } else {
73  edm::LogError("SiStripThresholdBuilder") << "Service is unavailable" << std::endl;
74  }
75 }
SiStripThresholdBuilder::analyze
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: SiStripThresholdBuilder.cc:11
cond::service::PoolDBOutputService::beginOfTime
cond::Time_t beginOfTime() const
Definition: PoolDBOutputService.cc:215
edm
HLT enums.
Definition: AlignableModifier.h:19
digitizers_cfi.strip
strip
Definition: digitizers_cfi.py:19
cond::service::PoolDBOutputService::appendSinceTime
void appendSinceTime(const T *payloadObj, cond::Time_t sinceTime, const std::string &recordName)
Definition: PoolDBOutputService.h:141
edm::second
U second(std::pair< T, U > const &p)
Definition: ParameterSet.cc:222
SiStripThreshold::Container
std::vector< Data > Container
Definition: SiStripThreshold.h:104
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
createJobs.tmp
tmp
align.sh
Definition: createJobs.py:716
SiStripDetInfoFileReader
Definition: SiStripDetInfoFileReader.h:30
edm::Service::isAvailable
bool isAvailable() const
Definition: Service.h:40
contentValuesCheck.ss
ss
Definition: contentValuesCheck.py:33
cond::service::PoolDBOutputService::createNewIOV
void createNewIOV(const T *firstPayloadObj, cond::Time_t firstSinceTime, cond::Time_t, const std::string &recordName)
Definition: PoolDBOutputService.h:116
DQM.reader
reader
Definition: DQM.py:105
SiStripThresholdBuilder.h
submitPVResolutionJobs.count
count
Definition: submitPVResolutionJobs.py:352
SiStripDetInfoFileReader.h
edm::EventID::run
RunNumber_t run() const
Definition: EventID.h:38
getGTfromDQMFile.obj
obj
Definition: getGTfromDQMFile.py:32
edm::ParameterSet
Definition: ParameterSet.h:47
edm::Service< cond::service::PoolDBOutputService >
SiStripThresholdBuilder::SiStripThresholdBuilder
SiStripThresholdBuilder(const edm::ParameterSet &iConfig)
Definition: SiStripThresholdBuilder.cc:6
edm::EventSetup
Definition: EventSetup.h:58
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
cond::service::PoolDBOutputService::endOfTime
cond::Time_t endOfTime() const
Definition: PoolDBOutputService.cc:213
SiStripThreshold
Definition: __init__.py:1
writedatasetfile.run
run
Definition: writedatasetfile.py:27
SiStripThresholdBuilder::fp_
edm::FileInPath fp_
Definition: SiStripThresholdBuilder.h:25
edm::EventBase::id
edm::EventID id() const
Definition: EventBase.h:59
cond::service::PoolDBOutputService::isNewTagRequest
bool isNewTagRequest(const std::string &recordName)
Definition: PoolDBOutputService.cc:128
edm::Event
Definition: Event.h:73
edm::Log
Definition: MessageLogger.h:70
SiStripThresholdBuilder::printdebug_
uint32_t printdebug_
Definition: SiStripThresholdBuilder.h:26
cond::service::PoolDBOutputService::currentTime
cond::Time_t currentTime() const
Definition: PoolDBOutputService.cc:217
edm::FileInPath::fullPath
std::string fullPath() const
Definition: FileInPath.cc:161