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