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