CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripHotStripAlgorithmFromClusterOccupancy.cc
Go to the documentation of this file.
6 
7 
8 
9 
11  prob_(1.E-7),
12  MinNumEntries_(0),
13  MinNumEntriesPerStrip_(0),
14  Nevents_(0),
15  occupancy_(0),
16  OutFileName_("Occupancy.root"),
17  tTopo(theTopo),
18  UseInputDB_(iConfig.getUntrackedParameter<bool>("UseInputDB",false))
19  {
21  }
22 
23 
25  LogTrace("SiStripHotStripAlgorithmFromClusterOccupancy")<<"[SiStripHotStripAlgorithmFromClusterOccupancy::~SiStripHotStripAlgorithmFromClusterOccupancy] "<<std::endl;
26 }
27 
29 
30  LogTrace("SiStripHotStripAlgorithmFromClusterOccupancy")<<"[SiStripHotStripAlgorithmFromClusterOccupancy::extractBadStrips] "<<std::endl;
31 
32 
33 
34  if (WriteOutputFile_==true){
35  f = new TFile(OutFileName_.c_str(),"RECREATE");
36  f->cd();
37 
38  striptree = new TTree("stripOccupancy","tree");
39 
40  striptree->Branch("DetRawId", &detrawid, "DetRawId/I");
41  striptree->Branch("SubDetId", &subdetid, "SubDetId/I");
42  striptree->Branch("Layer_Ring", &layer_ring, "Layer_Ring/I");
43  striptree->Branch("Disc", &disc, "Disc/I");
44  striptree->Branch("IsBack", &isback, "IsBack/I");
45  striptree->Branch("IsExternalString", &isexternalstring, "IsExternalString/I");
46  striptree->Branch("IsZMinusSide", &iszminusside, "IsZMinusSide/I");
47  striptree->Branch("RodStringPetal", &rodstringpetal, "RodStringPetal/I");
48  striptree->Branch("IsStereo", &isstereo, "IsStereo/I");
49  striptree->Branch("ModulePosition", &module_position, "ModulePosition/I");
50  striptree->Branch("NumberOfStrips", &number_strips, "NumberOfStrips/I");
51  striptree->Branch("StripNumber", &strip_number, "StripNumber/I");
52  striptree->Branch("APVChannel", &apv_channel, "APVChannel/I");
53  striptree->Branch("StripGlobalPositionX", &global_position_x, "StripGlobalPositionX/F");
54  striptree->Branch("StripGlobalPositionY", &global_position_y, "StripGlobalPositionY/F");
55  striptree->Branch("StripGlobalPositionZ", &global_position_z, "StripGlobalPositionZ/F");
56  striptree->Branch("IsHot", &isHot, "IsHot/I");
57  striptree->Branch("HotStripsPerAPV", &hotStripsPerAPV, "HotStripsPerAPV/I");
58  striptree->Branch("HotStripsPerModule", &hotStripsPerModule,"HotStripsPerModule/I");
59  striptree->Branch("StripOccupancy", &stripOccupancy, "StripOccupancy/D");
60  striptree->Branch("StripHits", &stripHits, "StripHits/I");
61  striptree->Branch("PoissonProb", &poissonProb, "PoissonProb/D");
62  }
63 
64 
65  HistoMap::iterator it=DM.begin();
66  HistoMap::iterator itEnd=DM.end();
67  std::vector<unsigned int> badStripList;
68  uint32_t detid;
69  for (;it!=itEnd;++it){
70  pHisto phisto;
71  detid=it->first;
72 
73  DetId detectorId=DetId(detid);
74  phisto._SubdetId=detectorId.subdetId();
75 
76  if (edm::isDebugEnabled())
77  LogTrace("SiStripHotStrip") << "Analyzing detid " << detid<< std::endl;
78 
79  int numberAPVs = (int)(it->second.get())->GetNbinsX()/128;
80 
81  // Set the values for the tree:
82 
83  detrawid = detid;
84  subdetid = detectorId.subdetId();
85  number_strips = (int)(it->second.get())->GetNbinsX();
86  if (SiStripDetId(detrawid).stereo() !=0 ) isstereo = 1; // It's a stereo module
87  else isstereo = 0; // It's an rphi module
88  switch (detectorId.subdetId())
89  {
92  disc = -1;
93  isback = -1;
95  else isexternalstring = 0;
97  else iszminusside = 0;
100  break;
101 
102  case StripSubdetector::TID :
105  if (tTopo->tidIsBackRing(detrawid)) isback = 1;
106  else isback = 0;
108  else iszminusside = 0;
109  isexternalstring = -1;
110  rodstringpetal = -1;
112  break;
113 
114  case StripSubdetector::TOB :
116  disc = -1;
117  isback = -1;
119  else iszminusside = 0;
120  isexternalstring = -1;
123  break;
124 
125  case StripSubdetector::TEC :
128  if (tTopo->tecIsBackPetal(detrawid)) isback = 1;
129  else isback = 0;
131  else iszminusside = 0;
132  isexternalstring = -1;
135  break;
136 
137  default :
138  std::cout << "### Detector does not belong to TIB, TID, TOB or TEC !? ###" << std::endl;
139  std::cout << "### DetRawId: " << detrawid << " ###" << std::endl;
140  }
141 
142  // End: Set the values for the tree.
143 
144 
145  pQuality=OutSiStripQuality;
146  badStripList.clear();
147 
148  for (int i=0; i<768; i++){
149  ishot[i] = 0;
150  stripoccupancy[i] = 0;
151  striphits[i] = 0;
152  poissonprob[i] = 0;
153  hotstripsperapv[i/128] = 0;
154  }
155 
156  hotstripspermodule = 0;
157 
158  for (int apv=0; apv<numberAPVs; apv++){
159  if(UseInputDB_){
160  if(InSiStripQuality->IsApvBad(detid,apv) ){
161  if(edm::isDebugEnabled())
162  LogTrace("SiStripHotStrip")<<"(Module and Apv number) "<<detid<<" , "<<apv<<" excluded by input ESetup."<<std::endl;
163  continue;//if the apv is already flagged as bad, continue.
164  }
165  else{
166  if(edm::isDebugEnabled())
167  LogTrace("SiStripHotStrip")<<"(Module and Apv number) "<<detid<<" , "<<apv<<" good by input ESetup."<<std::endl;
168  }
169  }
170 
171  phisto._th1f = new TH1F("tmp","tmp",128,0.5,128.5);
172  int NumberEntriesPerAPV=0;
173 
174  for (int strip=0; strip<128; strip++){
175  phisto._th1f->SetBinContent(strip+1,(it->second.get())->GetBinContent((apv*128)+strip+1));
176  NumberEntriesPerAPV += (int)(it->second.get())->GetBinContent((apv*128)+strip+1);
177  }
178 
179  phisto._th1f->SetEntries(NumberEntriesPerAPV);
180  phisto._NEntries=(int)phisto._th1f->GetEntries();
181 
182  LogTrace("SiStripHotStrip") << "Number of clusters in APV " << apv << ": " << NumberEntriesPerAPV << std::endl;
183 
184  iterativeSearch(phisto,badStripList,apv);
185 
186  delete phisto._th1f;
187  }
188 
189  const StripGeomDetUnit* theStripDet = dynamic_cast<const StripGeomDetUnit*>( (TkGeom->idToDet(detectorId)) );
190  const StripTopology* theStripTopol = dynamic_cast<const StripTopology*>( &(theStripDet->specificTopology()) );
191 
192  for (int strip=0; strip<number_strips; strip++)
193  {
194  strip_number = strip+1;
195  apv_channel = (strip%128)+1;
196  isHot = ishot[strip];
198  stripHits = striphits[strip];
199  poissonProb = poissonprob[strip];
200 
202  hotStripsPerAPV = hotstripsperapv[strip/128];
203 
204  LocalPoint pos_strip_local = theStripTopol->localPosition(strip);
205  GlobalPoint pos_strip_global = (TkGeom->idToDet(detectorId))->surface().toGlobal(pos_strip_local);
206 
207  global_position_x = pos_strip_global.x();
208  global_position_y = pos_strip_global.y();
209  global_position_z = pos_strip_global.z();
210 
211  if (WriteOutputFile_==true) striptree->Fill();
212  }
213 
214  if (badStripList.begin()==badStripList.end())
215  continue;
216 
217  OutSiStripQuality->compact(detid,badStripList);
218 
219  SiStripQuality::Range range(badStripList.begin(),badStripList.end());
220  if ( ! OutSiStripQuality->put(detid,range) )
221  edm::LogError("SiStripHotStrip")<<"[SiStripHotStripAlgorithmFromClusterOccupancy::extractBadStrips] detid already exists"<<std::endl;
222  }
223  OutSiStripQuality->fillBadComponents();
224 
225  if (WriteOutputFile_==true){
226  f->cd();
227  striptree->Write();
228  f->Close();
229  }
230 
231  LogTrace("SiStripHotStrip") << ss.str() << std::endl;
232 }
233 
234 
235 void SiStripHotStripAlgorithmFromClusterOccupancy::iterativeSearch(pHisto& histo,std::vector<unsigned int>& vect, int apv){
236  if (!histo._NEntries || histo._NEntries <=MinNumEntries_ || histo._NEntries <= minNevents_)
237  return;
238 
239  size_t startingSize=vect.size();
240  long double diff=1.-prob_;
241 
242  size_t Nbins = histo._th1f->GetNbinsX();
243  size_t ibinStart = 1;
244  size_t ibinStop = Nbins+1;
245  int MaxEntry = (int)histo._th1f->GetMaximum();
246 
247  std::vector<long double> vPoissonProbs(MaxEntry+1,0);
248  long double meanVal=1.*histo._NEntries/(1.*Nbins-histo._NEmptyBins);
249  evaluatePoissonian(vPoissonProbs,meanVal);
250 
251  for (size_t i=ibinStart; i<ibinStop; ++i){
252  unsigned int entries= (unsigned int)histo._th1f->GetBinContent(i);
253 
254  if (ishot[(apv*128)+i-1]==0){
255  stripoccupancy[(apv*128)+i-1] = entries/(double) Nevents_;
256  striphits[(apv*128)+i-1] = entries;
257  poissonprob[(apv*128)+i-1] = 1-vPoissonProbs[entries];
258  }
259 
260  if (entries<=MinNumEntriesPerStrip_ || entries <= minNevents_)
261  continue;
262 
263  if(diff<vPoissonProbs[entries]){
264  ishot[(apv*128)+i-1] = 1;
266  hotstripsperapv[apv]++;
267  histo._th1f->SetBinContent(i,0.);
268  histo._NEntries-=entries;
269  histo._NEmptyBins++;
270  if (edm::isDebugEnabled())
271  LogTrace("SiStripHotStrip")<< " rejecting strip " << (apv*128)+i-1 << " value " << entries << " diff " << diff << " prob " << vPoissonProbs[entries]<< std::endl;
272  vect.push_back(pQuality->encode((apv*128)+i-1,1,0));
273  }
274 
275  }
276  if (edm::isDebugEnabled())
277  LogTrace("SiStripHotStrip") << " [SiStripHotStripAlgorithmFromClusterOccupancy::iterativeSearch] Nbins="<< Nbins << " MaxEntry="<<MaxEntry << " meanVal=" << meanVal << " NEmptyBins="<<histo._NEmptyBins<< " NEntries=" << histo._NEntries << " thEntries " << histo._th1f->GetEntries()<< " startingSize " << startingSize << " vector.size " << vect.size() << std::endl;
278 
279  if (vect.size()!=startingSize)
280  iterativeSearch(histo,vect,apv);
281 }
282 
283 void SiStripHotStripAlgorithmFromClusterOccupancy::evaluatePoissonian(std::vector<long double>& vPoissonProbs, long double& meanVal){
284  for(size_t i=0;i<vPoissonProbs.size();++i){
285  vPoissonProbs[i]= (i==0)?TMath::Poisson(i,meanVal):vPoissonProbs[i-1]+TMath::Poisson(i,meanVal);
286  }
287 }
288 
290  Nevents_=Nevents;
292  if (edm::isDebugEnabled())
293  LogTrace("SiStripHotStrip")<<" [SiStripHotStripAlgorithmFromClusterOccupancy::setNumberOfEvents] minNumber of Events per strip used to consider a strip bad" << minNevents_ << " for occupancy " << occupancy_ << std::endl;
294 }
bool isDebugEnabled()
int i
Definition: DBlmapReader.cc:9
SiStripHotStripAlgorithmFromClusterOccupancy(const edm::ParameterSet &, const TrackerTopology *)
void extractBadStrips(SiStripQuality *, HistoMap &, edm::ESHandle< SiStripQuality > &)
unsigned int tibLayer(const DetId &id) const
unsigned int tibString(const DetId &id) const
unsigned int tidRing(const DetId &id) const
uint32_t stereo() const
Definition: SiStripDetId.h:162
unsigned int tecRing(const DetId &id) const
ring id
T y() const
Definition: PV3DBase.h:63
void evaluatePoissonian(std::vector< long double > &, long double &meanVal)
unsigned int tidWheel(const DetId &id) const
virtual const StripTopology & specificTopology() const
Returns a reference to the strip proxy topology.
bool tecIsZMinusSide(const DetId &id) const
bool tidIsZMinusSide(const DetId &id) const
static const char occupancy_[]
bool tibIsExternalString(const DetId &id) const
bool tibIsZMinusSide(const DetId &id) const
unsigned int tidModule(const DetId &id) const
bool tidIsBackRing(const DetId &id) const
T z() const
Definition: PV3DBase.h:64
bool tobIsZMinusSide(const DetId &id) const
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
virtual const GeomDet * idToDet(DetId) const
#define LogTrace(id)
unsigned int tibModule(const DetId &id) const
unsigned int tecModule(const DetId &id) const
Detector identifier class for the strip tracker.
Definition: SiStripDetId.h:17
bool tecIsBackPetal(const DetId &id) const
Definition: DetId.h:18
void iterativeSearch(pHisto &, std::vector< unsigned int > &, int)
PixelRecoRange< float > Range
unsigned int tobModule(const DetId &id) const
virtual LocalPoint localPosition(float strip) const =0
unsigned int tecPetalNumber(const DetId &id) const
tuple cout
Definition: gather_cfg.py:121
volatile std::atomic< bool > shutdown_flag false
unsigned int tobRod(const DetId &id) const
T x() const
Definition: PV3DBase.h:62
unsigned int tecWheel(const DetId &id) const
unsigned int tobLayer(const DetId &id) const