Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-19 09:09:41

0001 #ifndef Analysis_Observables_HT_H
0002 #define Analysis_Observables_HT_H
0003 
0004 #include "AddOns/Analysis/Observables/Primitive_Observable_Base.H"
0005 
0006 namespace ANALYSIS {
0007 
0008   class HT: public Primitive_Observable_Base {  
0009   private:
0010 
0011     std::string m_reflist;
0012 
0013   public:
0014 
0015     HT(int type,double xmin,double xmax,int nbins,
0016        const std::string & listname=std::string(""),
0017        const std::string & reflistname=std::string(""));
0018     
0019     void EvaluateNLOcontrib(double weight, double ncount);
0020     void EvaluateNLOevt();
0021     void Evaluate(const ATOOLS::Particle_List & pl, double weight, double ncount);
0022     Primitive_Observable_Base * Copy() const;
0023 
0024   };// end of class HT
0025 
0026 }// end of namespace ANALYSIS
0027 
0028 #endif