]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliDigitizer.h
Updated code/macros to be compliant with the current HEAD (from Y. Belikov)
[u/mrichter/AliRoot.git] / STEER / AliDigitizer.h
index e5a053531c8b6f0b48994263030d1c66df4de3b7..1067ff4bd585a23245835e7fa95f5464ec2e40b3 100644 (file)
@@ -20,16 +20,24 @@ class AliRunDigitizer;
 class AliDigitizer: public TTask {
 
  public:
-    AliDigitizer();                               // default ctor - dummy
-    AliDigitizer(AliRunDigitizer *manager);       // ctor to be used          
+// ctor with name and title
+    AliDigitizer(const Text_t* name="AliDigitizer",
+                const Text_t* title="AliDigitizer");
+// ctor to be used with name and title
+    AliDigitizer(AliRunDigitizer *manager,
+                const Text_t* name="AliDigitizer",
+                const Text_t* title="AliDigitizer");
+      
     virtual ~AliDigitizer();
     virtual Bool_t Init() {return kTRUE;}
 //    virtual void Digitize() = 0;
 
  protected:
+    Int_t GetNInputStreams() const;
+
     AliRunDigitizer *fManager;
     
-    ClassDef(AliDigitizer,1)
+    ClassDef(AliDigitizer,1) // Base class for detector digitizers
 };
 
 #endif // ALIDIGITIZER_H