]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTrackerPreprocessor.cxx
Main changes:
[u/mrichter/AliRoot.git] / MUON / AliMUONTrackerPreprocessor.cxx
1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 *                                                                        *
4 * Author: The ALICE Off-line Project.                                    *
5 * Contributors are mentioned in the code where appropriate.              *
6 *                                                                        *
7 * Permission to use, copy, modify and distribute this software and its   *
8 * documentation strictly for non-commercial purposes is hereby granted   *
9 * without fee, provided that the above copyright notice appears in all   *
10 * copies and that both the copyright notice and this permission notice   *
11 * appear in the supporting documentation. The authors make no claims     *
12 * about the suitability of this software for any purpose. It is          *
13 * provided "as is" without express or implied warranty.                  *
14 **************************************************************************/
15
16 // $Id$
17
18 #include "AliMUONTrackerPreprocessor.h"
19
20 #include "AliMUONPedestalSubprocessor.h"
21 #include "AliMUONHVSubprocessor.h"
22 #include "AliMUONGMSSubprocessor.h"
23 #include "AliMUONGainSubprocessor.h"
24
25 #include "AliLog.h"
26 #include "AliShuttleInterface.h"
27 #include "Riostream.h"
28 #include "TObjArray.h"
29
30 //-----------------------------------------------------------------------------
31 /// \class AliMUONTrackerPreprocessor
32 ///
33 /// Shuttle preprocessor for MUON tracker
34 /// 
35 /// It's simply a manager class that deals with a list of sub-tasks 
36 /// (of type AliMUONVSubprocessor).
37 ///
38 /// \author Laurent Aphecetche
39 //-----------------------------------------------------------------------------
40
41 /// \cond CLASSIMP
42 ClassImp(AliMUONTrackerPreprocessor)
43 /// \endcond
44
45 //_____________________________________________________________________________
46 AliMUONTrackerPreprocessor::AliMUONTrackerPreprocessor(AliShuttleInterface* shuttle)
47 : AliMUONPreprocessor("MCH",shuttle),
48   fPedestalSubprocessor(new AliMUONPedestalSubprocessor(this)),
49   fGMSSubprocessor(new AliMUONGMSSubprocessor(this)),    
50   fHVSubprocessor(new AliMUONHVSubprocessor(this)),
51   fGainSubprocessor(new AliMUONGainSubprocessor(this))
52 {
53   /// ctor. 
54 }
55
56 //_____________________________________________________________________________
57 AliMUONTrackerPreprocessor::~AliMUONTrackerPreprocessor()
58 {
59   /// dtor
60
61   delete fPedestalSubprocessor;
62   delete fGMSSubprocessor;
63   delete fHVSubprocessor;
64   delete fGainSubprocessor;
65 }
66
67 //_____________________________________________________________________________
68 void
69 AliMUONTrackerPreprocessor::Initialize(Int_t run, UInt_t startTime, UInt_t endTime)
70 {
71   /// Re-register the subprocessor(s) depnding on the actual runTYpe
72
73   ClearSubprocessors();
74   
75   TString runType = GetRunType();
76   
77   fIsValid = kTRUE;
78   
79   if ( runType == "PEDESTAL_RUN" ) // FIXME : check the name
80   {
81     Add(fPedestalSubprocessor); // to be called only for pedestal runs
82     Log("INFO-Will run Pedestal subprocessor");
83   }
84   else if ( runType == "ELECTRONICS_CALIBRATION_RUN" ) // FIXME : check the name
85   {
86     Add(new AliMUONGainSubprocessor(this)); // to be called only for gain runs
87     Log("INFO-Will run Gain subprocessor");
88   }
89   else if ( runType == "GMS" ) // FIXME : check the name
90   {
91     Add(fGMSSubprocessor);
92     Log("INFO-Will run GMS subprocessor");
93   }
94   else if ( runType == "PHYSICS" ) // FIXME : check the name
95   {
96     Bool_t useDCS(kTRUE);
97     Add(fHVSubprocessor,useDCS); // to be called only for physics runs
98     Log("INFO-Will run HV subprocessor");
99   }
100   else
101   {
102     Log(Form("ERROR-Unknown RunType=%",runType.Data()));
103     fIsValid = kFALSE;
104   }
105   
106   AliMUONPreprocessor::Initialize(run,startTime,endTime);
107   
108 }