Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef PHASIC_Main_Phase_Space_Variation_Weights_H
0002 #define PHASIC_Main_Phase_Space_Variation_Weights_H
0003 
0004 namespace ATOOLS {
0005   class Variation_Weights;
0006 }
0007 
0008 namespace PHASIC {
0009   class Process_Base;
0010   class Phase_Space_Handler;
0011 
0012   class Phase_Space_Variation_Weights {
0013   private:
0014     ATOOLS::Variation_Weights * p_weights;
0015   public:
0016     inline void SetVariationWeights(ATOOLS::Variation_Weights *vw) { p_weights = vw; }
0017     inline ATOOLS::Variation_Weights * operator()() { return p_weights; }
0018   };
0019 }
0020 
0021 #endif