43 |
|
#include "DataFormats/TrackReco/interface/Track.h" |
44 |
|
#include "DataFormats/TrackReco/interface/HitPattern.h" |
45 |
|
|
46 |
< |
#include "UserCode/Morgan/interface/TRootEvent.h" |
47 |
< |
#include "UserCode/Morgan/interface/TRootPhoton.h" |
48 |
< |
#include "UserCode/Morgan/interface/TRootTrack.h" |
46 |
> |
#include "../interface/TRootEvent.h" |
47 |
> |
#include "../interface/TRootPhoton.h" |
48 |
> |
#include "../interface/TRootTrack.h" |
49 |
|
|
50 |
|
#include "TClonesArray.h" |
51 |
|
|
54 |
|
|
55 |
|
public: |
56 |
|
PhotonAnalyzer(const edm::ParameterSet& producersNames); |
57 |
< |
PhotonAnalyzer(const edm::ParameterSet& producersNames, int verbosity, bool doPhotonConversion, bool doVertexCorrection); |
57 |
> |
//PhotonAnalyzer(const edm::ParameterSet& producersNames, const edm::ParameterSet& myConfig, int verbosity, bool doPhotonConversion, bool doVertexCorrection); |
58 |
> |
PhotonAnalyzer(const edm::ParameterSet& producersNames, const edm::ParameterSet& myConfig, int verbosity); |
59 |
|
~PhotonAnalyzer(); |
60 |
|
void SetVerbosity(int verbosity) {verbosity_ = verbosity; }; |
61 |
|
void Process(const edm::Event& iEvent, const edm::EventSetup& iSetup, TRootEvent* rootEvent, TClonesArray* rootPhotons, string collectionName, TClonesArray* conversionTracks, ConversionLikelihoodCalculator* convLikelihoodCalculator, EcalClusterLazyTools& lazyTools); |
63 |
|
private: |
64 |
|
int verbosity_; |
65 |
|
int iconvtrack_; |
66 |
+ |
std::string dataType_ ; |
67 |
|
bool doPhotonConversion_; |
68 |
|
bool doVertexCorrection_; |
69 |
|
edm::InputTag photonIDProducer_; |
70 |
< |
|
70 |
> |
bool useMC_; |
71 |
|
}; |
72 |
|
|
73 |
|
#endif |