CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PedsOnlyHistosUsingDb.cc
Go to the documentation of this file.
1 // Last commit: $Id: PedsOnlyHistosUsingDb.cc,v 1.8 2012/08/09 17:19:21 eulisse Exp $
2 
9 #include <iostream>
10 
11 using namespace sistrip;
12 
13 // -----------------------------------------------------------------------------
16  DQMStore* bei,
17  SiStripConfigDb* const db )
18  : CommissioningHistograms( pset.getParameter<edm::ParameterSet>("PedsOnlyParameters"),
19  bei,
20  sistrip::PEDS_ONLY ),
22  sistrip::PEDS_ONLY ),
23  PedsOnlyHistograms( pset.getParameter<edm::ParameterSet>("PedsOnlyParameters"),
24  bei )
25 {
27  << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
28  << " Constructing object...";
29 }
30 
31 // -----------------------------------------------------------------------------
35  << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
36  << " Destructing object...";
37 }
38 
39 // -----------------------------------------------------------------------------
43  << "[PedsOnlyHistosUsingDb::" << __func__ << "]";
44 
45  if ( !db() ) {
47  << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
48  << " NULL pointer to SiStripConfigDb interface!"
49  << " Aborting upload...";
50  return;
51  }
52 
53  // Update FED descriptions with new peds/noise values
55  update( feds );
56  if ( doUploadConf() ) {
58  << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
59  << " Uploading pedestals/noise to DB...";
62  << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
63  << " Completed database upload of " << feds.size()
64  << " FED descriptions!";
65  } else {
67  << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
68  << " TEST only! No pedestals/noise values will be uploaded to DB...";
69  }
70 
71 }
72 
73 // -----------------------------------------------------------------------------
76 
77  // Iterate through feds and update fed descriptions
78  uint16_t updated = 0;
79  SiStripConfigDb::FedDescriptionsV::const_iterator ifed;
80  for ( ifed = feds.begin(); ifed != feds.end(); ifed++ ) {
81 
82  for ( uint16_t ichan = 0; ichan < sistrip::FEDCH_PER_FED; ichan++ ) {
83 
84  // Build FED and FEC keys
85  const FedChannelConnection& conn = cabling()->connection( (*ifed)->getFedId(), ichan );
86  if ( conn.fecCrate() == sistrip::invalid_ ||
87  conn.fecSlot() == sistrip::invalid_ ||
88  conn.fecRing() == sistrip::invalid_ ||
89  conn.ccuAddr() == sistrip::invalid_ ||
90  conn.ccuChan() == sistrip::invalid_ ||
91  conn.lldChannel() == sistrip::invalid_ ) { continue; }
92  SiStripFedKey fed_key( conn.fedId(),
93  SiStripFedKey::feUnit( conn.fedCh() ),
94  SiStripFedKey::feChan( conn.fedCh() ) );
95  SiStripFecKey fec_key( conn.fecCrate(),
96  conn.fecSlot(),
97  conn.fecRing(),
98  conn.ccuAddr(),
99  conn.ccuChan(),
100  conn.lldChannel() );
101 
102  // Locate appropriate analysis object
103  Analyses::const_iterator iter = data().find( fec_key.key() );
104  if ( iter != data().end() ) {
105 
106  // Check if analysis is valid
107  if ( !iter->second->isValid() ) { continue; }
108 
109  PedsOnlyAnalysis* anal = dynamic_cast<PedsOnlyAnalysis*>( iter->second );
110  if ( !anal ) {
112  << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
113  << " NULL pointer to analysis object!";
114  continue;
115  }
116 
117  // Determine the pedestal shift to apply
118  uint32_t pedshift = 127;
119  for ( uint16_t iapv = 0; iapv < sistrip::APVS_PER_FEDCH; iapv++ ) {
120  uint32_t pedmin = (uint32_t) anal->pedsMin()[iapv];
121  pedshift = pedmin < pedshift ? pedmin : pedshift;
122  }
123 
124  // Iterate through APVs and strips
125  for ( uint16_t iapv = 0; iapv < sistrip::APVS_PER_FEDCH; iapv++ ) {
126  for ( uint16_t istr = 0; istr < anal->peds()[iapv].size(); istr++ ) {
127 
128  constexpr float high_threshold = 5.;
129  constexpr float low_threshold = 2.;
130  constexpr bool disable_strip = false;
131  Fed9U::Fed9UStripDescription data( static_cast<uint32_t>( anal->peds()[iapv][istr]-pedshift ),
132  high_threshold,
133  low_threshold,
134  anal->raw()[iapv][istr], //@@ raw noise!
135  disable_strip );
136  Fed9U::Fed9UAddress addr( ichan, iapv, istr );
137  (*ifed)->getFedStrips().setStrip( addr, data );
138 
139  }
140  }
141  updated++;
142 
143  } else {
145  << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
146  << " Unable to find pedestals/noise for FedKey/Id/Ch: "
147  << hex << setw(8) << setfill('0') << fed_key.key() << dec << "/"
148  << (*ifed)->getFedId() << "/"
149  << ichan
150  << " and device with FEC/slot/ring/CCU/LLD "
151  << fec_key.fecCrate() << "/"
152  << fec_key.fecSlot() << "/"
153  << fec_key.fecRing() << "/"
154  << fec_key.ccuAddr() << "/"
155  << fec_key.ccuChan() << "/"
156  << fec_key.channel();
157  }
158  }
159  }
160 
162  << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
163  << " Updated FED pedestals/noise for "
164  << updated << " channels";
165 
166 }
167 
168 // -----------------------------------------------------------------------------
171  Analysis analysis ) {
172 
173  PedsOnlyAnalysis* anal = dynamic_cast<PedsOnlyAnalysis*>( analysis->second );
174  if ( !anal ) { return; }
175 
176  SiStripFecKey fec_key( anal->fecKey() );
177  SiStripFedKey fed_key( anal->fedKey() );
178 
179  for ( uint16_t iapv = 0; iapv < 2; ++iapv ) {
180 
181  // Create description
182  PedestalsAnalysisDescription* tmp;
183  tmp = new PedestalsAnalysisDescription( std::vector<uint16_t>(0,0), //@@
184  std::vector<uint16_t>(0,0), //@@
185  anal->pedsMean()[iapv],
186  anal->pedsSpread()[iapv],
187  1.*sistrip::invalid_, //@@
188  1.*sistrip::invalid_, //@@
189  anal->rawMean()[iapv],
190  anal->rawSpread()[iapv],
191  anal->pedsMax()[iapv],
192  anal->pedsMin()[iapv],
193  1.*sistrip::invalid_, //@@
194  1.*sistrip::invalid_, //@@
195  anal->rawMax()[iapv],
196  anal->rawMin()[iapv],
197  fec_key.fecCrate(),
198  fec_key.fecSlot(),
199  fec_key.fecRing(),
200  fec_key.ccuAddr(),
201  fec_key.ccuChan(),
202  SiStripFecKey::i2cAddr( fec_key.lldChan(), !iapv ),
203  db()->dbParams().partitions().begin()->second.partitionName(),
204  db()->dbParams().partitions().begin()->second.runNumber(),
205  anal->isValid(),
206  "",
207  fed_key.fedId(),
208  fed_key.feUnit(),
209  fed_key.feChan(),
210  fed_key.fedApv() );
211 
212  // Add comments
213  typedef std::vector<std::string> Strings;
214  Strings errors = anal->getErrorCodes();
215  Strings::const_iterator istr = errors.begin();
216  Strings::const_iterator jstr = errors.end();
217  for ( ; istr != jstr; ++istr ) { tmp->addComments( *istr ); }
218 
219  // Store description
220  desc.push_back( tmp );
221 
222  }
223 
224 }
225 
const uint16_t & fecSlot() const
const uint16_t & fecCrate() const
Histogram-based analysis for pedestal run.
const uint32_t & fedKey() const
A container class for generic run and event-related info, information required by the commissioning a...
Definition: SiStripFedKey.h:57
const uint16_t & fedCh() const
bool isValid() const
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_[]
const FedChannelConnection & connection(uint16_t fed_id, uint16_t fed_ch) const
PedsOnlyHistosUsingDb(const edm::ParameterSet &pset, DQMStore *, SiStripConfigDb *const )
uint16_t lldChannel() const
const uint16_t & i2cAddr() const
const uint16_t & fedId() const
const uint32_t & key() const
Definition: SiStripKey.h:126
const VFloat & rawSpread() const
Utility class that identifies a position within the strip tracker control structure, down to the level of an APV25.
Definition: SiStripFecKey.h:46
const_iterator_range partitions() const
const VVFloat & raw() const
const uint16_t & fecRing() const
void update(SiStripConfigDb::FedDescriptionsRange)
virtual void uploadConfigurations()
Class containning control, module, detector and connection information, at the level of a FED channel...
const VFloat & rawMin() const
const VFloat & pedsMin() const
An interface class to the DeviceFactory.
const uint16_t & ccuChan() const
const VFloat & pedsMax() const
const uint32_t & fecKey() const
const uint16_t & ccuAddr() const
#define LogTrace(id)
const VFloat & rawMax() const
const uint16_t & feUnit() const
const SiStripDbParams & dbParams() const
void uploadFedDescriptions(std::string partition="")
static const uint16_t invalid_
Definition: Constants.h:17
const VVFloat & peds() 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 VFloat & pedsSpread() const
const VFloat & pedsMean() const
SiStripConfigDb *const db() const
SiStripFedCabling *const cabling() const
const VString & getErrorCodes() const
static const uint16_t APVS_PER_FEDCH
void create(SiStripConfigDb::AnalysisDescriptionsV &, Analysis)
const VFloat & rawMean() const
tuple conn
Definition: results_mgr.py:53
#define constexpr