]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONHVSubprocessor.h
Modifications in CMake* files to export all required headers.
[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
78649106 12///
13// Author Laurent Aphecetche
45824ef1 14
15#ifndef ALIMUONVSUBPROCESSOR_H
16# include "AliMUONVSubprocessor.h"
17#endif
18
19class AliMUONHVSubprocessor : public AliMUONVSubprocessor
20{
21public:
22 AliMUONHVSubprocessor(AliMUONPreprocessor* master);
23 virtual ~AliMUONHVSubprocessor();
24
45824ef1 25 virtual UInt_t Process(TMap* dcsAliasMap);
26
27private:
71a2d3aa 28 /// Not implemented
45824ef1 29 AliMUONHVSubprocessor(const AliMUONHVSubprocessor&);
71a2d3aa 30 /// Not implemented
45824ef1 31 AliMUONHVSubprocessor& operator=(const AliMUONHVSubprocessor&);
32
33 ClassDef(AliMUONHVSubprocessor,1) // Shuttle Subprocessor for MUON TRK HV
34};
35
36#endif