CMS 3D CMS Logo

SiStripApvGainsDQM.cc
Go to the documentation of this file.
3 
5 #include "TCanvas.h"
6 
7 // -----
9  edm::RunNumber_t iRun,
10  edm::ParameterSet const &hPSet,
11  edm::ParameterSet const &fPSet)
12  : SiStripBaseCondObjDQM(eSetup, iRun, hPSet, fPSet) {
13  // Build the Histo_TkMap:
14  if (HistoMaps_On_) {
15  edm::ESHandle<TkDetMap> tkDetMapHandle;
16  eSetup.get<TrackerTopologyRcd>().get(tkDetMapHandle);
17  Tk_HM_ = std::make_unique<TkHistoMap>(tkDetMapHandle.product(), "SiStrip/Histo_Map", "MeanApvGain_TkMap", 0.);
18  }
19 }
20 // -----
21 
22 // -----
24 // -----
25 
26 // -----
28  getConditionObject(eSetup);
30 }
31 // -----
32 
33 // -----
34 void SiStripApvGainsDQM::fillModMEs(const std::vector<uint32_t> &selectedDetIds, const edm::EventSetup &es) {
35  // Retrieve tracker topology from geometry
37  es.get<TrackerTopologyRcd>().get(tTopoHandle);
38  const TrackerTopology *const tTopo = tTopoHandle.product();
39 
40  ModMEs CondObj_ME;
41 
42  for (std::vector<uint32_t>::const_iterator detIter_ = selectedDetIds.begin(); detIter_ != selectedDetIds.end();
43  ++detIter_) {
44  fillMEsForDet(CondObj_ME, *detIter_, tTopo);
45  }
46 }
47 
48 // -----
49 void SiStripApvGainsDQM::fillMEsForDet(const ModMEs &_selModME_, uint32_t selDetId_, const TrackerTopology *tTopo) {
50  ModMEs selModME_ = _selModME_;
51  std::vector<uint32_t> DetIds;
52  gainHandle_->getDetIds(DetIds);
53 
54  SiStripApvGain::Range gainRange = gainHandle_->getRange(selDetId_);
55 
56  int nApv = reader->getNumberOfApvsAndStripLength(selDetId_).first;
57 
58  getModMEs(selModME_, selDetId_, tTopo);
59 
60  for (int iapv = 0; iapv < nApv; ++iapv) {
61  if (CondObj_fillId_ == "onlyProfile" || CondObj_fillId_ == "ProfileAndCumul") {
62  selModME_.ProfileDistr->Fill(iapv + 1, gainHandle_->getApvGain(iapv, gainRange));
63  }
64  if (CondObj_fillId_ == "onlyCumul" || CondObj_fillId_ == "ProfileAndCumul") {
65  selModME_.CumulDistr->Fill(gainHandle_->getApvGain(iapv, gainRange));
66  }
67 
68  // Fill the TkMap
69  if (fPSet_.getParameter<bool>("TkMap_On") || hPSet_.getParameter<bool>("TkMap_On")) {
70  fillTkMap(selDetId_, gainHandle_->getApvGain(iapv, gainRange));
71  }
72  }
73 }
74 
75 // -----
76 void SiStripApvGainsDQM::fillSummaryMEs(const std::vector<uint32_t> &selectedDetIds, const edm::EventSetup &es) {
77  // Retrieve tracker topology from geometry
79  es.get<TrackerTopologyRcd>().get(tTopoHandle);
80  const TrackerTopology *const tTopo = tTopoHandle.product();
81 
82  for (std::vector<uint32_t>::const_iterator detIter_ = selectedDetIds.begin(); detIter_ != selectedDetIds.end();
83  detIter_++) {
84  fillMEsForLayer(/*SummaryMEsMap_,*/ *detIter_, tTopo);
85  }
86 
87  for (std::map<uint32_t, ModMEs>::iterator iter = SummaryMEsMap_.begin(); iter != SummaryMEsMap_.end(); iter++) {
88  ModMEs selME;
89  selME = iter->second;
90 
91  if (hPSet_.getParameter<bool>("FillSummaryProfileAtLayerLevel") &&
92  fPSet_.getParameter<bool>("OutputSummaryProfileAtLayerLevelAsImage")) {
93  TCanvas c1("c1");
94  selME.SummaryOfProfileDistr->getTProfile()->Draw();
95  std::string name(selME.SummaryOfProfileDistr->getTProfile()->GetTitle());
96  name += ".png";
97  c1.Print(name.c_str());
98  }
99  if (hPSet_.getParameter<bool>("FillSummaryAtLayerLevel") &&
100  fPSet_.getParameter<bool>("OutputSummaryAtLayerLevelAsImage")) {
101  TCanvas c1("c1");
102  selME.SummaryDistr->getTH1()->Draw();
103  std::string name(selME.SummaryDistr->getTH1()->GetTitle());
104  name += ".png";
105  c1.Print(name.c_str());
106  }
107  }
108 }
109 
110 // -----
112  /*std::map<uint32_t, ModMEs> selMEsMap_, */ uint32_t selDetId_, const TrackerTopology *tTopo) {
113  int subdetectorId_ = ((selDetId_ >> 25) & 0x7);
114 
115  if (subdetectorId_ < 3 || subdetectorId_ > 6) {
116  edm::LogError("SiStripApvGainsDQM") << "[SiStripApvGainsDQM::fillMEsForLayer] WRONG INPUT : no such "
117  "subdetector type : "
118  << subdetectorId_ << " no folder set!" << std::endl;
119  return;
120  }
121  // ----
122 
123  std::map<uint32_t, ModMEs>::iterator selMEsMapIter_ = SummaryMEsMap_.find(getLayerNameAndId(selDetId_, tTopo).second);
124  ModMEs selME_;
125  if (selMEsMapIter_ != SummaryMEsMap_.end())
126  selME_ = selMEsMapIter_->second;
127  getSummaryMEs(selME_, selDetId_, tTopo);
128 
129  SiStripApvGain::Range gainRange = gainHandle_->getRange(selDetId_);
130  int nApv = reader->getNumberOfApvsAndStripLength(selDetId_).first;
131 
132  float meanApvGain = 0;
133 
135 
136  if (hPSet_.getParameter<bool>("FillSummaryProfileAtLayerLevel")) {
137  // --> profile summary
138  std::string hSummaryOfProfile_description;
139  hSummaryOfProfile_description = hPSet_.getParameter<std::string>("SummaryOfProfile_description");
140 
141  std::string hSummaryOfProfile_name;
142  hSummaryOfProfile_name = hidmanager.createHistoLayer(
143  hSummaryOfProfile_description, "layer", getLayerNameAndId(selDetId_, tTopo).first, "");
144 
145  for (int iapv = 0; iapv < nApv; ++iapv) {
146  meanApvGain = meanApvGain + gainHandle_->getApvGain(iapv, gainRange);
147  selME_.SummaryOfProfileDistr->Fill(iapv + 1, gainHandle_->getApvGain(iapv, gainRange));
148 
149  // Fill the TkMap
150  if (fPSet_.getParameter<bool>("TkMap_On") || hPSet_.getParameter<bool>("TkMap_On")) {
151  fillTkMap(selDetId_, gainHandle_->getApvGain(iapv, gainRange));
152  }
153 
154  } // iapv
155 
156  meanApvGain = meanApvGain / nApv;
157 
158  // Fill the TkHistoMap with meanApvgain:
159  if (HistoMaps_On_)
160  Tk_HM_->setBinContent(selDetId_, meanApvGain);
161 
162  } // if Fill ...
163 
164  if (hPSet_.getParameter<bool>("FillSummaryAtLayerLevel")) {
165  // --> summary
166  std::string hSummary_description;
167  hSummary_description = hPSet_.getParameter<std::string>("Summary_description");
168 
169  std::string hSummary_name;
170  hSummary_name =
171  hidmanager.createHistoLayer(hSummary_description, "layer", getLayerNameAndId(selDetId_, tTopo).first, "");
172 
173  // get detIds belonging to same layer to fill X-axis with detId-number
174 
175  std::vector<uint32_t> sameLayerDetIds_;
176 
177  sameLayerDetIds_.clear();
178 
179  sameLayerDetIds_ = GetSameLayerDetId(activeDetIds, selDetId_, tTopo);
180 
181  unsigned int iBin = 0;
182  for (unsigned int i = 0; i < sameLayerDetIds_.size(); i++) {
183  if (sameLayerDetIds_[i] == selDetId_) {
184  iBin = i + 1;
185  }
186  }
187 
188  for (int iapv = 0; iapv < nApv; ++iapv) {
189  meanApvGain = meanApvGain + gainHandle_->getApvGain(iapv, gainRange);
190  selME_.SummaryDistr->Fill(iBin, gainHandle_->getApvGain(iapv, gainRange));
191  } // iapv
192  meanApvGain = meanApvGain / nApv;
193 
194  // Fill the TkHistoMap with meanApvgain:
195  // if(HistoMaps_On_ ) Tk_HM_->setBinContent(selDetId_, meanApvGain);
196 
197  } // if Fill ...
198 }
199 // -----
TProfile * getTProfile() const
T getParameter(std::string const &) const
void getConditionObject(const edm::EventSetup &eSetup) override
static float getApvGain(uint16_t apv, const Range &range)
const std::pair< unsigned short, double > getNumberOfApvsAndStripLength(uint32_t detId) const
TH1 * getTH1() const
~SiStripApvGainsDQM() override
void getSummaryMEs(ModMEs &CondObj_ME, const uint32_t &detId_, const TrackerTopology *tTopo)
void fillMEsForLayer(uint32_t selDetId_, const TrackerTopology *tTopo) override
void getDetIds(std::vector< uint32_t > &DetIds_) const
void fillTkMap(const uint32_t &detid, const float &value)
void Fill(long long x)
void fillSummaryMEs(const std::vector< uint32_t > &selectedDetIds, const edm::EventSetup &es) override
void fillMEsForDet(const ModMEs &selModME_, uint32_t selDetId_, const TrackerTopology *tTopo) override
U second(std::pair< T, U > const &p)
void getActiveDetIds(const edm::EventSetup &eSetup) override
std::map< uint32_t, ModMEs > SummaryMEsMap_
SiStripDetInfoFileReader * reader
std::vector< uint32_t > GetSameLayerDetId(const std::vector< uint32_t > &activeDetIds, uint32_t selDetId, const TrackerTopology *tTopo)
std::pair< ContainerIterator, ContainerIterator > Range
SiStripApvGainsDQM(const edm::EventSetup &eSetup, edm::RunNumber_t iRun, edm::ParameterSet const &hPSet, edm::ParameterSet const &fPSet)
edm::ESHandle< SiStripApvGain > gainHandle_
void getModMEs(ModMEs &CondObj_ME, const uint32_t &detId_, const TrackerTopology *tTopo)
std::pair< std::string, uint32_t > getLayerNameAndId(const uint32_t &detId_, const TrackerTopology *tTopo)
T get() const
Definition: EventSetup.h:71
std::vector< uint32_t > activeDetIds
unsigned int RunNumber_t
void fillModMEs(const std::vector< uint32_t > &selectedDetIds, const edm::EventSetup &es) override
const Range getRange(const uint32_t detID) const
std::string createHistoLayer(std::string description, std::string id_type, std::string path, std::string flag)
T const * product() const
Definition: ESHandle.h:86
std::unique_ptr< TkHistoMap > Tk_HM_