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
|
//
// NOTE: This file was automatically generated from UTM library via import_utm.pl
// DIRECT EDITS MIGHT BE LOST.
//
/**
* @author Takashi Matsushita
* Created: 12 Mar 2015
*/
#ifndef tmEventSetup_L1TUtmCondition_hh
#define tmEventSetup_L1TUtmCondition_hh
#include "CondFormats/L1TObjects/interface/L1TUtmCut.h"
#include "CondFormats/L1TObjects/interface/L1TUtmObject.h"
#include "CondFormats/Serialization/interface/Serializable.h"
#include "tmEventSetup/esCondition.hh"
#include <string>
#include <vector>
/**
* This class implements data structure for Condition
*/
class L1TUtmCondition {
public:
L1TUtmCondition() : name_(), type_(-9999), objects_(), cuts_(), version(0) {}
L1TUtmCondition(
std::string name, int type, std::vector<L1TUtmObject> objects, std::vector<L1TUtmCut> cuts, unsigned int vers)
: name_(name), type_(type), objects_(objects), cuts_(cuts), version(vers) {}
L1TUtmCondition(const tmeventsetup::esCondition& esCond)
: name_(esCond.getName()), type_(esCond.getType()), version(0) {
objects_.reserve(esCond.getObjects().size());
for (auto it = esCond.getObjects().begin(); it != esCond.getObjects().end(); ++it)
objects_.emplace_back(L1TUtmObject(*it));
cuts_.reserve(esCond.getCuts().size());
for (auto it = esCond.getCuts().begin(); it != esCond.getCuts().end(); ++it)
cuts_.emplace_back(L1TUtmCut(*it));
};
virtual ~L1TUtmCondition() = default;
/** set condition name */
void setName(const std::string& x) { name_ = x; };
/** set condition type */
void setType(const int x) { type_ = x; };
/** get condition name */
const std::string& getName() const { return name_; };
/** get condition type */
const int getType() const { return type_; };
/** get objects associated with the condition */
const std::vector<L1TUtmObject>& getObjects() const { return objects_; };
/** get cuts associated with the condition */
const std::vector<L1TUtmCut>& getCuts() const { return cuts_; };
protected:
std::string name_; /**< name of condition */
int type_; /**< type of condition */
std::vector<L1TUtmObject> objects_; /**< list of objects used in condition */
std::vector<L1TUtmCut> cuts_; /**< list of cuts applied on condition */
unsigned int version;
COND_SERIALIZABLE;
};
#endif // tmEventSetup_L1TUtmCondition_hh
|