00001 #ifndef Z_ANALYSIS_H_ 00002 #define Z_ANALYSIS_H_ 00003 00004 #include "baseAnalysis.h" 00005 00006 // forward declarations 00007 namespace HepMC { 00008 class GenEvent; 00009 } 00010 class TH1D; 00011 00012 /** 00013 @class ZAnalysis.h 00014 @brief Class to analyse events of the type QCD pp->Z->ee, Z->mumu Processes. 00015 Examples to generate these events are given in the specific generator 00016 directory, e.g. examples/pythia6 ; the histogramm output is stored 00017 in the Zanalysis folder of the root file. 00018 00019 @author Cano Ay Dec 2008 */ 00020 00021 class ZAnalysis: public baseAnalysis 00022 { 00023 public: 00024 ZAnalysis(); 00025 virtual ~ZAnalysis(); 00026 00027 virtual int Init(double tr_max_eta, double tr_min_pt); 00028 virtual int Process(HepMC::GenEvent *hepmcevt); 00029 00030 private: 00031 TH1D *m_evtnr; 00032 TH1D *m_charged_particle_multiplicity; 00033 TH1D *m_charged_particle_pt; 00034 TH1D *m_charged_particle_mean_pt; 00035 TH1D *m_charged_particle_temp_pt; 00036 TH1D *m_charged_particle_rms_pt; 00037 TH1D *m_charged_particle_pdgID; 00038 00039 TH1D *m_Z_count; 00040 TH1D *m_Z_pt; 00041 TH1D *m_Z_pt_log; 00042 TH1D *m_Z_pt_high; 00043 TH1D *m_Z_pt_high_log; 00044 TH1D *m_Z_eta; 00045 TH1D *m_Z_phi; 00046 TH1D *m_Z_mass; 00047 TH1D *m_Z_mass_log; 00048 00049 TH1D *m_jet_count; 00050 TH1D *m_jet_pt; 00051 TH1D *m_jet_pt_log; 00052 }; 00053 00054 #endif // Z_ANALYSIS_H_ 00055