60d3a1d3 |
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 |
2c6e3e30 |
8 | /// \brief MUON SDigitizer (from Hits to SDigits). |
60d3a1d3 |
9 | /// |
2c6e3e30 |
10 | /// New sdigitizer, not deriving from MUONDigitizer, and using |
11 | /// new Response:DisIntegrate method |
60d3a1d3 |
12 | /// Note also that this one does *not* merge sdigits at all |
13 | /// (this is deferred to the digitizer, which anyway has to do it), |
14 | /// thus speeding a little bit this step. |
15 | /// |
16 | /// \author Laurent Aphecetche |
17 | |
18 | #ifndef ALIMUONSDIGITIZERV2_H |
19 | #define ALIMUONSDIGITIZERV2_H |
20 | |
21 | #ifndef ROOT_TTask |
22 | # include "TTask.h" |
23 | #endif |
24 | |
25 | class AliMUONSDigitizerV2 : public TTask |
26 | { |
27 | public: |
28 | AliMUONSDigitizerV2(); |
29 | virtual ~AliMUONSDigitizerV2(); |
30 | |
31 | virtual void Exec(Option_t* opt=""); |
32 | |
2c6e3e30 |
33 | ClassDef(AliMUONSDigitizerV2,1) // MUON SDigitizer V2-1 |
60d3a1d3 |
34 | }; |
35 | |
36 | #endif |