CMS 3D CMS Logo

NoiseHistosUsingDb.cc
Go to the documentation of this file.
1 
8 #include <iostream>
9 
10 using namespace sistrip;
11 
12 // -----------------------------------------------------------------------------
15  : CommissioningHistograms(pset.getParameter<edm::ParameterSet>("NoiseParameters"), bei, sistrip::NOISE),
17  NoiseHistograms(pset.getParameter<edm::ParameterSet>("NoiseParameters"), bei) {
18  LogTrace(mlDqmClient_) << "[NoiseHistosUsingDb::" << __func__ << "]"
19  << " Constructing object...";
20 }
21 
22 // -----------------------------------------------------------------------------
25  LogTrace(mlDqmClient_) << "[NoiseHistosUsingDb::" << __func__ << "]"
26  << " Destructing object...";
27 }
28 
29 // -----------------------------------------------------------------------------
32  LogTrace(mlDqmClient_) << "[NoiseHistosUsingDb::" << __func__ << "]";
33 
34  if (!db()) {
35  edm::LogError(mlDqmClient_) << "[NoiseHistosUsingDb::" << __func__ << "]"
36  << " NULL pointer to SiStripConfigDb interface!"
37  << " Aborting upload...";
38  return;
39  }
40 
41  // Update FED descriptions with new peds/noise values
43  update(feds);
44  if (doUploadConf()) {
45  edm::LogVerbatim(mlDqmClient_) << "[NoiseHistosUsingDb::" << __func__ << "]"
46  << " Uploading pedestals/noise to DB...";
48  edm::LogVerbatim(mlDqmClient_) << "[NoiseHistosUsingDb::" << __func__ << "]"
49  << " Completed database upload of " << feds.size() << " FED descriptions!";
50  } else {
51  edm::LogWarning(mlDqmClient_) << "[NoiseHistosUsingDb::" << __func__ << "]"
52  << " TEST only! No pedestals/noise values will be uploaded to DB...";
53  }
54 }
55 
56 // -----------------------------------------------------------------------------
59  // Iterate through feds and update fed descriptions
60  uint16_t updated = 0;
61  SiStripConfigDb::FedDescriptionsV::const_iterator ifed;
62  for (ifed = feds.begin(); ifed != feds.end(); ifed++) {
63  for (uint16_t ichan = 0; ichan < sistrip::FEDCH_PER_FED; ichan++) {
64  // Build FED and FEC keys
65  const FedChannelConnection& conn = cabling()->fedConnection((*ifed)->getFedId(), ichan);
66  if (conn.fecCrate() == sistrip::invalid_ || conn.fecSlot() == sistrip::invalid_ ||
67  conn.fecRing() == sistrip::invalid_ || conn.ccuAddr() == sistrip::invalid_ ||
68  conn.ccuChan() == sistrip::invalid_ || conn.lldChannel() == sistrip::invalid_) {
69  continue;
70  }
72  SiStripFecKey fec_key(
73  conn.fecCrate(), conn.fecSlot(), conn.fecRing(), conn.ccuAddr(), conn.ccuChan(), conn.lldChannel());
74 
75  // Locate appropriate analysis object
76  Analyses::const_iterator iter = data().find(fec_key.key());
77  if (iter != data().end()) {
78  // Check if analysis is valid
79  if (!iter->second->isValid()) {
80  continue;
81  }
82 
83  NoiseAnalysis* anal = dynamic_cast<NoiseAnalysis*>(iter->second);
84  if (!anal) {
85  edm::LogError(mlDqmClient_) << "[NoiseHistosUsingDb::" << __func__ << "]"
86  << " NULL pointer to analysis object!";
87  continue;
88  }
89 
90  // Iterate through APVs and strips
91  for (uint16_t iapv = 0; iapv < sistrip::APVS_PER_FEDCH; iapv++) {
92  for (uint16_t istr = 0; istr < anal->peds()[iapv].size(); istr++) {
93  constexpr float high_threshold = 5.;
94  constexpr float low_threshold = 2.;
95  constexpr bool disable_strip = false;
96  Fed9U::Fed9UStripDescription data(static_cast<uint32_t>(anal->peds()[iapv][istr]),
97  high_threshold,
98  low_threshold,
99  anal->noise()[iapv][istr],
100  disable_strip);
101  Fed9U::Fed9UAddress addr(ichan, iapv, istr);
102  (*ifed)->getFedStrips().setStrip(addr, data);
103  }
104  }
105  updated++;
106 
107  } else {
108  edm::LogWarning(mlDqmClient_) << "[NoiseHistosUsingDb::" << __func__ << "]"
109  << " Unable to find pedestals/noise for FedKey/Id/Ch: " << hex << setw(8)
110  << setfill('0') << fed_key.key() << dec << "/" << (*ifed)->getFedId() << "/"
111  << ichan << " and device with FEC/slot/ring/CCU/LLD " << fec_key.fecCrate() << "/"
112  << fec_key.fecSlot() << "/" << fec_key.fecRing() << "/" << fec_key.ccuAddr()
113  << "/" << fec_key.ccuChan() << "/" << fec_key.channel();
114  }
115  }
116  }
117 
118  edm::LogVerbatim(mlDqmClient_) << "[NoiseHistosUsingDb::" << __func__ << "]"
119  << " Updated FED pedestals/noise for " << updated << " channels";
120 }
121 
122 // -----------------------------------------------------------------------------
125  NoiseAnalysis* anal = dynamic_cast<NoiseAnalysis*>(analysis->second);
126  if (!anal) {
127  return;
128  }
129 
130  SiStripFecKey fec_key(anal->fecKey());
131  SiStripFedKey fed_key(anal->fedKey());
132 
133  for (uint16_t iapv = 0; iapv < 2; ++iapv) {
134  // Create description
135  PedestalsAnalysisDescription* tmp;
136  tmp = new PedestalsAnalysisDescription(anal->dead()[iapv],
137  anal->noisy()[iapv],
138  anal->pedsMean()[iapv],
139  anal->pedsSpread()[iapv],
140  anal->noiseMean()[iapv],
141  anal->noiseSpread()[iapv],
142  anal->rawMean()[iapv],
143  anal->rawSpread()[iapv],
144  anal->pedsMax()[iapv],
145  anal->pedsMin()[iapv],
146  anal->noiseMax()[iapv],
147  anal->noiseMin()[iapv],
148  anal->rawMax()[iapv],
149  anal->rawMin()[iapv],
150  fec_key.fecCrate(),
151  fec_key.fecSlot(),
152  fec_key.fecRing(),
153  fec_key.ccuAddr(),
154  fec_key.ccuChan(),
155  SiStripFecKey::i2cAddr(fec_key.lldChan(), !iapv),
156  db()->dbParams().partitions().begin()->second.partitionName(),
157  db()->dbParams().partitions().begin()->second.runNumber(),
158  anal->isValid(),
159  "",
160  fed_key.fedId(),
161  fed_key.feUnit(),
162  fed_key.feChan(),
163  fed_key.fedApv());
164 
165  // Add comments
166  typedef std::vector<std::string> Strings;
167  Strings errors = anal->getErrorCodes();
168  Strings::const_iterator istr = errors.begin();
169  Strings::const_iterator jstr = errors.end();
170  for (; istr != jstr; ++istr) {
171  tmp->addComments(*istr);
172  }
173 
174  // Store description
175  desc.push_back(tmp);
176  }
177 }
const uint16_t & fecSlot() const
~NoiseHistosUsingDb() override
const uint16_t & fecCrate() const
const VVInt & dead() const
const VFloat & noiseMean() const
const uint32_t & fedKey() const
const VFloat & noiseSpread() const
Analyses & data(bool getMaskedData=false)
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 VFloat & pedsMax() const
FedDescriptionsRange getFedDescriptions(std::string partition="")
std::vector< std::string > Strings
Definition: MsgTools.h:18
bool isValid() const override
FedDescriptions::range FedDescriptionsRange
static const char mlDqmClient_[]
const VFloat & rawMin() const
uint16_t lldChannel() const
const VFloat & rawMax() const
const VFloat & pedsMean() const
const uint16_t & i2cAddr() const
const uint16_t & fedId() const
sistrip classes
const uint32_t & key() const
Definition: SiStripKey.h:120
Utility class that identifies a position within the strip tracker control structure, down to the level of an APV25.
Definition: SiStripFecKey.h:45
const_iterator_range partitions() const
const uint16_t & fecRing() 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
NoiseHistosUsingDb(const edm::ParameterSet &pset, DQMStore *, SiStripConfigDb *const)
const VVInt & noisy() const
const uint32_t & fecKey() const
const uint16_t & ccuAddr() const
#define LogTrace(id)
const VFloat & pedsSpread() const
const VFloat & noiseMin() const
const VFloat & noiseMax() const
const VFloat & rawSpread() const
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 VVFloat & peds() const
void create(SiStripConfigDb::AnalysisDescriptionsV &, Analysis) override
HLT enums.
void update(SiStripConfigDb::FedDescriptionsRange)
static const uint16_t FEDCH_PER_FED
std::vector< AnalysisDescription * > AnalysisDescriptionsV
const uint16_t & feChan() const
Histogram-based analysis for pedestal run.
Definition: NoiseAnalysis.h:15
Definition: errors.py:1
SiStripConfigDb *const db() const
void uploadConfigurations() override
tmp
align.sh
Definition: createJobs.py:716
SiStripFedCabling *const cabling() const
const VString & getErrorCodes() const
static const uint16_t APVS_PER_FEDCH
#define constexpr
const VFloat & pedsMin() const