8 : printdebug_(iConfig.getUntrackedParameter<uint32_t>(
"printDebug", 3)), thresholdToken_(esConsumes()) {}
14 edm::LogInfo(
"SiStripThresholdReader") <<
"[SiStripThresholdReader::analyze] End Reading SiStripThreshold"
17 std::vector<uint32_t> detid;
19 edm::LogInfo(
"Number of detids ") << detid.size() << std::endl;
21 for (
size_t id = 0;
id < detid.size() &&
id <
printdebug_;
id++) {
25 float old_clusTh = -1, old_lowTh = -1, old_highTh = -1, old_FirstStrip = -1;
26 for (
int it = 0; it < 768; it++) {
30 if (old_clusTh !=
data.getClusth() || old_lowTh !=
data.getLth() || old_highTh !=
data.getHth() ||
31 old_FirstStrip !=
data.getFirstStrip()) {
33 <<
"detid: " << detid[
id] <<
" \t"
34 <<
"strip: " << it <<
" \t" <<
ss.str() <<
"FirstStrip_and_Hth: " <<
data.FirstStrip_and_Hth <<
" \n"
36 old_lowTh =
data.getLth();
37 old_highTh =
data.getHth();
38 old_clusTh =
data.getClusth();
39 old_FirstStrip =
data.getFirstStrip();