13 |
|
typedef L1Obj::TYPE TYPE; |
14 |
|
void set(const std::vector<L1Obj> & obj) { theL1Obj = obj; } |
15 |
|
void set(const std::vector<bool> & comp) { theL1Matching = comp; } |
16 |
+ |
void set(const std::vector<double> & dr) { theDeltaR = dr; } |
17 |
|
const std::vector<L1Obj> & getL1Objs() const { return theL1Obj; } |
18 |
|
const std::vector<bool> & getL1ObjsMatching() const { return theL1Matching; } |
19 |
|
|
33 |
|
private: |
34 |
|
std::vector<L1Obj> theL1Obj; |
35 |
|
std::vector<bool> theL1Matching; |
36 |
+ |
std::vector<double> theDeltaR; |
37 |
|
|
38 |
|
public: |
39 |
|
ClassDef(L1ObjColl,1) |