FairRoot/PandaRoot
PndFsmMdcFS.h
Go to the documentation of this file.
1 //--------------------------------------------------------------------------
2 // File and Version Information:
3 // $Id: FsmMdcFS.hh,v 1.3 2006/07/13 10:43:45 klausg Exp $
4 //
5 // Description:
6 // Class FsmMdcFS
7 //
8 // Implementation of the MDCs system (DC3-DC8) in the Forward Spectormeter for the Fast Sim Detectors
9 //
10 // This software was developed for the PANDA collaboration. If you
11 // use all or part of it, please give an appropriate acknowledgement.
12 //
13 // Author List:
14 // Klaus Goetzen Original Author
15 //
16 // Copyright Information:
17 // Copyright (C) 2006 GSI
18 //
19 //------------------------------------------------------------------------
20 
21 #ifndef PNDFSMMDCFS_H
22 #define PNDFSMMDCFS_H
23 
24 //----------------------
25 // Base Class Headers --
26 //----------------------
27 
28 //-------------------------------
29 // Collaborating class Headers --
30 //-------------------------------
31 #include <iosfwd>
32 #include "ArgList.h"
33 #include "PndFsmAbsDet.h"
34 
35 //--------------------------------------------
36 // Collaborating class forward declarations --
37 // -------------------------------------------
38 class PndFsmTrack;
39 class PndFsmResponse;
40 
42 {
43 public:
44 
45  //--------------------
46  // Public interface --
47  //--------------------
48 
49  //
50  // Constructors
51  //
52 
54  PndFsmMdcFS();
58  virtual ~PndFsmMdcFS();
59 
65 
66 private:
67  bool detected(PndFsmTrack *t) const;
68  double dp(PndFsmTrack *t) const;
69  double dphi(PndFsmTrack *t) const;
70  double dtheta(PndFsmTrack *t) const;
71 
72  void initParameters();
73  void print(std::ostream &o);
74  bool setParameter(std::string &name, double value);
75 
76  //
77  // Modifiers
78  //
79 
80  double _thtMin;
81  double _thtMax;
82  double _angleXMax;
83  double _angleYMax;
84  double _radiationLength; //material budget
85  double _pmin;
86 
87  double _a1Par;
88  double _a2Par;
89  double _Bl;
90 };
91 
92 #endif
double _a2Par
Definition: PndFsmMdcFS.h:88
double _radiationLength
Definition: PndFsmMdcFS.h:84
std::list< std::string > ArgList
Definition: ArgList.h:7
virtual PndFsmResponse * respond(PndFsmTrack *t)
Definition: PndFsmMdcFS.cxx:99
Double_t par[3]
double _thtMin
Definition: PndFsmMdcFS.h:80
void print(std::ostream &o)
virtual ~PndFsmMdcFS()
Definition: PndFsmMdcFS.cxx:90
double _thtMax
Definition: PndFsmMdcFS.h:81
double _angleYMax
Definition: PndFsmMdcFS.h:83
bool detected(PndFsmTrack *t) const
double dp(PndFsmTrack *t) const
double _a1Par
Definition: PndFsmMdcFS.h:87
double _Bl
Definition: PndFsmMdcFS.h:89
TString name
double dphi(PndFsmTrack *t) const
void initParameters()
double _angleXMax
Definition: PndFsmMdcFS.h:82
double dtheta(PndFsmTrack *t) const
TTree * t
Definition: bump_analys.C:13
bool setParameter(std::string &name, double value)
double _pmin
Definition: PndFsmMdcFS.h:85