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
|
#include "DataFormats/PatCandidates/interface/TriggerPath.h"
// Constructors and Destructor
// Default constructor
pat::TriggerPath::TriggerPath()
: name_(), index_(), prescale_(), run_(), accept_(), error_(), lastActiveFilterSlot_(), l3Filters_(0) {
modules_.clear();
filterIndices_.clear();
}
// Constructor from path name only
pat::TriggerPath::TriggerPath(const std::string& name)
: name_(name), index_(), prescale_(), run_(), accept_(), error_(), lastActiveFilterSlot_(), l3Filters_(0) {
modules_.clear();
filterIndices_.clear();
}
// Constructor from values
pat::TriggerPath::TriggerPath(const std::string& name,
unsigned index,
double prescale,
bool run,
bool accept,
bool error,
unsigned lastActiveFilterSlot,
unsigned l3Filters)
: name_(name),
index_(index),
prescale_(prescale),
run_(run),
accept_(accept),
error_(error),
lastActiveFilterSlot_(lastActiveFilterSlot),
l3Filters_(l3Filters) {
modules_.clear();
filterIndices_.clear();
}
// Methods
// Get the index of a certain module
int pat::TriggerPath::indexModule(const std::string& name) const {
if (modules_.begin() == modules_.end())
return -1;
return (std::find(modules_.begin(), modules_.end(), name) - modules_.begin());
}
// Get names of all L1 seeds with a certain decision
std::vector<std::string> pat::TriggerPath::l1Seeds(const bool decision) const {
std::vector<std::string> seeds;
for (L1SeedCollection::const_iterator iSeed = l1Seeds().begin(); iSeed != l1Seeds().end(); ++iSeed) {
if (iSeed->first == decision)
seeds.push_back(iSeed->second);
}
return seeds;
}
|