]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
These files no longer used, do not follow coding convensions, and are not
authornilsen <nilsen@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 31 Jan 2002 18:50:43 +0000 (18:50 +0000)
committernilsen <nilsen@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 31 Jan 2002 18:50:43 +0000 (18:50 +0000)
documented or comments sufficiently.

ITS/AliITSdictSSD.cxx [deleted file]
ITS/AliITSdictSSD.h [deleted file]

diff --git a/ITS/AliITSdictSSD.cxx b/ITS/AliITSdictSSD.cxx
deleted file mode 100644 (file)
index bb9618a..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#include "AliITSdictSSD.h"
-
-void AliITSdictSSD::AddTrack(Int_t track) {
-  // add track
-    if (fTracks > 9) return;
-    Int_t exist = 0;
-    
-    for(Int_t i=0; i<10; i++) 
-     {
-       if(track == fTrack[i]) 
-        {
-        exist = 1;
-       }
-      
-      } 
-    if (!exist) 
-     {
-     fTrack[fTracks++] = track;     
-     }
-
-}
-
-
-Int_t AliITSdictSSD::GetTrack(Int_t index) {
-  // get track
-    if(index > fTracks) return 0;
-    else return fTrack[index];
-}
-
-
-//****************************************************************************
diff --git a/ITS/AliITSdictSSD.h b/ITS/AliITSdictSSD.h
deleted file mode 100644 (file)
index 03446af..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef ALIITSDICTSSD_H
-#define ALIITSDICTSSD_H
-
-#include <Rtypes.h>
-
-class AliITSdictSSD  {
-
-public:
-  
-  AliITSdictSSD() {
-    // constructor
-    ZeroTracks();
-  }
-  virtual ~AliITSdictSSD() {
-    // destructor
-  };
-  
-  void   AddTrack(Int_t track); 
-  Int_t  GetTrack(Int_t index);
-  Int_t  GetNTracks() {
-    // get num of tracks
-    return fTracks;
-  }
-  void   ZeroTracks() { 
-    // zero tracks
-    for (Int_t i =0;i<10;i++) fTrack[i]=-3; fTracks = 0;
-  }
-  
-private:           
-  Int_t fTrack[10];    // Track array
-  Int_t fTracks;       // Tracks
-};   
-
-
-#endif