FairRoot/PandaRoot
RhoBeamConstraint.h
Go to the documentation of this file.
1 #ifndef RHOBEAMCONSTRAINT_H
2 #define RHOBEAMCONSTRAINT_H
3 // //
5 // RhoBeamConstraint //
6 // //
7 // Definition of a beam constraint for particle fitters //
8 // //
9 // Author List: //
10 // Ralf Kliemt, HIM/GSI Feb.2013 //
11 // //
13 
14 
15 #include "RhoConstraint.h"
16 #include "RhoLorentzVectorErr.h"
17 
19 {
20  public:
21  RhoBeamConstraint ( const RhoLorentzVectorErr& beam );
23 
24  void SetBeamConstraint ( const RhoLorentzVectorErr& beam ) {
25  fBeamConstraint=beam;
26  };
28  return fBeamConstraint;
29  };
30 
31  private:
32  RhoLorentzVectorErr fBeamConstraint; //fourmomentum in the LAB [GeV/c]
33 
35 };
36 
37 #endif // RHOBEAMCONSTRAINT_H
RhoLorentzVectorErr fBeamConstraint
void SetBeamConstraint(const RhoLorentzVectorErr &beam)
RhoLorentzVectorErr GetBeamConstraint() const
RhoBeamConstraint(const RhoLorentzVectorErr &beam)
ClassDef(RhoBeamConstraint, 1)