CMS 3D CMS Logo

PedsOnlyHistosUsingDb.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,
18  : CommissioningHistograms(pset.getParameter<edm::ParameterSet>("PedsOnlyParameters"), bei, sistrip::PEDS_ONLY),
20  PedsOnlyHistograms(pset.getParameter<edm::ParameterSet>("PedsOnlyParameters"), bei) {
21  LogTrace(mlDqmClient_) << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
22  << " Constructing object...";
23 }
24 
25 // -----------------------------------------------------------------------------
28  LogTrace(mlDqmClient_) << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
29  << " Destructing object...";
30 }
31 
32 // -----------------------------------------------------------------------------
35  LogTrace(mlDqmClient_) << "[PedsOnlyHistosUsingDb::" << __func__ << "]";
36 
37  if (!db()) {
38  edm::LogError(mlDqmClient_) << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
39  << " NULL pointer to SiStripConfigDb interface!"
40  << " Aborting upload...";
41  return;
42  }
43 
44  // Update FED descriptions with new peds/noise values
46  update(feds);
47  if (doUploadConf()) {
48  edm::LogVerbatim(mlDqmClient_) << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
49  << " Uploading pedestals/noise to DB...";
51  edm::LogVerbatim(mlDqmClient_) << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
52  << " Completed database upload of " << feds.size() << " FED descriptions!";
53  } else {
54  edm::LogWarning(mlDqmClient_) << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
55  << " TEST only! No pedestals/noise values will be uploaded to DB...";
56  }
57 }
58 
59 // -----------------------------------------------------------------------------
62  // Iterate through feds and update fed descriptions
63  uint16_t updated = 0;
64  SiStripConfigDb::FedDescriptionsV::const_iterator ifed;
65  for (ifed = feds.begin(); ifed != feds.end(); ifed++) {
66  for (uint16_t ichan = 0; ichan < sistrip::FEDCH_PER_FED; ichan++) {
67  // Build FED and FEC keys
68  const FedChannelConnection& conn = cabling()->fedConnection((*ifed)->getFedId(), ichan);
69  if (conn.fecCrate() == sistrip::invalid_ || conn.fecSlot() == sistrip::invalid_ ||
70  conn.fecRing() == sistrip::invalid_ || conn.ccuAddr() == sistrip::invalid_ ||
71  conn.ccuChan() == sistrip::invalid_ || conn.lldChannel() == sistrip::invalid_) {
72  continue;
73  }
74  SiStripFedKey fed_key(conn.fedId(), SiStripFedKey::feUnit(conn.fedCh()), SiStripFedKey::feChan(conn.fedCh()));
75  SiStripFecKey fec_key(
76  conn.fecCrate(), conn.fecSlot(), conn.fecRing(), conn.ccuAddr(), conn.ccuChan(), conn.lldChannel());
77 
78  // Locate appropriate analysis object
79  Analyses::const_iterator iter = data().find(fec_key.key());
80  if (iter != data().end()) {
81  // Check if analysis is valid
82  if (!iter->second->isValid()) {
83  continue;
84  }
85 
86  PedsOnlyAnalysis* anal = dynamic_cast<PedsOnlyAnalysis*>(iter->second);
87  if (!anal) {
88  edm::LogError(mlDqmClient_) << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
89  << " NULL pointer to analysis object!";
90  continue;
91  }
92 
93  // Determine the pedestal shift to apply
94  uint32_t pedshift = 127;
95  for (uint16_t iapv = 0; iapv < sistrip::APVS_PER_FEDCH; iapv++) {
96  uint32_t pedmin = (uint32_t)anal->pedsMin()[iapv];
97  pedshift = pedmin < pedshift ? pedmin : pedshift;
98  }
99 
100  // Iterate through APVs and strips
101  for (uint16_t iapv = 0; iapv < sistrip::APVS_PER_FEDCH; iapv++) {
102  for (uint16_t istr = 0; istr < anal->peds()[iapv].size(); istr++) {
103  constexpr float high_threshold = 5.;
104  constexpr float low_threshold = 2.;
105  constexpr bool disable_strip = false;
106  Fed9U::Fed9UStripDescription data(static_cast<uint32_t>(anal->peds()[iapv][istr] - pedshift),
107  high_threshold,
108  low_threshold,
109  anal->raw()[iapv][istr], //@@ raw noise!
110  disable_strip);
111  Fed9U::Fed9UAddress addr(ichan, iapv, istr);
112  (*ifed)->getFedStrips().setStrip(addr, data);
113  }
114  }
115  updated++;
116 
117  } else {
118  edm::LogWarning(mlDqmClient_) << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
119  << " Unable to find pedestals/noise for FedKey/Id/Ch: " << hex << setw(8)
120  << setfill('0') << fed_key.key() << dec << "/" << (*ifed)->getFedId() << "/"
121  << ichan << " and device with FEC/slot/ring/CCU/LLD " << fec_key.fecCrate() << "/"
122  << fec_key.fecSlot() << "/" << fec_key.fecRing() << "/" << fec_key.ccuAddr()
123  << "/" << fec_key.ccuChan() << "/" << fec_key.channel();
124  }
125  }
126  }
127 
128  edm::LogVerbatim(mlDqmClient_) << "[PedsOnlyHistosUsingDb::" << __func__ << "]"
129  << " Updated FED pedestals/noise for " << updated << " channels";
130 }
131 
132 // -----------------------------------------------------------------------------
135  PedsOnlyAnalysis* anal = dynamic_cast<PedsOnlyAnalysis*>(analysis->second);
136  if (!anal) {
137  return;
138  }
139 
140  SiStripFecKey fec_key(anal->fecKey());
141  SiStripFedKey fed_key(anal->fedKey());
142 
143  for (uint16_t iapv = 0; iapv < 2; ++iapv) {
144  // Create description
145  PedestalsAnalysisDescription* tmp;
146  tmp = new PedestalsAnalysisDescription(std::vector<uint16_t>(0, 0), //@@
147  std::vector<uint16_t>(0, 0), //@@
148  anal->pedsMean()[iapv],
149  anal->pedsSpread()[iapv],
150  1. * sistrip::invalid_, //@@
151  1. * sistrip::invalid_, //@@
152  anal->rawMean()[iapv],
153  anal->rawSpread()[iapv],
154  anal->pedsMax()[iapv],
155  anal->pedsMin()[iapv],
156  1. * sistrip::invalid_, //@@
157  1. * sistrip::invalid_, //@@
158  anal->rawMax()[iapv],
159  anal->rawMin()[iapv],
160  fec_key.fecCrate(),
161  fec_key.fecSlot(),
162  fec_key.fecRing(),
163  fec_key.ccuAddr(),
164  fec_key.ccuChan(),
165  SiStripFecKey::i2cAddr(fec_key.lldChan(), !iapv),
166  db()->dbParams().partitions().begin()->second.partitionName(),
167  db()->dbParams().partitions().begin()->second.runNumber(),
168  anal->isValid(),
169  "",
170  fed_key.fedId(),
171  fed_key.feUnit(),
172  fed_key.feChan(),
173  fed_key.fedApv());
174 
175  // Add comments
176  typedef std::vector<std::string> Strings;
177  Strings errors = anal->getErrorCodes();
178  Strings::const_iterator istr = errors.begin();
179  Strings::const_iterator jstr = errors.end();
180  for (; istr != jstr; ++istr) {
181  tmp->addComments(*istr);
182  }
183 
184  // Store description
185  desc.push_back(tmp);
186  }
187 }
Log< level::Info, true > LogVerbatim
Histogram-based analysis for pedestal run.
const uint16_t & feChan() const
Analyses & data(bool getMaskedData=false)
const uint16_t & feUnit() const
A container class for generic run and event-related info, information required by the commissioning a...
Definition: SiStripFedKey.h:56
EventSelector::Strings Strings
FedDescriptionsRange getFedDescriptions(std::string partition="")
FedChannelConnection fedConnection(uint16_t fed_id, uint16_t fed_ch) const
FedDescriptions::range FedDescriptionsRange
static const char mlDqmClient_[]
Log< level::Error, false > LogError
void uploadConfigurations() override
const_iterator_range partitions() const
sistrip classes
#define LogTrace(id)
Utility class that identifies a position within the strip tracker control structure, down to the level of an APV25.
Definition: SiStripFecKey.h:45
PedsOnlyHistosUsingDb(const edm::ParameterSet &pset, DQMStore *, SiStripConfigDb *const, edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > tTopoToken)
const uint16_t & i2cAddr() const
void update(SiStripConfigDb::FedDescriptionsRange)
Class containning control, module, detector and connection information, at the level of a FED channel...
SiStripConfigDb *const db() const
An interface class to the DeviceFactory.
const uint32_t & key() const
Definition: SiStripKey.h:120
SiStripFedCabling *const cabling() const
void uploadFedDescriptions(std::string partition="")
static const uint16_t invalid_
Definition: Constants.h:16
HLT enums.
static const uint16_t FEDCH_PER_FED
std::vector< AnalysisDescription * > AnalysisDescriptionsV
conn
Definition: getInfo.py:9
Definition: errors.py:1
const SiStripDbParams & dbParams() const
void create(SiStripConfigDb::AnalysisDescriptionsV &, Analysis) override
Log< level::Warning, false > LogWarning
tmp
align.sh
Definition: createJobs.py:716
static const uint16_t APVS_PER_FEDCH