]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONPreprocessor.cxx
Bug fix
[u/mrichter/AliRoot.git] / MUON / AliMUONPreprocessor.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 "AliMUONPreprocessor.h"
19
20 #include "AliMUONPedestalSubprocessor.h"
21 #include "AliMUONHVSubprocessor.h"
22 #include "AliMUONGMSSubprocessor.h"
23
24 #include "AliLog.h"
25 #include "AliShuttleInterface.h"
26 #include "Riostream.h"
27 #include "TObjArray.h"
28
29 /// \class AliMUONPreprocessor
30 ///
31 /// Shuttle preprocessor for MUON subsystems (TRK and TRG)
32 /// 
33 /// It's simply a manager class that deals with a list of sub-tasks 
34 /// (of type AliMUONVSubprocessor).
35 ///
36 /// \author Laurent Aphecetche
37
38 /// \cond CLASSIMP
39 ClassImp(AliMUONPreprocessor)
40 /// \endcond
41
42 //_____________________________________________________________________________
43 AliMUONPreprocessor::AliMUONPreprocessor(const char* detName, AliShuttleInterface* shuttle)
44 : AliPreprocessor(detName, shuttle),
45   fSubprocessors(new TObjArray())
46 {
47   /// ctor
48 }
49
50 //_____________________________________________________________________________
51 AliMUONPreprocessor::~AliMUONPreprocessor()
52 {
53   /// dtor
54   delete fSubprocessors;
55 }
56
57 //_____________________________________________________________________________
58 void
59 AliMUONPreprocessor::ClearSubprocessors()
60 {
61   /// Empty our subprocessor list
62   fSubprocessors->Clear();
63 }
64
65 //_____________________________________________________________________________
66 void
67 AliMUONPreprocessor::Add(AliMUONVSubprocessor* sub)
68 {
69   /// Add a subprocessor to our list of workers
70   fSubprocessors->Add(sub);
71 }
72
73 //_____________________________________________________________________________
74 void
75 AliMUONPreprocessor::Initialize(Int_t run, UInt_t startTime, UInt_t endTime)
76 {
77   /// loop over subtasks and initialize them
78   for ( Int_t i = 0; i <= fSubprocessors->GetLast(); ++i )
79   {
80     Subprocessor(i)->Initialize(run,startTime,endTime);
81   }
82 }
83
84 //_____________________________________________________________________________
85 UInt_t
86 AliMUONPreprocessor::Process(TMap* dcsAliasMap)
87 {
88   /// loop over subtasks to make them work
89   UInt_t rv(0);
90   
91   for ( Int_t i = 0; i <= fSubprocessors->GetLast(); ++i )
92   {
93     rv += Subprocessor(i)->Process(dcsAliasMap);
94   }
95   return rv;
96 }
97
98 //_____________________________________________________________________________
99 void
100 AliMUONPreprocessor::Print(Option_t* opt) const
101 {
102   /// output to screen
103   cout << "<AliMUONPreprocessor> subprocessors :" << endl;
104   for ( Int_t i=0; i <= fSubprocessors->GetLast(); ++i )
105   {
106     Subprocessor(i)->Print(opt);
107   }
108 }
109
110 //_____________________________________________________________________________
111 AliMUONVSubprocessor*
112 AliMUONPreprocessor::Subprocessor(Int_t i) const
113 {
114   /// return i-th subprocessor
115   if ( i >= 0 && i <= fSubprocessors->GetLast() )
116   {
117     return static_cast<AliMUONVSubprocessor*>(fSubprocessors->At(i));
118   }
119   return 0x0;
120 }