]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTrackerPreprocessor.cxx
New data members: distance to bad channels from the center of a reconstructed cluster...
[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 /// \class AliMUONTrackerPreprocessor
31 ///
32 /// Shuttle preprocessor for MUON tracker
33 /// 
34 /// It's simply a manager class that deals with a list of sub-tasks 
35 /// (of type AliMUONVSubprocessor).
36 ///
37 /// \author Laurent Aphecetche
38
39 /// \cond CLASSIMP
40 ClassImp(AliMUONTrackerPreprocessor)
41 /// \endcond
42
43 //_____________________________________________________________________________
44 AliMUONTrackerPreprocessor::AliMUONTrackerPreprocessor(AliShuttleInterface* shuttle)
45 : AliMUONPreprocessor("MCH",shuttle),
46   fPedestalSubprocessor(new AliMUONPedestalSubprocessor(this)),
47   fGMSSubprocessor(new AliMUONGMSSubprocessor(this)),    
48   fHVSubprocessor(new AliMUONHVSubprocessor(this)),
49   fGainSubprocessor(new AliMUONGainSubprocessor(this))
50 {
51   /// ctor. 
52 }
53
54 //_____________________________________________________________________________
55 AliMUONTrackerPreprocessor::~AliMUONTrackerPreprocessor()
56 {
57   /// dtor
58
59   delete fPedestalSubprocessor;
60   delete fGMSSubprocessor;
61   delete fHVSubprocessor;
62   delete fGainSubprocessor;
63 }
64
65 //_____________________________________________________________________________
66 void
67 AliMUONTrackerPreprocessor::Initialize(Int_t run, UInt_t startTime, UInt_t endTime)
68 {
69   /// Re-register the subprocessor(s) depnding on the actual runTYpe
70
71   ClearSubprocessors();
72   
73   TString runType = GetRunType();
74   
75   if ( runType == "PEDESTAL_RUN" ) // FIXME : check the name
76   {
77     Add(fPedestalSubprocessor); // to be called only for pedestal runs
78     Log("INFO-Will run Pedestal subprocessor");
79   }
80   else if ( runType == "ELECTRONICS_CALIBRATION_RUN" ) // FIXME : check the name
81   {
82     Add(new AliMUONGainSubprocessor(this)); // to be called only for gain runs
83     Log("INFO-Will run Gain subprocessor");
84   }
85   else if ( runType == "GMS" ) // FIXME : check the name
86   {
87     Add(fGMSSubprocessor);
88     Log("INFO-Will run GMS subprocessor");
89   }
90   else if ( runType == "PHYSICS" ) // FIXME : check the name
91   {
92     Bool_t useDCS(kTRUE);
93     Add(fHVSubprocessor,useDCS); // to be called only for physics runs
94     Log("INFO-Will run HV subprocessor");
95   }
96   else
97   {
98     Log(Form("ERROR-Unknown RunType=%",runType.Data()));
99   }
100   
101   AliMUONPreprocessor::Initialize(run,startTime,endTime);
102   
103 }