]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTrackerPreprocessor.cxx
QA ref defaut storage setter in sim and rec
[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     AddRunType("PEDESTAL");
56     AddRunType("CALIBRATION");
57     AddRunType("GMS");
58     AddRunType("PHYSICS");
59 }
60
61 //_____________________________________________________________________________
62 AliMUONTrackerPreprocessor::~AliMUONTrackerPreprocessor()
63 {
64   /// dtor
65
66   delete fPedestalSubprocessor;
67   delete fGMSSubprocessor;
68   delete fHVSubprocessor;
69   delete fGainSubprocessor;
70 }
71
72 //_____________________________________________________________________________
73 void
74 AliMUONTrackerPreprocessor::Initialize(Int_t run, UInt_t startTime, UInt_t endTime)
75 {
76   /// Re-register the subprocessor(s) depending on the actual runType
77
78   ClearSubprocessors();
79   
80   TString runType = GetRunType();
81   
82   fIsValid = kTRUE;
83   fIsApplicable = kTRUE;
84   
85   if ( runType == "PEDESTAL" )
86   {
87     Add(fPedestalSubprocessor); // to be called only for pedestal runs
88     Log("INFO-Will run Pedestal subprocessor");
89   }
90   else if ( runType == "CALIBRATION" )
91   {
92     Add(fGainSubprocessor); // to be called only for gain runs
93     Log("INFO-Will run Gain subprocessor");
94   }
95   else if ( runType == "GMS" )
96   {
97     Add(fGMSSubprocessor);
98     Log("INFO-Will run GMS subprocessor");
99   }
100   else if ( runType == "PHYSICS" )
101   {
102     Bool_t useDCS(kTRUE);
103     Add(fHVSubprocessor,useDCS); // to be called only for physics runs
104     Log("INFO-Will run HV subprocessor");
105   }
106   else
107   {
108     fIsApplicable = kFALSE;
109   }
110   
111   AliMUONPreprocessor::Initialize(run,startTime,endTime);
112   
113 }