PandaRoot
RhoPointingConstraint.h
Go to the documentation of this file.
1 #ifndef RHOPOINTINGCONSTRAINT_H
2 #define RHOPOINTINGCONSTRAINT_H
3 // //
5 // RhoPointingConstraint //
6 // //
7 // Definition of a pointing constraint for particle fitters //
8 // //
9 // Author List: //
10 // Ralf Kliemt, HIM/GSI Feb.2013 //
11 // //
13 
14 #include "RhoConstraint.h"
15 #include "RhoVector3Err.h"
16 
18  public:
21 
22  void SetPointingConstraint(const RhoVector3Err &where) { fPointingConstraint = where; };
23  RhoVector3Err GetPointingConstraint() const { return fPointingConstraint; };
24 
25  private:
26  RhoVector3Err fPointingConstraint; // [cm]
27 
28  ClassDef(RhoPointingConstraint, 1);
29 };
30 
31 #endif // RHOPOINTINGCONSTRAINT_H
RhoPointingConstraint(const RhoVector3Err &where)
RhoVector3Err GetPointingConstraint() const
void SetPointingConstraint(const RhoVector3Err &where)