Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef Analysis_Observables_ChargedDEta_H
0002 #define Analysis_Observables_ChargedDEta_H
0003 
0004 #include "AddOns/Analysis/Observables/Primitive_Observable_Base.H"
0005 
0006 namespace ANALYSIS {
0007 
0008   class ChargedDEta: public Primitive_Observable_Base {  
0009     ATOOLS::Flavour m_flav1, m_flav2;
0010   public:
0011 
0012     ChargedDEta(int type,double xmin,double xmax,int nbins,
0013                 const std::string & listname,
0014                 const int kf1, const int kf2);
0015     
0016     void Evaluate(const ATOOLS::Particle_List & pl, double weight, double ncount);
0017     Primitive_Observable_Base * Copy() const;
0018 
0019   };// end of class ChargedDEta
0020 
0021 }// end of namespace ANALYSIS
0022 
0023 #endif