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
|
#ifndef TimingTask_H
#define TimingTask_H
#include "DQWorkerTask.h"
#include "DataFormats/EcalRecHit/interface/EcalRecHitCollections.h"
namespace ecaldqm {
class TimingTask : public DQWorkerTask {
public:
TimingTask();
~TimingTask() override {}
bool filterRunType(short const*) override;
bool analyze(void const*, Collections) override;
void runOnRecHits(EcalRecHitCollection const&, Collections);
void runOnUncalibRecHits(EcalUncalibratedRecHitCollection const&);
private:
void beginEvent(edm::Event const&, edm::EventSetup const&, bool const&, bool&) override;
void setParams(edm::ParameterSet const&) override;
std::vector<int> bxBinEdges_;
double bxBin_;
float chi2ThresholdEB_;
float chi2ThresholdEE_;
float energyThresholdEB_;
float energyThresholdEE_;
float energyThresholdEEFwd_;
float timingVsBXThreshold_;
float timeErrorThreshold_;
bool splashSwitch_;
MESet* meTimeMapByLS;
};
inline bool TimingTask::analyze(void const* _p, Collections _collection) {
switch (_collection) {
case kEBRecHit:
case kEERecHit:
if (_p)
runOnRecHits(*static_cast<EcalRecHitCollection const*>(_p), _collection);
return true;
break;
case kEBUncalibRecHit:
case kEEUncalibRecHit:
if (_p)
runOnUncalibRecHits(*static_cast<EcalUncalibratedRecHitCollection const*>(_p));
return true;
break;
default:
break;
}
return false;
}
} // namespace ecaldqm
#endif
|