]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUON.cxx
Removing non-working HP for the GRP configuration for the test setup.
[u/mrichter/AliRoot.git] / MUON / AliMUON.cxx
index cfc3f152314f0542229bb1e96d74f418e6cab38c..e8bcf527f13d41560aba5200f746f662d5e759c4 100644 (file)
@@ -102,7 +102,9 @@ AliMUON::AliMUON()
     fDigitMaker(0x0),
     fHitStore(0x0),
     fDigitStoreConcreteClassName(),
-    fCalibrationData(0x0)
+    fCalibrationData(0x0),
+    fTimeMin(-100000),
+    fTimeMax(100000)
 {
 /// Default Constructor
     
@@ -137,7 +139,9 @@ AliMUON::AliMUON(const char *name, const char* title)
     fDigitMaker(new AliMUONDigitMaker),
     fHitStore(0x0),
     fDigitStoreConcreteClassName("AliMUONDigitStoreV2S"),
-    fCalibrationData()
+    fCalibrationData(),
+    fTimeMin(-100000),
+    fTimeMax(100000)
 
 {
   /// Standard constructor  
@@ -594,55 +598,4 @@ Int_t  AliMUON::GetDigitizerWithNoise() const
     
 }  
 
-//____________________________________________________________________
-Bool_t AliMUON::UsingFastTrackerDecoder() const
-{
-/// Checks to see if we are using the fast decoder for tracker DDL streams.
-
-  if ( ! fDigitMaker ) {
-    AliError("Digit maker is not instantiated.");
-    return kFALSE;
-  }
-  
-  return fDigitMaker->UsingFastTrackerDecoder();
-}
-
-//____________________________________________________________________
-Bool_t AliMUON::UsingFastTriggerDecoder() const
-{
-/// Checks to see if we are using the fast decoder for trigger DDL streams.
-
-  if ( ! fDigitMaker ) {
-    AliError("Digit maker is not instantiated.");
-    return kFALSE;
-  }
-  
-  return fDigitMaker->UsingFastTriggerDecoder();
-}
-
-//____________________________________________________________________
-void AliMUON::SetFastTrackerDecoder(Bool_t useFastDecoder)
-{
-/// Set fast raw data decoder 
-
-  if ( ! fDigitMaker ) {
-    AliError("Digit maker is not instantiated.");
-    return;
-  }
-
-  fDigitMaker->SetFastTrackerDecoder(useFastDecoder);
-}
-
-//____________________________________________________________________
-void AliMUON::SetFastTriggerDecoder(Bool_t useFastDecoder)
-{
-/// Set fast raw data decoder 
-
-  if ( ! fDigitMaker ) {
-    AliError("Digit maker is not instantiated.");
-    return;
-  }
-
-  fDigitMaker->SetFastTriggerDecoder(useFastDecoder);
-}