TauAnalysis.h

Go to the documentation of this file.
00001 #ifndef TauAnalysis_H
00002 #define TauAnalysis_H
00003 
00004 #include "baseAnalysis.h"
00005 
00006 // forward declarations
00007 namespace HepMC {
00008   class GenEvent;
00009 }
00010 class TH1D;
00011 
00012 /**
00013  @class TauAnalysis.h                                                  
00014  @brief This class is used for hepmc based validation of pp->Z->tautau events
00015                                                                        
00016  Init() is used to initialise histograms                               
00017  Process() is used to process the events and do the analysis and       
00018  The ouput (histograms) will be saved in a root file in the Tau folder
00019                                                                        
00020  @author Sebastian Johnert, October 2008  */
00021 
00022 class TauAnalysis: public baseAnalysis
00023 {
00024  public:
00025 
00026   TauAnalysis();
00027   virtual ~TauAnalysis();
00028   
00029   virtual int Init(double tr_max_eta, double tr_min_pt);
00030   virtual int Process(HepMC::GenEvent* hepmcevt);
00031   
00032  private:
00033 
00034   TH1D *m_evtnr;
00035   TH1D *m_taupt;
00036   TH1D *m_taupt_log;
00037   TH1D *m_taueta;
00038   TH1D *m_tauphi;
00039   TH1D *m_ptstable;
00040   TH1D *m_ptstable_log;
00041   TH1D *m_etastable;
00042   TH1D *m_phistable;
00043   TH1D *m_E_stable;
00044   TH1D *m_E_stable_log;
00045   TH1D *m_ptstable_charged;
00046   TH1D *m_ptstable_charged_log;
00047   TH1D *m_etastable_charged;
00048   TH1D *m_phistable_charged;
00049   TH1D *m_E_stable_charged;
00050   TH1D *m_E_stable_charged_log;
00051   TH1D *m_cmultpart;
00052   TH1D *m_nTrack_tau;
00053   TH1D *m_pt_hightrack;
00054   TH1D *m_pt_hightrack_log;
00055 
00056   TH1D *m_jet_count;
00057   TH1D *m_jet_pt;
00058   TH1D *m_jet_pt_log;
00059 
00060 };
00061 
00062 #endif

Generated on Mon Jan 4 15:22:34 2010 for HepMCAnalysis by  doxygen 1.4.7