]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Obsolete.
authorjbarbosa <jbarbosa@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 1 Mar 2001 10:34:33 +0000 (10:34 +0000)
committerjbarbosa <jbarbosa@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 1 Mar 2001 10:34:33 +0000 (10:34 +0000)
RICH/AliRICHPadHit.cxx [deleted file]
RICH/AliRICHPadHit.h [deleted file]

diff --git a/RICH/AliRICHPadHit.cxx b/RICH/AliRICHPadHit.cxx
deleted file mode 100644 (file)
index 48ed315..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/**************************************************************************
- * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- *                                                                        *
- * Author: The ALICE Off-line Project.                                    *
- * Contributors are mentioned in the code where appropriate.              *
- *                                                                        *
- * Permission to use, copy, modify and distribute this software and its   *
- * documentation strictly for non-commercial purposes is hereby granted   *
- * without fee, provided that the above copyright notice appears in all   *
- * copies and that both the copyright notice and this permission notice   *
- * appear in the supporting documentation. The authors make no claims     *
- * about the suitability of this software for any purpose. It is          *
- * provided "as is" without express or implied warranty.                  *
- **************************************************************************/
-
-/*
-  $Log$
-  Revision 1.1  2000/06/12 15:25:31  jbarbosa
-  Cleaned up version.
-
-*/
-
-
-#include "AliRICHPadHit.h"
-
-ClassImp(AliRICHPadHit)
-//______________________________________________________________
-AliRICHPadHit::AliRICHPadHit(Int_t *clhits)
-{
-
-// Default constructor for AliRICHPadHits
-
-  fHitNumber=clhits[0];
-  fQpad=clhits[1];
-  fPadX=clhits[2];
-  fPadY=clhits[3];
-  fRSec=clhits[4];
-}
-
diff --git a/RICH/AliRICHPadHit.h b/RICH/AliRICHPadHit.h
deleted file mode 100644 (file)
index d7c32c5..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef ALIRICHPADHIT_H
-#define ALIRICHPADHIT_H
-
-
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-/* $Id$ */
-
-#include <TObject.h>
-
-class AliRICHPadHit : public TObject {
- public:
-    
-    Int_t     fHitNumber;    // Hit number
-    Int_t     fQpad  ;          // Total charge      
-    Int_t     fPadX  ;       // Pad number along X
-    Int_t     fPadY  ;       // Pad number along Y
-    Int_t     fRSec  ;       // R -sector of pad
-    
- public:
-    AliRICHPadHit() {
-       fHitNumber=fPadX=fPadY=fQpad=fRSec=0;   
-    }
-    AliRICHPadHit(Int_t *clhits);
-    virtual ~AliRICHPadHit() {}
-       
-    ClassDef(AliRICHPadHit,1)  //Cluster object for set:RICH
-};
-#endif