Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef AMISIC_Tools__MPI_KFactor_Setter_H
0002 #define AMISIC_Tools__MPI_KFactor_Setter_H
0003 
0004 #include "PHASIC++/Scales/KFactor_Setter_Base.H"
0005 
0006 namespace AMISIC {
0007 
0008   class MPI_KFactor_Setter: public PHASIC::KFactor_Setter_Base {
0009   private:
0010     static double s_pt02;
0011   public:
0012     MPI_KFactor_Setter(const PHASIC::KFactor_Setter_Arguments &args);
0013     double KFactor(const int mode=0) override;
0014     inline static void SetPT02(const double &pt02) { s_pt02=pt02; }
0015   };// end of class MPI_KFactor_Setter
0016 
0017 }// end of namespace AMISIC
0018 
0019 #endif