]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Added function SetFastDecoder()
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 7 Dec 2007 11:20:28 +0000 (11:20 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 7 Dec 2007 11:20:28 +0000 (11:20 +0000)
MUON/AliMUON.cxx
MUON/AliMUON.h

index b6b660836faab4a9aac601e7e15b58b207c61216..e5acd4ed93467d2fa15de704721a9a2f9bc84ec9 100644 (file)
@@ -613,3 +613,15 @@ Int_t  AliMUON::GetDigitizerWithNoise() const
     
 }  
 
+//____________________________________________________________________
+void AliMUON::SetFastDecoder(Bool_t useFastDecoder)
+{
+/// Set fast raw data decoder 
+
+  if ( ! fDigitMaker ) {
+    AliError("Digit maker is not instantiated.");
+    return;
+  }   
+
+  fDigitMaker->SetFastDecoder(useFastDecoder);
+}  
index 3201a24bb68c0f263cfcdb25bddf7bd7403d0f3d..e04a5efd2f79019d169422abe3925510a21d3888 100644 (file)
@@ -122,6 +122,10 @@ class AliMUON : public  AliDetector
         { fDigitizerWithNoise = digitizerWithNoise; }
     virtual Int_t GetDigitizerWithNoise() const; 
     
+    // Set fast raw data decoder
+    virtual void SetFastDecoder(Bool_t useFastDecoder); 
+                
+    
     // Getters
                   /// Return reference to Chamber \a id
     virtual AliMUONChamber& Chamber(Int_t id)