]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/MUONshuttle/AliMUONTriggerSubprocessor.h
Update master to aliroot
[u/mrichter/AliRoot.git] / MUON / MUONshuttle / AliMUONTriggerSubprocessor.h
CommitLineData
2ab3623b 1#ifndef ALIMUONTRIGGERSUBPROCESSOR_H
2#define ALIMUONTRIGGERSUBPROCESSOR_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 AliMUONTriggerSubprocessor
11/// \brief Implementation of AliMUONVSubprocessor for MUON TRK masks
12///
13// Author Laurent Aphecetche, Subatech
14
15#ifndef ALIMUONVSUBPROCESSOR_H
16# include "AliMUONVSubprocessor.h"
17#endif
18
19class AliMUONTriggerLut;
92c23b09 20class AliMUONRegionalTriggerConfig;
21class AliMUONGlobalCrateConfig;
2ab3623b 22class AliMUONVCalibParam;
92c23b09 23class AliMUONVStore;
2ab3623b 24class TString;
87f615d8 25class TClonesArray;
2ab3623b 26
27class AliMUONTriggerSubprocessor : public AliMUONVSubprocessor
28{
29public:
30 AliMUONTriggerSubprocessor(AliMUONPreprocessor* master);
31 virtual ~AliMUONTriggerSubprocessor();
32
6c870207 33 Bool_t Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
2ab3623b 34 UInt_t Process(TMap* dcsAliasMap);
35
36private:
37
38 TString GetFileName(const char* fid) const;
39
40 /// Not implemented
41 AliMUONTriggerSubprocessor(const AliMUONTriggerSubprocessor&);
42 /// Not implemented
43 AliMUONTriggerSubprocessor& operator=(const AliMUONTriggerSubprocessor&);
44
c2d0667a 45 Int_t TestFile(const char* baseName, Bool_t shouldBeThere) const;
46
47 void WhichFilesToRead(const char* exportedFiles,
48 Bool_t& globalFile,
49 Bool_t& regionalFile,
50 Bool_t& localFile,
87f615d8 51 Bool_t& lutFile,
52 Bool_t& trigScalFile) const;
c2d0667a 53
2ab3623b 54private:
92c23b09 55 AliMUONRegionalTriggerConfig* fRegionalConfig; //!< regional config
2ab3623b 56 AliMUONVStore* fLocalMasks; //!< local masks
92c23b09 57 AliMUONGlobalCrateConfig* fGlobalConfig; //!< global config
2ab3623b 58 AliMUONTriggerLut* fLUT; //!< look-up table(s)
87f615d8 59 TClonesArray* fTrigScalers; //!< trigger scalers
2ab3623b 60
87f615d8 61 ClassDef(AliMUONTriggerSubprocessor,3) // A shuttle preprocessor for MUON TRK masks
2ab3623b 62};
63
64#endif