StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSsdClusterControl.h
1 
10 #ifndef STAR_StSsdClusterControl
11 #define STAR_StSsdClusterControl
12 #include "Rtypes.h"
13 class St_clusterControl;
15  public:
17  StSsdClusterControl(St_clusterControl *clusterCtrl);
19 
20  Float_t getHighCut();
21  Float_t getTestTolerance();
22  Int_t getClusterTreat();
23  Float_t getAdcTolerance();
24  Float_t getMatchMean();
25  Float_t getMatchSigma();
26 
27  void setHighCut(Float_t highCut);
28  void setTestTolerance(Float_t testTolerance);
29  void setClusterTreat(Int_t clusterTreat);
30  void setAdcTolerance(Float_t adcTolerance);
31  void setMatchMean(Float_t matchMean);
32  void setMatchSigma(Float_t matchSigma);
33 
34  void printParameters();
35 
36  private:
37  Float_t mHighCut;
38  Float_t mTestTolerance;
39  long mClusterTreat;
40  Float_t mAdcTolerance;
41  Float_t mMatchMean;
42  Float_t mMatchSigma;
43 };
44 
45 inline Float_t StSsdClusterControl::getHighCut() { return mHighCut; }
46 inline Float_t StSsdClusterControl::getTestTolerance() { return mTestTolerance; }
47 inline Int_t StSsdClusterControl::getClusterTreat() { return mClusterTreat; }
48 inline Float_t StSsdClusterControl::getAdcTolerance() { return mAdcTolerance; }
49 inline Float_t StSsdClusterControl::getMatchMean() { return mMatchMean; }
50 inline Float_t StSsdClusterControl::getMatchSigma() { return mMatchSigma; }
51 
52 inline void StSsdClusterControl::setHighCut(Float_t highCut) {mHighCut = highCut;}
53 inline void StSsdClusterControl::setTestTolerance(Float_t testTolerance) {mTestTolerance = testTolerance;}
54 inline void StSsdClusterControl::setClusterTreat(Int_t clusterTreat) {mClusterTreat = clusterTreat;}
55 inline void StSsdClusterControl::setAdcTolerance(Float_t adcTolerance) {mAdcTolerance = adcTolerance;}
56 inline void StSsdClusterControl::setMatchMean(Float_t matchMean) {mMatchMean = matchMean;}
57 inline void StSsdClusterControl::setMatchSigma(Float_t matchSigma) {mMatchSigma = matchSigma;}
58 
59 #endif
60 
61