CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PedestalsHistosUsingDb.cc
Go to the documentation of this file.
1 
8 #include <iostream>
9 
10 using namespace sistrip;
11 
12 // -----------------------------------------------------------------------------
15  DQMStore* bei,
16  SiStripConfigDb* const db )
17  : CommissioningHistograms( pset.getParameter<edm::ParameterSet>("PedestalsParameters"),
18  bei,
19  sistrip::PEDESTALS ),
21  sistrip::PEDESTALS ),
22  PedestalsHistograms( pset.getParameter<edm::ParameterSet>("PedestalsParameters"),
23  bei )
24 {
26  << "[PedestalsHistosUsingDb::" << __func__ << "]"
27  << " Constructing object...";
28  highThreshold_ = this->pset().getParameter<double>("HighThreshold");
29  lowThreshold_ = this->pset().getParameter<double>("LowThreshold");
31  << "[PedestalsHistosUsingDb::" << __func__ << "]"
32  << " Set FED zero suppression high/low threshold to "
33  << highThreshold_ << "/" << lowThreshold_;
34  disableBadStrips_ = this->pset().getParameter<bool>("DisableBadStrips");
35  keepStripsDisabled_ = this->pset().getParameter<bool>("KeepStripsDisabled");
37  << "[PedestalsHistosUsingDb::" << __func__ << "]"
38  << " Disabling strips: " << disableBadStrips_
39  << " ; keeping previously disabled strips: " << keepStripsDisabled_;
40 }
41 
42 // -----------------------------------------------------------------------------
46  << "[PedestalsHistosUsingDb::" << __func__ << "]"
47  << " Destructing object...";
48 }
49 
50 // -----------------------------------------------------------------------------
54  << "[PedestalsHistosUsingDb::" << __func__ << "]";
55 
56  if ( !db() ) {
58  << "[PedestalsHistosUsingDb::" << __func__ << "]"
59  << " NULL pointer to SiStripConfigDb interface!"
60  << " Aborting upload...";
61  return;
62  }
63 
64  // Update FED descriptions with new peds/noise values
66  update( feds );
67  if ( doUploadConf() ) {
69  << "[PedestalsHistosUsingDb::" << __func__ << "]"
70  << " Uploading pedestals/noise to DB...";
73  << "[PedestalsHistosUsingDb::" << __func__ << "]"
74  << " Completed database upload of " << feds.size()
75  << " FED descriptions!";
76  } else {
78  << "[PedestalsHistosUsingDb::" << __func__ << "]"
79  << " TEST! No pedestals/noise values will be uploaded to DB...";
80  }
81 
82 }
83 
84 // -----------------------------------------------------------------------------
87 
88  // Iterate through feds and update fed descriptions
89  uint16_t updated = 0;
90  SiStripConfigDb::FedDescriptionsV::const_iterator ifed;
91  for ( ifed = feds.begin(); ifed != feds.end(); ifed++ ) {
92 
93  for ( uint16_t ichan = 0; ichan < sistrip::FEDCH_PER_FED; ichan++ ) {
94 
95  // Build FED and FEC keys
96  const FedChannelConnection& conn = cabling()->fedConnection( (*ifed)->getFedId(), ichan );
97  if ( conn.fecCrate() == sistrip::invalid_ ||
98  conn.fecSlot() == sistrip::invalid_ ||
99  conn.fecRing() == sistrip::invalid_ ||
100  conn.ccuAddr() == sistrip::invalid_ ||
101  conn.ccuChan() == sistrip::invalid_ ||
102  conn.lldChannel() == sistrip::invalid_ ) { continue; }
103  SiStripFedKey fed_key( conn.fedId(),
104  SiStripFedKey::feUnit( conn.fedCh() ),
105  SiStripFedKey::feChan( conn.fedCh() ) );
106  SiStripFecKey fec_key( conn.fecCrate(),
107  conn.fecSlot(),
108  conn.fecRing(),
109  conn.ccuAddr(),
110  conn.ccuChan(),
111  conn.lldChannel() );
112 
113  // Locate appropriate analysis object
114  Analyses::const_iterator iter = data().find( fec_key.key() );
115  if ( iter != data().end() ) {
116 
117  PedestalsAnalysis* anal = dynamic_cast<PedestalsAnalysis*>( iter->second );
118  if ( !anal ) {
120  << "[PedestalsHistosUsingDb::" << __func__ << "]"
121  << " NULL pointer to analysis object!";
122  continue;
123  }
124 
125  // Determine the pedestal shift to apply
126  uint32_t pedshift = 127;
127  for ( uint16_t iapv = 0; iapv < sistrip::APVS_PER_FEDCH; iapv++ ) {
128  uint32_t pedmin = (uint32_t) anal->pedsMin()[iapv];
129  pedshift = pedmin < pedshift ? pedmin : pedshift;
130  }
131 
132  // Iterate through APVs and strips
133  for ( uint16_t iapv = 0; iapv < sistrip::APVS_PER_FEDCH; iapv++ ) {
134  for ( uint16_t istr = 0; istr < anal->peds()[iapv].size(); istr++ ) {
135 
136  // get the information on the strip as it was on the db
137  Fed9U::Fed9UAddress addr( ichan, iapv, istr );
138  Fed9U::Fed9UStripDescription temp = (*ifed)->getFedStrips().getStrip( addr );
139 
140  // determine whether we need to disable the strip
141  bool disableStrip = false;
142  if ( keepStripsDisabled_ ) {
143  disableStrip = temp.getDisable();
144  } else if (disableBadStrips_) {
145  PedestalsAnalysis::VInt dead = anal->dead()[iapv];
146  if ( find( dead.begin(), dead.end(), istr ) != dead.end() ) disableStrip = true;
147  PedestalsAnalysis::VInt noisy = anal->noisy()[iapv];
148  if ( find( noisy.begin(), noisy.end(), istr ) != noisy.end() ) disableStrip = true;
149  }
150 
151  Fed9U::Fed9UStripDescription data( static_cast<uint32_t>( anal->peds()[iapv][istr]-pedshift ),
154  anal->noise()[iapv][istr],
155  disableStrip );
156 
157  std::stringstream ss;
158  if ( data.getDisable() && edm::isDebugEnabled() ) {
159  ss << "[PedestalsHistosUsingDb::" << __func__ << "]"
160  << " Disabling strip in Fed9UStripDescription object..." << std::endl
161  << " for FED id/channel and APV/strip : "
162  << fed_key.fedId() << "/"
163  << fed_key.fedChannel() << " "
164  << iapv << "/"
165  << istr << std::endl
166  << " and crate/FEC/ring/CCU/module : "
167  << fec_key.fecCrate() << "/"
168  << fec_key.fecSlot() << "/"
169  << fec_key.fecRing() << "/"
170  << fec_key.ccuAddr() << "/"
171  << fec_key.ccuChan() << std::endl
172  << " from ped/noise/high/low/disable : "
173  << static_cast<uint16_t>( temp.getPedestal() ) << "/"
174  << static_cast<uint16_t>( temp.getHighThreshold() ) << "/"
175  << static_cast<uint16_t>( temp.getLowThreshold() ) << "/"
176  << static_cast<uint16_t>( temp.getNoise() ) << "/"
177  << static_cast<uint16_t>( temp.getDisable() ) << std::endl;
178  }
179  (*ifed)->getFedStrips().setStrip( addr, data );
180  if ( data.getDisable() && edm::isDebugEnabled() ) {
181  ss << " to ped/noise/high/low/disable : "
182  << static_cast<uint16_t>( data.getPedestal() ) << "/"
183  << static_cast<uint16_t>( data.getHighThreshold() ) << "/"
184  << static_cast<uint16_t>( data.getLowThreshold() ) << "/"
185  << static_cast<uint16_t>( data.getNoise() ) << "/"
186  << static_cast<uint16_t>( data.getDisable() ) << std::endl;
187  LogTrace(mlDqmClient_) << ss.str();
188  }
189 
190  } // end loop on strips
191  } // end loop on apvs
192  updated++;
193 
194  } else {
195  if ( deviceIsPresent(fec_key) ) {
197  << "[PedestalsHistosUsingDb::" << __func__ << "]"
198  << " Unable to find pedestals/noise for FedKey/Id/Ch: "
199  << hex << setw(8) << setfill('0') << fed_key.key() << dec << "/"
200  << (*ifed)->getFedId() << "/"
201  << ichan
202  << " and device with FEC/slot/ring/CCU/LLD "
203  << fec_key.fecCrate() << "/"
204  << fec_key.fecSlot() << "/"
205  << fec_key.fecRing() << "/"
206  << fec_key.ccuAddr() << "/"
207  << fec_key.ccuChan() << "/"
208  << fec_key.channel();
209  }
210  }
211  }
212  }
213 
215  << "[PedestalsHistosUsingDb::" << __func__ << "]"
216  << " Updated FED pedestals/noise for "
217  << updated << " channels";
218 
219 }
220 
221 // -----------------------------------------------------------------------------
224  Analysis analysis ) {
225 
226  PedestalsAnalysis* anal = dynamic_cast<PedestalsAnalysis*>( analysis->second );
227  if ( !anal ) { return; }
228 
229  SiStripFecKey fec_key( anal->fecKey() );
230  SiStripFedKey fed_key( anal->fedKey() );
231 
232  for ( uint16_t iapv = 0; iapv < 2; ++iapv ) {
233 
234  // Create description
235  PedestalsAnalysisDescription* tmp;
236  tmp = new PedestalsAnalysisDescription(
237  anal->dead()[iapv],
238  anal->noisy()[iapv],
239  anal->pedsMean()[iapv],
240  anal->pedsSpread()[iapv],
241  anal->noiseMean()[iapv],
242  anal->noiseSpread()[iapv],
243  anal->rawMean()[iapv],
244  anal->rawSpread()[iapv],
245  anal->pedsMax()[iapv],
246  anal->pedsMin()[iapv],
247  anal->noiseMax()[iapv],
248  anal->noiseMin()[iapv],
249  anal->rawMax()[iapv],
250  anal->rawMin()[iapv],
251  fec_key.fecCrate(),
252  fec_key.fecSlot(),
253  fec_key.fecRing(),
254  fec_key.ccuAddr(),
255  fec_key.ccuChan(),
256  SiStripFecKey::i2cAddr( fec_key.lldChan(), !iapv ),
257  db()->dbParams().partitions().begin()->second.partitionName(),
258  db()->dbParams().partitions().begin()->second.runNumber(),
259  anal->isValid(),
260  "",
261  fed_key.fedId(),
262  fed_key.feUnit(),
263  fed_key.feChan(),
264  fed_key.fedApv()
265  );
266 
267  // Add comments
268  typedef std::vector<std::string> Strings;
269  Strings errors = anal->getErrorCodes();
270  Strings::const_iterator istr = errors.begin();
271  Strings::const_iterator jstr = errors.end();
272  for ( ; istr != jstr; ++istr ) { tmp->addComments( *istr ); }
273 
274  // Store description
275  desc.push_back( tmp );
276 
277  }
278 
279 }
280 
const uint16_t & fecSlot() const
T getParameter(std::string const &) const
bool isDebugEnabled()
const VFloat & rawMax() const
void update(SiStripConfigDb::FedDescriptionsRange)
const VFloat & pedsMean() const
const uint16_t & fecCrate() const
const uint32_t & fedKey() const
PedestalsHistosUsingDb(const edm::ParameterSet &pset, DQMStore *, SiStripConfigDb *const )
const VVInt & noisy() const
const VVFloat & peds() const
FedChannelConnection fedConnection(uint16_t fed_id, uint16_t fed_ch) const
A container class for generic run and event-related info, information required by the commissioning a...
Definition: SiStripFedKey.h:56
const uint16_t & fedCh() const
const edm::ParameterSet & pset() const
bool deviceIsPresent(const SiStripFecKey &)
FedDescriptionsRange getFedDescriptions(std::string partition="")
std::vector< std::string > Strings
Definition: MsgTools.h:18
tuple db
Definition: EcalCondDB.py:151
FedDescriptions::range FedDescriptionsRange
static const char mlDqmClient_[]
bool isValid() const
uint16_t lldChannel() const
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
const uint16_t & i2cAddr() const
const uint16_t & fedId() const
const uint32_t & key() const
Definition: SiStripKey.h:125
Utility class that identifies a position within the strip tracker control structure, down to the level of an APV25.
Definition: SiStripFecKey.h:45
const VFloat & noiseMean() const
const_iterator_range partitions() const
const uint16_t & fecRing() const
const VFloat & pedsMin() const
Class containning control, module, detector and connection information, at the level of a FED channel...
const VVFloat & noise() const
An interface class to the DeviceFactory.
const uint16_t & ccuChan() const
Histogram-based analysis for pedestal run.
const uint32_t & fecKey() const
const VVInt & dead() const
uint16_t fedChannel() const
const VFloat & rawMin() const
const uint16_t & ccuAddr() const
const VFloat & rawSpread() const
#define LogTrace(id)
std::vector< uint16_t > VInt
const VFloat & rawMean() const
const uint16_t & feUnit() const
const SiStripDbParams & dbParams() const
void uploadFedDescriptions(std::string partition="")
static const uint16_t invalid_
Definition: Constants.h:16
const VFloat & pedsSpread() const
const VFloat & pedsMax() const
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
static const uint16_t FEDCH_PER_FED
std::vector< AnalysisDescription * > AnalysisDescriptionsV
const uint16_t & feChan() const
const uint16_t & fedId() const
const VFloat & noiseSpread() const
SiStripConfigDb *const db() const
const VFloat & noiseMax() const
void create(SiStripConfigDb::AnalysisDescriptionsV &, Analysis)
SiStripFedCabling *const cabling() const
const VString & getErrorCodes() const
static const uint16_t APVS_PER_FEDCH
tuple conn
Definition: results_mgr.py:53
const VFloat & noiseMin() const