CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripBadChannelBuilder.cc
Go to the documentation of this file.
3 
4 #include <iostream>
5 #include <fstream>
6 
7 
9 
10  fp_ = iConfig.getUntrackedParameter<edm::FileInPath>("file",edm::FileInPath("CalibTracker/SiStripCommon/data/SiStripDetInfo.dat"));
11  printdebug_ = iConfig.getUntrackedParameter<bool>("printDebug",false);
12  BadComponentList_ = iConfig.getUntrackedParameter<Parameters>("BadComponentList");
13 }
14 
15 
17 }
18 
20 
21  unsigned int run=event.id().run();
22 
23  edm::LogInfo("SiStripBadChannelBuilder") << "... creating dummy SiStripBadStrip Data for Run " << run << "\n " << std::endl;
24 
26 
28 
29  const std::vector<uint32_t> DetIds = reader.getAllDetIds();
30 
31  for(Parameters::iterator iBadComponent = BadComponentList_.begin(); iBadComponent != BadComponentList_.end(); ++iBadComponent ) {
32 
33  uint32_t BadModule_ = iBadComponent->getParameter<uint32_t>("BadModule");
34  std::vector<uint32_t> BadChannelList_ = iBadComponent->getParameter<std::vector<uint32_t> >("BadChannelList");
35 
36  std::vector<unsigned int> theSiStripVector;
37  unsigned int NStrips=reader.getNumberOfApvsAndStripLength(BadModule_).first*128;
38 
39  uint32_t lastBad=999;
40  unsigned short firstBadStrip=0, NconsecutiveBadStrips=0;
41  unsigned int theBadStripRange;
42 
43  for(std::vector<uint32_t>::const_iterator is=BadChannelList_.begin(); is!=BadChannelList_.end(); ++is){
44  if (*is>NStrips-1)
45  break;
46  if (*is!=lastBad+1){
47  //new set
48 
49  if ( lastBad!=999 ){
50  //save previous set
51  theBadStripRange = obj->encode(firstBadStrip,NconsecutiveBadStrips);
52 
53  if (printdebug_)
54  edm::LogInfo("SiStripBadChannelBuilder") << "detid " << BadModule_ << " \t"
55  << " firstBadStrip " << firstBadStrip << "\t "
56  << " NconsecutiveBadStrips " << NconsecutiveBadStrips << "\t "
57  << " packed integer " << std::hex << theBadStripRange << std::dec
58  << std::endl;
59 
60  theSiStripVector.push_back(theBadStripRange);
61  }
62 
63  firstBadStrip=*is;
64  NconsecutiveBadStrips=0;
65  }
66  NconsecutiveBadStrips++;
67  lastBad=*is;
68  }
69 
70  theBadStripRange = obj->encode(firstBadStrip,NconsecutiveBadStrips);
71  if (printdebug_)
72  edm::LogInfo("SiStripBadChannelBuilder") << "detid " << BadModule_ << " \t"
73  << " firstBadStrip " << firstBadStrip << "\t "
74  << " NconsecutiveBadStrips " << NconsecutiveBadStrips << "\t "
75  << " packed integer " << std::hex << theBadStripRange << std::dec
76  << std::endl;
77 
78  theSiStripVector.push_back(theBadStripRange);
79 
80  SiStripBadStrip::Range range(theSiStripVector.begin(),theSiStripVector.end());
81  if ( ! obj->put(BadModule_,range) )
82  edm::LogError("SiStripBadChannelBuilder")<<"[SiStripBadChannelBuilder::analyze] detid already exists"<<std::endl;
83  }
84  //End now write sistripbadChannel data in DB
86 
87  if( mydbservice.isAvailable() ){
88  if ( mydbservice->isNewTagRequest("SiStripBadStripRcd") ){
89  mydbservice->createNewIOV<SiStripBadStrip>(obj,mydbservice->beginOfTime(),mydbservice->endOfTime(),"SiStripBadStripRcd");
90  } else {
91  //mydbservice->createNewIOV<SiStripBadStrip>(obj,mydbservice->currentTime(),"SiStripBadStripRcd");
92  mydbservice->appendSinceTime<SiStripBadStrip>(obj,mydbservice->currentTime(),"SiStripBadStripRcd");
93  }
94  }else{
95  edm::LogError("SiStripBadStripBuilder")<<"Service is unavailable"<<std::endl;
96  }
97 
98 }
99 
100 
T getUntrackedParameter(std::string const &, T const &) const
SiStripBadChannelBuilder(const edm::ParameterSet &)
void appendSinceTime(T *payloadObj, cond::Time_t sinceTime, const std::string &recordName, bool withlogging=false)
const std::vector< uint32_t > & getAllDetIds() const
bool isNewTagRequest(const std::string &recordName)
bool isAvailable() const
Definition: Service.h:47
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
void createNewIOV(T *firstPayloadObj, cond::Time_t firstSinceTime, cond::Time_t firstTillTime, const std::string &recordName, bool withlogging=false)
std::pair< ContainerIterator, ContainerIterator > Range
std::string fullPath() const
Definition: FileInPath.cc:170
bool put(const uint32_t &detID, const InputVector &vect)
void algoAnalyze(const edm::Event &event, const edm::EventSetup &iSetup)
std::vector< edm::ParameterSet > Parameters
unsigned int encode(const unsigned short &first, const unsigned short &NconsecutiveBadStrips, const unsigned short &flag=0)