FairRoot/PandaRoot
RhoMassConstraint.h
Go to the documentation of this file.
1 #ifndef RHOMASSCONSTRAINT_H
2 #define RHOMASSCONSTRAINT_H
3 // //
5 // RhoMassConstraint //
6 // //
7 // Definition of a mass constraint for particle fitters //
8 // //
9 // Author List: //
10 // Ralf Kliemt, HIM/GSI Feb.2013 //
11 // //
13 
14 
15 #include "RhoConstraint.h"
16 
18 {
19  public:
20  RhoMassConstraint ( const Double_t& mass=0. );
22 
23  void SetMassConstraint ( const Double_t& mass=0. ) {
24  fMassConstraint=mass;
25  };
27  return fMassConstraint;
28  };
29 
30  private:
31  Double_t fMassConstraint; //[GeV/c^2]
32 
34 };
35 
36 #endif // RHOMASSCONSTRAINT_H
Double_t
RhoMassConstraint(const Double_t &mass=0.)
ClassDef(RhoMassConstraint, 1)
void SetMassConstraint(const Double_t &mass=0.)
Double_t GetMassConstraint() const