]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/PHOS/AliHLTPHOSDigit.h
Selectiv readout and writing to FXS (oystein)
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSDigit.h
index 3f63c885cff0428f4277c7413c7b23980f43db95..05e7abc56b9e40bda65e4959337a3eb734b8c90b 100644 (file)
@@ -1,3 +1,4 @@
+
 /**************************************************************************
  * This file is property of and copyright by the ALICE HLT Project        * 
  * All rights reserved.                                                   *
@@ -54,6 +55,34 @@ public:
   /** Destructor */
   virtual ~AliHLTPHOSDigit();
 
+   /** Copy constructor */  
+  AliHLTPHOSDigit(const AliHLTPHOSDigit &) : 
+    TObject(),
+    AliHLTPHOSBase(),
+    fX(-1),
+    fZ(-1),
+    fAmplitude(-1),
+    fTime(-1),
+    fEnergy(-1),
+    fGain(-1),
+    fSamples(55),
+    fPreSamples(15),
+    fTotalSamples(70),
+    fDebugVar(-1),
+    fData(0),
+    fCrazyness(0),
+    fBaseline(0)
+  {
+    //Copy constructor not implemented
+  }
+  
+  /** Assignment */
+  AliHLTPHOSDigit & operator = (const AliHLTPHOSDigit)
+  {
+    //Assignment
+    return *this; 
+  }
+
   /** Set x */
   void SetX(Int_t x) { fX = x; }