]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCReconstructor.h
Minor fixes in the event tag to take into account the new way of storing the trigger...
[u/mrichter/AliRoot.git] / TPC / AliTPCReconstructor.h
index 8949a8e9d01639f35a71ff2977dd087229a400c0..f0af59752224e29fcba5335fadc30cab777178e3 100644 (file)
@@ -42,10 +42,21 @@ public:
   static void SetCtgRange(Double_t ctgRange = 1.05) {fgCtgRange = ctgRange;}
   static Double_t GetCtgRange(){ return fgCtgRange;}
 
+  static void SetMaxSnpTracker(Double_t maxSnp) {fgMaxSnpTracker = maxSnp;}
+  static Double_t GetMaxSnpTracker(){ return fgMaxSnpTracker;}
+  static void SetMaxSnpTrack(Double_t maxSnp) {fgMaxSnpTrack = maxSnp;}
+  static Double_t GetMaxSnpTrack(){ return fgMaxSnpTrack;}
+
+  static Int_t StreamLevel()               { return fgStreamLevel;}
+  static void  SetStreamLevel(Int_t level) { fgStreamLevel = level;}
+
 private:
   AliTPCParam*         GetTPCParam(AliRunLoader* runLoader) const;
 
   static Double_t fgCtgRange; //! +-fCtgRange is the ctg(Theta) window used for clusterization and tracking (MI) 
+  static Double_t fgMaxSnpTracker;   // max sin of local angle  - for TPC tracker
+  static Double_t fgMaxSnpTrack;     // max sin of local angle  - for track 
+  static Int_t    fgStreamLevel;     // flag for streaming      - for TPC reconstruction
 
   ClassDef(AliTPCReconstructor, 0)   // class for the TPC reconstruction
 };