]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONDigitStoreV2S.h
Some cleanup in the makefiles
[u/mrichter/AliRoot.git] / MUON / AliMUONDigitStoreV2S.h
CommitLineData
97d7844b 1#ifndef ALIMUONDIGITSTOREV2S_H
2#define ALIMUONDIGITSTOREV2S_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 base
10/// \class AliMUONDigitStoreV2S
11/// \brief Implementation of AliMUONVDigitStore
12///
13// author Laurent Aphecetche
14
15#ifndef ALIMUONDIGITSTOREVIMPL_H
16# include "AliMUONDigitStoreVImpl.h"
17#endif
18
19class AliMUONDigitStoreV2S : public AliMUONDigitStoreVImpl
20{
21public:
22 AliMUONDigitStoreV2S();
23 virtual ~AliMUONDigitStoreV2S();
24
25 virtual AliMUONVDigitStore* Create() const;
26
27 virtual AliMUONVDigit* CreateDigit(Int_t detElemId, Int_t manuId,
28 Int_t manuChannel, Int_t cathode) const;
29
91b67b6f 30 virtual Bool_t HasMCInformation() const { return kTRUE; }
31
97d7844b 32protected:
33
34 virtual AliMUONVDigit* AddConcreteDigit(TClonesArray& a,
35 const AliMUONVDigit& digit,
36 Int_t index);
37
38 ClassDef(AliMUONDigitStoreV2S,1) // Implementation of AliMUONVDigitStore
39};
40
41#endif