28 |
|
void ResolveLinks (const edm::Event &e, const edm::EventSetup &es); |
29 |
|
|
30 |
|
private: |
31 |
+ |
|
32 |
+ |
const mithep::Track *getMitTrack(mitedm::TrackPtr ptr, bool allowmissing) const; |
33 |
+ |
|
34 |
|
std::string edmName_; //edm name of PFCandidates collection |
35 |
|
std::string mitName_; //name of PFCandidate branch in BAMBU |
36 |
|
std::string globalTrackMapName_; //name of imported map wrt global muons |
37 |
|
std::string staTrackMapName_; //name of imported map wrt sta muons |
38 |
|
std::string staVtxTrackMapName_; //name of imported map wrt sta vtx muons |
39 |
< |
std::string trackerTrackMapName_; //name of imported map wrt general tracks |
39 |
> |
std::vector<std::string> trackerTrackMapNames_; //name of imported map wrt general tracks |
40 |
|
std::string gsfTrackMapName_; //name of imported map wrt pf gsf tracks |
41 |
|
std::string muonMapName_; //name of imported map wrt muons |
42 |
|
std::string conversionMapName_; //name of imported map wrt conversions |
43 |
|
std::string pfCandMapName_; //name of exported pf candidate map |
44 |
< |
const mithep::TrackMap *trackerTrackMap_; //map wrt tracker tracks |
44 |
> |
bool allowMissingTrackRef_; //allow missing track reference (needed for tau embedding samples) |
45 |
> |
std::vector<const mithep::TrackMap*> trackerTrackMaps_; //maps wrt tracker tracks |
46 |
|
const mithep::TrackMap *gsfTrackMap_; //map wrt pf gsf tracks |
47 |
|
const mithep::MuonMap *muonMap_; //map wrt muons |
48 |
|
const mithep::ConversionMap *conversionMap_; //map wrt conversions |