]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONHVSubprocessor.h
- Added new functions:
[u/mrichter/AliRoot.git] / MUON / AliMUONHVSubprocessor.h
CommitLineData
45824ef1 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
18class AliMUONHVSubprocessor : public AliMUONVSubprocessor
19{
20public:
21 AliMUONHVSubprocessor(AliMUONPreprocessor* master);
22 virtual ~AliMUONHVSubprocessor();
23
24 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
25 virtual UInt_t Process(TMap* dcsAliasMap);
26
27private:
28 AliMUONHVSubprocessor(const AliMUONHVSubprocessor&);
29 AliMUONHVSubprocessor& operator=(const AliMUONHVSubprocessor&);
30
31 ClassDef(AliMUONHVSubprocessor,1) // Shuttle Subprocessor for MUON TRK HV
32};
33
34#endif