]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliCTPInputTimeParams.h
Completely reengineered version of CMake build system (Johny)
[u/mrichter/AliRoot.git] / STEER / AliCTPInputTimeParams.h
index 5ce18894aa850a99dc80750f6f08b7f00d0136d6..0c0bb3f8b24e61d8d88f0db7fced5da7c71623c4 100644 (file)
@@ -1,14 +1,9 @@
-#ifndef ALITIMESTAMP_H
-#define ALITIMESTAMP_H
+#ifndef ALICTPINPUTTIMEPARAMS_H
+#define ALICTPINPUTTIMEPARAMS_H
 
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-/* $Id: AliCTPInputTimeParams.h 22322 2007-11-22 11:43:14Z cvetan $ */
-
-///////////////////////////////////////////////////////////////////////////////
-//
-
+* See cxx source for full Copyright notice */
+/* $Id$ */
 
 class TObject;
 
@@ -16,7 +11,7 @@ class AliCTPInputTimeParams : public TObject {
 
 public:
                          AliCTPInputTimeParams();
-                         AliCTPInputTimeParams( TString& name, UInt_t& level, UInt_t delay, TString edge );   
+                         AliCTPInputTimeParams( TString& name, UInt_t& level, UInt_t delay, TString edge, UInt_t deltamin, UInt_t deltamax );   
 
               virtual   ~AliCTPInputTimeParams() {}
                          AliCTPInputTimeParams( const AliCTPInputTimeParams &ctptime );
@@ -27,10 +22,11 @@ public:
                UInt_t    GetLevel()     const { return fLevel; }       
                UInt_t    GetDelay() const { return fDelay; }  
               TString    GetEdge()    const { return fEdge; }      
-
+               Int_t    GetDeltaMin() const { return fDeltaMin; }  
+               Int_t    GetDeltaMax() const { return fDeltaMax; }  
      // Setters
                  void    SetCTPInputTimeParams( TString name, UInt_t level, 
-                                       UInt_t delay, TString edge );
+                            UInt_t delay, TString edge, UInt_t deltamin, UInt_t deltamax );
               
          virtual void    Print( const Option_t* opt ="" ) const;
                                
@@ -40,10 +36,12 @@ protected:
               UInt_t    fLevel; 
               UInt_t    fDelay;
             TString    fEdge;
+             Int_t     fDeltaMin;
+             Int_t     fDeltaMax;
                          
 private:                         
 
-   ClassDef( AliCTPInputTimeParams, 1 )  
+   ClassDef( AliCTPInputTimeParams, 3 )  
 };