23 |
|
class FillerTracks : public BaseFiller |
24 |
|
{ |
25 |
|
public: |
26 |
< |
FillerTracks(const edm::ParameterSet &cfg, const char *name, |
27 |
< |
bool active=1, const SimParticleMap* sm=0); |
26 |
> |
FillerTracks(const edm::ParameterSet &cfg, const char *name, bool active=1); |
27 |
|
~FillerTracks(); |
28 |
|
|
29 |
< |
void BookDataBlock(TreeWriter &tws); |
30 |
< |
void FillDataBlock(const edm::Event &e, |
32 |
< |
const edm::EventSetup &es); |
33 |
< |
const TrackMap *GetTrackMap() { return trackMap_; } |
34 |
< |
const TrackCol *GetTrackCol() { return tracks_; } |
29 |
> |
void BookDataBlock(TreeWriter &tws); |
30 |
> |
void FillDataBlock(const edm::Event &e, const edm::EventSetup &es); |
31 |
|
|
32 |
|
private: |
33 |
< |
std::string edmName_; |
34 |
< |
std::string mitName_; |
35 |
< |
std::string edmSimAssociationName_; |
36 |
< |
const mithep::SimParticleMap *simMap_; |
37 |
< |
mithep::TrackArr *tracks_; |
38 |
< |
mithep::TrackMap* trackMap_; |
39 |
< |
edm::Handle<reco::TrackCollection> trackProduct_; |
33 |
> |
std::string edmName_; //edm name of tracks collection |
34 |
> |
std::string mitName_; //name of Tracks in OAK |
35 |
> |
std::string edmSimAssociationName_; //edm name of sim association map |
36 |
> |
std::string simMapName_; //name of inported map wrt simparts |
37 |
> |
std::string trackMapName_; //name of export map |
38 |
> |
const mithep::SimParticleMap *simMap_; //map wrt simulated particles |
39 |
> |
mithep::TrackArr *tracks_; //array of Tracks |
40 |
> |
mithep::TrackMap *trackMap_; //map wrt tracks |
41 |
|
}; |
42 |
|
} |
43 |
|
#endif |