3 |
|
// |
4 |
|
// FillerConversions |
5 |
|
// |
6 |
< |
// Todo |
6 |
> |
// Implementation of a filler creating mithep::Conversion objects from the reconstructed |
7 |
> |
// conversion electrons. |
8 |
|
// |
9 |
|
// Authors: J.Bendavid |
10 |
|
//-------------------------------------------------------------------------------------------------- |
24 |
|
class FillerConversions : public BaseFiller |
25 |
|
{ |
26 |
|
public: |
27 |
< |
FillerConversions(const edm::ParameterSet &cfg, bool active=1, |
27 |
< |
const ConversionElectronMap *conversionElectronMap=0); |
27 |
> |
FillerConversions(const edm::ParameterSet &cfg, bool active=1); |
28 |
|
~FillerConversions(); |
29 |
|
|
30 |
|
void BookDataBlock(TreeWriter &tws); |
31 |
|
void FillDataBlock(const edm::Event &e, const edm::EventSetup &es); |
32 |
– |
const ConversionMap *GetConversionMap() const { return conversionMap_; } |
32 |
|
|
33 |
|
private: |
34 |
< |
std::string edmName_; |
35 |
< |
std::string mitName_; |
36 |
< |
const mithep::ConversionElectronMap *conversionElectronMap_; |
37 |
< |
mithep::ConversionArr *conversions_; |
38 |
< |
mithep::ConversionMap *conversionMap_; |
34 |
> |
std::string edmName_; //name of edm conversions |
35 |
> |
std::string mitName_; //name of Conversions in OAK |
36 |
> |
std::string convElectronMapName_; //name of imported electrons map |
37 |
> |
std::string conversionMapName_; //name of exported conv map |
38 |
> |
const mithep::ConversionElectronMap *convElectronMap_; //imported map wrt conv electrons |
39 |
> |
mithep::ConversionArr *conversions_; //array of Conversions |
40 |
> |
mithep::ConversionMap *conversionMap_; //exported map wrt Conversions |
41 |
|
}; |
42 |
|
} |
43 |
|
#endif |