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
|
#include "CalibTracker/SiStripAPVAnalysis/interface/ApvFactoryService.h"
#include "CondFormats/DataRecord/interface/SiStripPedestalsRcd.h"
#include "CondFormats/SiStripObjects/interface/SiStripPedestals.h"
using namespace edm;
using namespace std;
//using namespace sistrip;
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
//
ApvFactoryService::ApvFactoryService(const edm::ParameterSet& pset, edm::ActivityRegistry& activity) : apvFactory_() {
apvFactory_ = new ApvAnalysisFactory(pset);
std::cout << " Print pedalgo inside ApvFactoryService constructor "
<< pset.getParameter<string>("CalculatorAlgorithm") << std::endl;
// activity.watchPostProcessEvent(this, &ApvFactoryService::postProcessEvent);
}
// -----------------------------------------------------------------------------
//
ApvFactoryService::~ApvFactoryService() {}
// -----------------------------------------------------------------------------
void ApvFactoryService::postProcessEvent(const edm::Event& ie, const edm::EventSetup& ies) {
if (gotPed)
return;
/*
std::cout << "ApvFactoryService::post" << std::endl;
edm::ESHandle<SiStripPedestals> ped;
ies.get<SiStripPedestalsRcd>().get(ped);
//apvFactory_->SetPed(ped);
gotPed=true;
std::vector<uint32_t> pdetid;
ped->getDetIds(pdetid);
edm::LogInfo("SiStripO2O") << " Peds Found " << pdetid.size() << " DetIds";
// pedDB_=ped;
for (size_t id=0;id<pdetid.size();id++){
SiStripPedestals::Range range=ped->getRange(pdetid[id]);
// SiStripPedestals::Range range=pedDB_.getRange(pdetid[id]);
int strip=0;
edm::LogInfo("SiStripO2O") << "PED detid " << pdetid[id] << " \t"
<< " strip " << strip << " \t"
<< ped->getPed (strip,range) << " \t"
<< ped->getLowTh (strip,range) << " \t"
<< ped->getHighTh(strip,range) << " \t"
<< std::endl;
}
*/
}
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
//
int ApvFactoryService::getEventInitNumber() { return 0; }
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
//
ApvAnalysisFactory* const ApvFactoryService::getApvFactory() const { return apvFactory_; }
|