9 |
|
//------------------------------------------------------------------------------- |
10 |
|
|
11 |
|
#include "DataFormats/JetReco/interface/CaloJetCollection.h" |
12 |
+ |
#include "DataFormats/JetReco/interface/JetID.h" |
13 |
+ |
//#include "DataFormats/Common/interface/ValueMap.h" |
14 |
|
#include <vector> |
15 |
|
|
16 |
|
namespace L1Analysis |
23 |
|
|
24 |
|
void Reset(); |
25 |
|
void Print(std::ostream &os = std::cout) const; |
26 |
< |
void SetCaloJet(const edm::Handle<reco::CaloJetCollection> caloJets, unsigned maxJet); |
26 |
> |
void SetCaloJet(const edm::Handle<reco::CaloJetCollection> caloJets, edm::Handle<edm::ValueMap<reco::JetID> > jetsID, unsigned maxJet); |
27 |
|
|
28 |
|
unsigned nJets; |
29 |
|
std::vector<double> e; |
44 |
|
std::vector<int> towerSize; |
45 |
|
std::vector<int> n60; |
46 |
|
std::vector<int> n90; |
47 |
+ |
|
48 |
+ |
std::vector<int> n90hits; |
49 |
+ |
std::vector<double> fHPD; |
50 |
+ |
std::vector<double> fRBX; |
51 |
|
|
52 |
|
}; |
53 |
|
} |