]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONVSubprocessor.h
Temporary disable the raw version, it will be taken from FEE
[u/mrichter/AliRoot.git] / MUON / AliMUONVSubprocessor.h
CommitLineData
ea199e33 1#ifndef ALIMUONVSUBPROCESSOR_H
2#define ALIMUONVSUBPROCESSOR_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5* See cxx source for full Copyright notice */
6
7// $Id$
8
9/// \ingroup shuttle
10/// \class AliMUONVSubprocessor
11/// \brief Base class for a shuttle sub-task for MUON (either TRK or TRG)
12///
78649106 13// Author Laurent Aphecetche
ea199e33 14
15#ifndef ROOT_TNamed
16# include "TNamed.h"
17#endif
18
19class TMap;
20class AliMUONPreprocessor;
21
22class AliMUONVSubprocessor : public TNamed
23{
24public:
25 AliMUONVSubprocessor(AliMUONPreprocessor* master,
26 const char* name="", const char* title="");
27 virtual ~AliMUONVSubprocessor();
28
29 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
71a2d3aa 30
31 /// Process this sub-task
ea199e33 32 virtual UInt_t Process(TMap* dcsAliasMap) = 0;
33
34protected:
71a2d3aa 35 /// Return the pointer to our master
ea199e33 36 AliMUONPreprocessor* Master() const { return fMaster; }
37
71a2d3aa 38 /// Not implemented
ea199e33 39 AliMUONVSubprocessor();
71a2d3aa 40 /// Not implemented
ea199e33 41 AliMUONVSubprocessor(const AliMUONVSubprocessor&);
71a2d3aa 42 /// Not implemented
ea199e33 43 AliMUONVSubprocessor& operator=(const AliMUONVSubprocessor&);
44
45private:
46 AliMUONPreprocessor* fMaster; ///< Pointer to our master
47
48 ClassDef(AliMUONVSubprocessor,1) // Base class of MUON shuttle sub(pre)processors
49};
50
51#endif