]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONSDigitizerV2.h
New digitizer, not deriving from MUONDigitizer and doing decalibration of
[u/mrichter/AliRoot.git] / MUON / AliMUONSDigitizerV2.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice                               */
3
4 // $Id$
5
6 /// \ingroup sim
7 /// \class AliMUONSDigitizerV2
8 /// \brief New sdigitizer, not deriving from MUONDigitizer, and using
9 /// new Response:DisIntegrate method
10 ///
11 /// Note also that this one does *not* merge sdigits at all 
12 /// (this is deferred to the digitizer, which anyway has to do it), 
13 /// thus speeding a little bit this step.
14 ///
15 /// \author Laurent Aphecetche
16
17 #ifndef ALIMUONSDIGITIZERV2_H
18 #define ALIMUONSDIGITIZERV2_H
19
20 #ifndef ROOT_TTask
21 #  include "TTask.h"
22 #endif
23
24 class AliMUONSDigitizerV2 : public TTask
25 {
26 public:
27   AliMUONSDigitizerV2();
28   virtual ~AliMUONSDigitizerV2();
29   
30   virtual void Exec(Option_t* opt="");
31     
32   ClassDef(AliMUONSDigitizerV2,1) // 
33 };
34
35 #endif