]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONClusterInput.h
Standeard io streamers added to make debugging et al. easier.
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterInput.h
index a7e6715b6932e3018577f5047d0063e33add4a52..da2dc467b78925f3e3e6ca4d0365a0213ec73fc2 100644 (file)
@@ -16,6 +16,7 @@ class AliMUONResponse;
 
 class AliMUONClusterInput : public TObject {
  public:
+    virtual ~AliMUONClusterInput();
     static AliMUONClusterInput* Instance();
 //  Configuration
     void SetDigits(Int_t chamber, TClonesArray* dig1, TClonesArray* dig2);
@@ -43,9 +44,11 @@ class AliMUONClusterInput : public TObject {
     Float_t DiscrChargeCombiS2(Int_t i,Double_t *par, Int_t cath);
 // 
  protected:
-    AliMUONClusterInput(){;}
+    AliMUONClusterInput();
+    AliMUONClusterInput(const AliMUONClusterInput& clusterInput){;}
+    AliMUONClusterInput & operator = (const AliMUONClusterInput& rhs);
  private:
-    static AliMUONClusterInput* fgClusterInput; // singleton instance
+    static AliMUONClusterInput* fgClusterInput; // singleton instance
     // Digits
     TClonesArray*        fDigits[2];       // ! Array of pointers to digits
     Int_t                fNDigits[2];      // ! Number of digits
@@ -63,7 +66,7 @@ class AliMUONClusterInput : public TObject {
     Float_t              fCharge[500][2];  // ! List of charges for current cluster
     Int_t                fChargeTot[2];    // ! Total charge
     Float_t              fQtot[2];         // ! Total charge
-    Float_t              fZ;                // ! Current z-position
+    Float_t              fZ;               // ! Current z-position
     // Fitter
     static TMinuit*      fgMinuit;          // ! Fitter
     ClassDef(AliMUONClusterInput, 0)        // Global data service for hit reconstruction