]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONDigitizerv2.h
Updated constants & method
[u/mrichter/AliRoot.git] / MUON / AliMUONDigitizerv2.h
CommitLineData
d1775029 1#ifndef ALIMUONDIGITIZERV2_H
2#define ALIMUONDIGITIZERV2_H
3/* Copyright(c) 1998-2001, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
30178c30 6/* $Id$ */
7// Revision of includes 07/05/2004
8
cf286af7 9#include "AliMUONDigitizerv1.h"
30178c30 10#include "AliMUONDigit.h"
11
12class AliMUONLoader;
d1775029 13
cf286af7 14class AliMUONDigitizerv2 : public AliMUONDigitizerv1
15{
8789635b 16 public:
cf286af7 17 AliMUONDigitizerv2();
8789635b 18 virtual ~AliMUONDigitizerv2();
cf286af7 19
20 // Preferred constructor which assigns the manager object.
21 AliMUONDigitizerv2(AliRunDigitizer * manager);
d1775029 22
cf286af7 23 // Makes a transient digit from the specified s-digit from the specified chamber.
24 void MakeTransientDigitFromSDigit(Int_t iChamber, AliMUONDigit* sDigit);
d1775029 25
cf286af7 26 // The following methods are inherited from AliMUONDigitizerv1 and overridden.
27 virtual void GenerateTransientDigits();
28 virtual void AddDigit(Int_t chamber, Int_t tracks[kMAXTRACKS], Int_t charges[kMAXTRACKS], Int_t digits[6]);
29 virtual Bool_t InitInputData(AliMUONLoader* muonloader);
30 virtual void CleanupInputData(AliMUONLoader* muonloader);
d1775029 31
cf286af7 32 ClassDef(AliMUONDigitizerv2, 0)
d1775029 33};
34#endif
35