]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliDigitizer.cxx
AliGausCorr.h exported, typos corrected
[u/mrichter/AliRoot.git] / STEER / AliDigitizer.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 ////////////////////////////////////////////////////////////////////////
17 //
18 //  Base Class for Detector specific Merging/Digitization   
19 //                  
20 //  Author: Jiri Chudoba (CERN)
21 //
22 ////////////////////////////////////////////////////////////////////////
23
24 /*
25 $Log$
26 Revision 1.2  2001/10/04 15:56:34  jchudoba
27 TTask inheritance
28
29 Revision 1.1  2001/07/27 13:02:06  jchudoba
30 ABC for detector digits merging/digitization
31
32 */
33
34 // system includes
35 #include <iostream.h>
36
37 // ROOT includes
38
39 // AliROOT includes
40 #include "AliDigitizer.h"
41 #include "AliRunDigitizer.h"
42
43 ClassImp(AliDigitizer)
44
45 AliDigitizer::AliDigitizer(const Text_t* name, const Text_t* title)
46   :TTask(name,title) 
47 {
48 //
49 // dummy default ctor with name and title
50 //
51   fManager = 0;
52 }
53
54 AliDigitizer::AliDigitizer(AliRunDigitizer *manager, 
55                            const Text_t* name, const Text_t* title)
56   :TTask(name,title)
57 {
58 //
59 // ctor with name and title
60 //
61   fManager = manager;
62   manager->AddDigitizer(this);
63 }
64
65
66
67 AliDigitizer::~AliDigitizer() {;}