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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
|
// -*- C++ -*-
//
// Package: CalibTracker/SiStripLorentzAnglePCLHarvester
// Class: SiStripLorentzAnglePCLHarvester
//
/**\class SiStripLorentzAnglePCLHarvester SiStripLorentzAnglePCLHarvester.cc CalibTracker/SiStripLorentzAngle/plugins/SiStripLorentzAnglePCLHarvester.cc
Description: reads the intermediate ALCAPROMPT DQMIO-like dataset and performs the fitting of the SiStrip Lorentz Angle in the Prompt Calibration Loop
*/
//
// Original Author: mmusich
// Created: Sat, 29 May 2021 14:46:19 GMT
//
//
// system includes
#include <fmt/format.h>
#include <fmt/printf.h>
#include <fstream>
#include <iostream>
#include <numeric>
#include <sstream>
#include <string>
#include <vector>
// user includes
#include "CalibTracker/Records/interface/SiStripDependentRecords.h"
#include "CalibTracker/SiStripCommon/interface/TkDetMap.h"
#include "CalibTracker/SiStripLorentzAngle/interface/SiStripLorentzAngleCalibrationHelpers.h"
#include "CalibTracker/SiStripLorentzAngle/interface/SiStripLorentzAngleCalibrationStruct.h"
#include "CondCore/DBOutputService/interface/PoolDBOutputService.h"
#include "CondFormats/SiStripObjects/interface/SiStripLorentzAngle.h"
#include "DQM/SiStripCommon/interface/TkHistoMap.h"
#include "DQMServices/Core/interface/DQMEDHarvester.h"
#include "DataFormats/TrackerCommon/interface/TrackerTopology.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
#include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
#include "Geometry/TrackerGeometryBuilder/interface/StripGeomDetUnit.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
#include "MagneticField/Engine/interface/MagneticField.h"
#include "MagneticField/Records/interface/IdealMagneticFieldRecord.h"
//------------------------------------------------------------------------------
class SiStripLorentzAnglePCLHarvester : public DQMEDHarvester {
public:
SiStripLorentzAnglePCLHarvester(const edm::ParameterSet&);
~SiStripLorentzAnglePCLHarvester() override = default;
void beginRun(const edm::Run&, const edm::EventSetup&) override;
static void fillDescriptions(edm::ConfigurationDescriptions&);
private:
void dqmEndJob(DQMStore::IBooker&, DQMStore::IGetter&) override;
void endRun(const edm::Run&, const edm::EventSetup&) override;
std::string getStem(const std::string& histoName, bool isFolder);
// es tokens
const edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> geomEsToken_;
const edm::ESGetToken<TrackerTopology, TrackerTopologyRcd> topoEsTokenBR_, topoEsTokenER_;
const edm::ESGetToken<TkDetMap, TrackerTopologyRcd> tkDetMapTokenER_;
const edm::ESGetToken<SiStripLatency, SiStripLatencyRcd> latencyToken_;
const edm::ESGetToken<SiStripLorentzAngle, SiStripLorentzAngleDepRcd> siStripLAEsToken_;
const edm::ESGetToken<MagneticField, IdealMagneticFieldRecord> magneticFieldToken_;
// member data
bool mismatchedBField_;
bool mismatchedLatency_;
const bool debug_;
SiStripLorentzAngleCalibrationHistograms iHists_;
const std::string dqmDir_;
const std::vector<double> fitRange_;
const std::string recordName_;
float theMagField_{0.f};
static constexpr float teslaToInverseGeV_ = 2.99792458e-3f;
std::pair<double, double> theFitRange_{0., 0.};
const SiStripLorentzAngle* currentLorentzAngle_;
std::unique_ptr<TrackerTopology> theTrackerTopology_;
std::unique_ptr<TkDetMap> tkDetMap_;
// ancillary struct to store the input / output LA
struct LATkMap {
LATkMap() : hInputLA(nullptr), hOutputLA(nullptr) {}
LATkMap(std::unique_ptr<TkHistoMap>&& input, std::unique_ptr<TkHistoMap>&& output)
: hInputLA(std::move(input)), hOutputLA(std::move(output)) {}
void fill(uint32_t id, float inputLA, float outputLA) {
hInputLA->fill(id, inputLA);
hOutputLA->fill(id, outputLA);
}
void beautify() {
const auto& allInputMaps = hInputLA->getAllMaps();
// set colz
for (size_t i = 1; i < allInputMaps.size(); i++) {
hInputLA->getMap(i)->setOption("colz");
hOutputLA->getMap(i)->setOption("colz");
}
}
std::unique_ptr<TkHistoMap> hInputLA, hOutputLA;
};
LATkMap h_modulesLA;
};
//------------------------------------------------------------------------------
SiStripLorentzAnglePCLHarvester::SiStripLorentzAnglePCLHarvester(const edm::ParameterSet& iConfig)
: geomEsToken_(esConsumes<edm::Transition::BeginRun>()),
topoEsTokenBR_(esConsumes<edm::Transition::BeginRun>()),
topoEsTokenER_(esConsumes<edm::Transition::EndRun>()),
tkDetMapTokenER_(esConsumes<edm::Transition::EndRun>()),
latencyToken_(esConsumes<edm::Transition::BeginRun>()),
siStripLAEsToken_(esConsumes<edm::Transition::BeginRun>()),
magneticFieldToken_(esConsumes<edm::Transition::BeginRun>()),
mismatchedBField_{false},
mismatchedLatency_{false},
debug_(iConfig.getParameter<bool>("debugMode")),
dqmDir_(iConfig.getParameter<std::string>("dqmDir")),
fitRange_(iConfig.getParameter<std::vector<double>>("fitRange")),
recordName_(iConfig.getParameter<std::string>("record")) {
// initialize the fit range
if (fitRange_.size() == 2) {
theFitRange_.first = fitRange_[0];
theFitRange_.second = fitRange_[1];
} else {
throw cms::Exception("SiStripLorentzAnglePCLHarvester") << "Too many fit range parameters specified";
}
// first ensure DB output service is available
edm::Service<cond::service::PoolDBOutputService> poolDbService;
if (!poolDbService.isAvailable())
throw cms::Exception("SiStripLorentzAnglePCLHarvester") << "PoolDBService required";
}
//------------------------------------------------------------------------------
void SiStripLorentzAnglePCLHarvester::beginRun(const edm::Run& iRun, const edm::EventSetup& iSetup) {
// geometry
const TrackerGeometry* geom = &iSetup.getData(geomEsToken_);
const TrackerTopology* tTopo = &iSetup.getData(topoEsTokenBR_);
const MagneticField* magField = &iSetup.getData(magneticFieldToken_);
currentLorentzAngle_ = &iSetup.getData(siStripLAEsToken_);
// B-field value
// inverseBzAtOriginInGeV() returns the inverse of field z component for this map in GeV
// for the conversion please consult https://github.com/cms-sw/cmssw/blob/master/MagneticField/Engine/src/MagneticField.cc#L17
// theInverseBzAtOriginInGeV = 1.f / (at0z * 2.99792458e-3f);
// ==> at0z = 1.f / (theInverseBzAtOriginInGeV * 2.99792458e-3f)
theMagField_ = 1.f / (magField->inverseBzAtOriginInGeV() * teslaToInverseGeV_);
if (iHists_.bfield_.empty()) {
iHists_.bfield_ = siStripLACalibration::fieldAsString(theMagField_);
} else {
if (iHists_.bfield_ != siStripLACalibration::fieldAsString(theMagField_)) {
mismatchedBField_ = true;
}
}
const SiStripLatency* apvlat = &iSetup.getData(latencyToken_);
if (iHists_.apvmode_.empty()) {
iHists_.apvmode_ = siStripLACalibration::apvModeAsString(apvlat);
} else {
if (iHists_.apvmode_ != siStripLACalibration::apvModeAsString(apvlat)) {
mismatchedLatency_ = true;
}
}
auto dets = geom->detsTIB();
dets.insert(dets.end(), geom->detsTID().begin(), geom->detsTID().end());
dets.insert(dets.end(), geom->detsTOB().begin(), geom->detsTOB().end());
dets.insert(dets.end(), geom->detsTEC().begin(), geom->detsTEC().end());
for (auto det : dets) {
auto detid = det->geographicalId().rawId();
const StripGeomDetUnit* stripDet = dynamic_cast<const StripGeomDetUnit*>(geom->idToDet(det->geographicalId()));
if (stripDet) {
iHists_.la_db_[detid] = currentLorentzAngle_->getLorentzAngle(detid);
iHists_.moduleLocationType_[detid] = siStripLACalibration::moduleLocationType(detid, tTopo);
}
}
}
//------------------------------------------------------------------------------
void SiStripLorentzAnglePCLHarvester::endRun(edm::Run const& run, edm::EventSetup const& isetup) {
if (!theTrackerTopology_) {
theTrackerTopology_ = std::make_unique<TrackerTopology>(isetup.getData(topoEsTokenER_));
}
if (!tkDetMap_) {
tkDetMap_ = std::make_unique<TkDetMap>(isetup.getData(tkDetMapTokenER_));
}
}
//------------------------------------------------------------------------------
void SiStripLorentzAnglePCLHarvester::dqmEndJob(DQMStore::IBooker& iBooker, DQMStore::IGetter& iGetter) {
if (mismatchedBField_) {
throw cms::Exception("SiStripLorentzAnglePCLHarvester") << "Trying to harvest runs with different B-field values!";
}
if (mismatchedLatency_) {
throw cms::Exception("SiStripLorentzAnglePCLHarvester") << "Trying to harvest runs with diffent APV modes!";
}
// go in the right directory
iGetter.cd();
std::string bvalue = (iHists_.bfield_ == "3.8") ? "B-ON" : "B-OFF";
std::string folderToHarvest = fmt::format("{}/{}_{}", dqmDir_, bvalue, iHists_.apvmode_);
edm::LogPrint(moduleDescription().moduleName()) << "Harvesting in " << folderToHarvest;
iGetter.setCurrentFolder(folderToHarvest);
// fill in the module types
iHists_.nlayers_["TIB"] = 4;
iHists_.nlayers_["TOB"] = 6;
iHists_.modtypes_.push_back("s");
iHists_.modtypes_.push_back("a");
std::vector<std::string> MEtoHarvest = {"tanthcosphtrk_nstrip",
"thetatrk_nstrip",
"tanthcosphtrk_var2",
"tanthcosphtrk_var3",
"thcosphtrk_var2",
"thcosphtrk_var3"};
// prepare the histograms to be harvested
for (auto& layers : iHists_.nlayers_) {
std::string subdet = layers.first;
for (int l = 1; l <= layers.second; ++l) {
for (auto& t : iHists_.modtypes_) {
// do not fill stereo where there aren't
if (l > 2 && t == "s")
continue;
std::string locationtype = Form("%s_L%d%s", subdet.c_str(), l, t.c_str());
for (const auto& toHarvest : MEtoHarvest) {
const char* address = Form(
"%s/%s/L%d/%s_%s", folderToHarvest.c_str(), subdet.c_str(), l, locationtype.c_str(), toHarvest.c_str());
LogDebug(moduleDescription().moduleName()) << "harvesting at: " << address << std::endl;
iHists_.h2_[Form("%s_%s", locationtype.c_str(), toHarvest.c_str())] = iGetter.get(address);
if (iHists_.h2_[Form("%s_%s", locationtype.c_str(), toHarvest.c_str())] == nullptr) {
edm::LogError(moduleDescription().moduleName())
<< "could not retrieve: " << Form("%s_%s", locationtype.c_str(), toHarvest.c_str());
}
}
}
}
}
// book the summary output histograms
iBooker.setCurrentFolder(fmt::format("{}Harvesting/LorentzAngleMaps", dqmDir_));
// Define a lambda function to extract the second element and add it to the accumulator
auto sumValues = [](int accumulator, const std::pair<std::string, int>& element) {
return accumulator + element.second;
};
// Use std::accumulate to sum the values
int totalLayers = std::accumulate(iHists_.nlayers_.begin(), iHists_.nlayers_.end(), 0, sumValues);
// Lambda expression to set bin labels for a TH2F histogram
auto setHistoLabels = [](TH2F* histogram, const std::map<std::string, int>& nlayers) {
// Set common options
histogram->SetOption("colz1"); // don't fill empty bins
histogram->SetStats(false);
histogram->GetYaxis()->SetLabelSize(0.05);
histogram->GetXaxis()->SetLabelSize(0.05);
// Set bin labels for the X-axis
histogram->GetXaxis()->SetBinLabel(1, "r-#phi");
histogram->GetXaxis()->SetBinLabel(2, "stereo");
// Set bin labels for the Y-axis
int binCounter = 1;
for (const auto& subdet : {"TIB", "TOB"}) {
for (int layer = 1; layer <= nlayers.at(subdet); ++layer) {
std::string label = Form("%s L%d", subdet, layer);
histogram->GetYaxis()->SetBinLabel(binCounter++, label.c_str());
}
}
histogram->GetXaxis()->LabelsOption("h");
};
std::string d_name = "h2_byLayerSiStripLA";
std::string d_text = "SiStrip tan#theta_{LA}/B;module type (r-#phi/stereo);layer number;tan#theta_{LA}/B [1/T]";
iHists_.h2_byLayerLA_ =
iBooker.book2D(d_name.c_str(), d_text.c_str(), 2, -0.5, 1.5, totalLayers, -0.5, totalLayers - 0.5);
setHistoLabels(iHists_.h2_byLayerLA_->getTH2F(), iHists_.nlayers_);
d_name = "h2_byLayerSiStripLADiff";
d_text = "SiStrip #Delta#mu_{H}/#mu_{H};module type (r-#phi/stereo);ladder number;#Delta#mu_{H}/#mu_{H} [%%]";
iHists_.h2_byLayerDiff_ =
iBooker.book2D(d_name.c_str(), d_text.c_str(), 2, -0.5, 1.5, totalLayers, -0.5, totalLayers - 0.5);
setHistoLabels(iHists_.h2_byLayerDiff_->getTH2F(), iHists_.nlayers_);
// prepare the profiles
for (const auto& ME : iHists_.h2_) {
if (!ME.second)
continue;
// draw colored 2D plots
ME.second->setOption("colz");
TProfile* hp = (TProfile*)ME.second->getTH2F()->ProfileX();
iBooker.setCurrentFolder(folderToHarvest + "/" + getStem(ME.first, /* isFolder = */ true));
iHists_.p_[hp->GetName()] = iBooker.bookProfile(hp->GetName(), hp);
iHists_.p_[hp->GetName()]->setAxisTitle(ME.second->getAxisTitle(2), 2);
delete hp;
}
if (iHists_.p_.empty()) {
edm::LogError(moduleDescription().moduleName()) << "None of the input histograms could be retrieved. Aborting";
return;
}
std::map<std::string, std::pair<double, double>> LAMap_;
// do the fits
for (const auto& prof : iHists_.p_) {
//fit only this type of profile
if ((prof.first).find("thetatrk_nstrip") != std::string::npos) {
// Create the TF1 function
// fitting range (take full axis by default)
double low = prof.second->getAxisMin(1);
double high = prof.second->getAxisMax(1);
if (theFitRange_.first > theFitRange_.second) {
low = theFitRange_.first;
high = theFitRange_.second;
}
TF1* fitFunc = new TF1("fitFunc", siStripLACalibration::fitFunction, low, high, 3);
// Fit the function to the data
prof.second->getTProfile()->Fit(fitFunc, "F"); // "F" option performs a least-squares fit
// Get the fit results
Double_t a_fit = fitFunc->GetParameter(0);
Double_t thetaL_fit = fitFunc->GetParameter(1);
Double_t b_fit = fitFunc->GetParameter(2);
Double_t a_fitError = fitFunc->GetParError(0);
Double_t thetaL_fitError = fitFunc->GetParError(1);
Double_t b_fitError = fitFunc->GetParError(2);
if (debug_) {
edm::LogInfo(moduleDescription().moduleName())
<< prof.first << " fit result: "
<< " a=" << a_fit << " +/ " << a_fitError << " theta_L=" << thetaL_fit << " +/- " << thetaL_fitError
<< " b=" << b_fit << " +/- " << b_fitError;
}
LAMap_[getStem(prof.first, /* isFolder = */ false)] = std::make_pair(thetaL_fit, thetaL_fitError);
}
}
if (debug_) {
for (const auto& element : LAMap_) {
edm::LogInfo(moduleDescription().moduleName())
<< element.first << " thetaLA = " << element.second.first << "+/-" << element.second.second;
}
}
// now prepare the output LA
std::shared_ptr<SiStripLorentzAngle> OutLorentzAngle = std::make_shared<SiStripLorentzAngle>();
bool isPayloadChanged{false};
std::vector<std::pair<int, int>> treatedIndices;
for (const auto& loc : iHists_.moduleLocationType_) {
if (debug_) {
edm::LogInfo(moduleDescription().moduleName()) << "modId: " << loc.first << " " << loc.second;
}
if (!(loc.second).empty() && theMagField_ != 0.f) {
OutLorentzAngle->putLorentzAngle(loc.first, std::abs(LAMap_[loc.second].first / theMagField_));
} else {
OutLorentzAngle->putLorentzAngle(loc.first, iHists_.la_db_[loc.first]);
}
// if the location is not assigned (e.g. TID or TEC) continue
if ((loc.second).empty()) {
continue;
}
const auto& index2D = siStripLACalibration::locationTypeIndex(loc.second);
LogDebug("SiStripLorentzAnglePCLHarvester")
<< loc.first << " : " << loc.second << " index: " << index2D.first << "-" << index2D.second << std::endl;
// check if the location exists, otherwise throw!
if (index2D != std::make_pair(-1, -1)) {
// Check if index2D is in treatedIndices
// Do not fill the control plots more than necessary (i.e. 1 entry per "partition")
auto it = std::find(treatedIndices.begin(), treatedIndices.end(), index2D);
if (it == treatedIndices.end()) {
// control plots
LogTrace("SiStripLorentzAnglePCLHarvester") << "accepted " << loc.first << " : " << loc.second << " bin ("
<< index2D.first << "," << index2D.second << ")";
const auto& outputLA = OutLorentzAngle->getLorentzAngle(loc.first);
const auto& inputLA = currentLorentzAngle_->getLorentzAngle(loc.first);
LogTrace("SiStripLorentzAnglePCLHarvester") << "inputLA: " << inputLA << " outputLA: " << outputLA;
iHists_.h2_byLayerLA_->setBinContent(index2D.first, index2D.second, outputLA);
float deltaMuHoverMuH = (inputLA != 0.f) ? (inputLA - outputLA) / inputLA : 0.f;
iHists_.h2_byLayerDiff_->setBinContent(index2D.first, index2D.second, deltaMuHoverMuH * 100.f);
treatedIndices.emplace_back(index2D);
// Check if the delta is different from zero
// and if the output LA is not zero (during B=0T running)
// If none of the locations has a non-zero diff
// will not write out the payload.
if (deltaMuHoverMuH != 0.f && outputLA != 0.f) {
isPayloadChanged = true;
LogDebug("SiStripLorentzAnglePCLHarvester")
<< "accepted " << loc.first << " : " << loc.second << " bin (" << index2D.first << "," << index2D.second
<< ") " << deltaMuHoverMuH;
} else {
edm::LogWarning("SiStripLorentzAnglePCLHarvester")
<< "Discarded " << loc.first << " : " << loc.second << " bin (" << index2D.first << "," << index2D.second
<< ") | delta muH/muH = " << deltaMuHoverMuH << " [1/T], output muH = " << outputLA << " [1/T]";
}
} // if the index has not been treated already
} else {
throw cms::Exception("SiStripLorentzAnglePCLHarvester")
<< "Trying to fill an inexistent module location from " << loc.second << "!";
} //
} // ends loop on location types
// book the TkDetMaps
const auto tkDetMapFolderIn = (fmt::format("{}Harvesting/TkDetMaps_LAInput", dqmDir_));
const auto tkDetMapFolderOut = (fmt::format("{}Harvesting/TkDetMaps_LAOutput", dqmDir_));
h_modulesLA = LATkMap(
std::make_unique<TkHistoMap>(tkDetMap_.get(), iBooker, tkDetMapFolderIn, "inputLorentzAngle", 0, false, true),
std::make_unique<TkHistoMap>(tkDetMap_.get(), iBooker, tkDetMapFolderOut, "outputLorentzAngle", 0, false, true));
// fill the TkDetMaps
for (const auto& loc : iHists_.moduleLocationType_) {
const auto& outputLA = OutLorentzAngle->getLorentzAngle(loc.first);
const auto& inputLA = currentLorentzAngle_->getLorentzAngle(loc.first);
h_modulesLA.fill(loc.first, inputLA, outputLA);
}
// set colz to the output maps
h_modulesLA.beautify();
if (isPayloadChanged) {
// fill the DB object record
edm::Service<cond::service::PoolDBOutputService> mydbservice;
if (mydbservice.isAvailable()) {
try {
mydbservice->writeOneIOV(*OutLorentzAngle, mydbservice->currentTime(), recordName_);
} catch (const cond::Exception& er) {
edm::LogError("SiStripLorentzAngleDB") << er.what();
} catch (const std::exception& er) {
edm::LogError("SiStripLorentzAngleDB") << "caught std::exception " << er.what();
}
} else {
edm::LogError("SiStripLorentzAngleDB") << "Service is unavailable!";
}
} else {
edm::LogPrint("SiStripLorentzAngleDB")
<< "****** WARNING ******\n* " << __PRETTY_FUNCTION__
<< "\n* There is no new valid measurement to append!\n* Will NOT update the DB!\n*********************";
}
}
//------------------------------------------------------------------------------
std::string SiStripLorentzAnglePCLHarvester::getStem(const std::string& histoName, bool isFolder) {
std::vector<std::string> tokens;
std::string output{};
// Create a string stream from the input string
std::istringstream iss(histoName);
std::string token;
while (std::getline(iss, token, '_')) {
// Add each token to the vector
tokens.push_back(token);
}
if (isFolder) {
output = tokens[0] + "/" + tokens[1];
output.pop_back();
} else {
output = tokens[0] + "_" + tokens[1];
}
return output;
}
//------------------------------------------------------------------------------
void SiStripLorentzAnglePCLHarvester::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
desc.setComment("Harvester module of the SiStrip Lorentz Angle PCL monitoring workflow");
desc.add<bool>("debugMode", false)->setComment("determines if it's in debug mode");
desc.add<std::string>("dqmDir", "AlCaReco/SiStripLorentzAngle")->setComment("the directory of PCL Worker output");
desc.add<std::vector<double>>("fitRange", {0., 0.})->setComment("range of depths to perform the LA fit");
desc.add<std::string>("record", "SiStripLorentzAngleRcd")->setComment("target DB record");
descriptions.addWithDefaultLabel(desc);
}
DEFINE_FWK_MODULE(SiStripLorentzAnglePCLHarvester);
|