]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONHVSubprocessor.h
Can now fail if no DCS alias found, and updated Log() calls (Laurent)
[u/mrichter/AliRoot.git] / MUON / AliMUONHVSubprocessor.h
1 #ifndef ALIMUONHVSUBPROCESSOR_H
2 #define ALIMUONHVSUBPROCESSOR_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 AliMUONHVSubprocessor
11 /// \brief A subprocessor to read HV values for one run
12 /// \author Laurent Aphecetche
13
14 #ifndef ALIMUONVSUBPROCESSOR_H
15 #  include "AliMUONVSubprocessor.h"
16 #endif
17
18 class AliMUONHVSubprocessor : public AliMUONVSubprocessor
19 {
20 public:
21   AliMUONHVSubprocessor(AliMUONPreprocessor* master);
22   virtual ~AliMUONHVSubprocessor();
23   
24   virtual UInt_t Process(TMap* dcsAliasMap);
25
26 private:
27   AliMUONHVSubprocessor(const AliMUONHVSubprocessor&);
28   AliMUONHVSubprocessor& operator=(const AliMUONHVSubprocessor&);
29   
30   ClassDef(AliMUONHVSubprocessor,1) // Shuttle Subprocessor for MUON TRK HV
31 };
32
33 #endif