]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - T0/AliT0LookUpValue.cxx
Restoring backward compatibility of the SSD calibration objects + output of the SSD...
[u/mrichter/AliRoot.git] / T0 / AliT0LookUpValue.cxx
index d7c76ffddcab6a043e9cfdeb27bfb87fc0c677d2..5addf6786114dc8a3f5d9d66098a5492dd6e466c 100644 (file)
@@ -13,7 +13,7 @@
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 #include "AliT0LookUpValue.h"
-#include "iostream.h"
+//#include "iostream.h"
 
 ClassImp(AliT0LookUpValue)
 
@@ -55,46 +55,3 @@ void AliT0LookUpValue::Print(Option_t *) const
   printf("AliT0LookUpValue TRM %i, TDC %i, chain %i channel %i\n",fTRM,fTDC,fChain,fChannel);
 }
 //--------------------------------------------------------------------------------------
-
-ClassImp(AliT0LookUpKey)
-
- AliT0LookUpKey::AliT0LookUpKey():
-   TObject(),
-   fKey(0),
-   fName("")
- {
- }
-
-//--------------------------------------------------------------------------------------
- AliT0LookUpKey::AliT0LookUpKey(Int_t key):
-   TObject(),
-   fKey(key),
-   fName("")
- {
- }
-
-//--------------------------------------------------------------------------------------
- AliT0LookUpKey::AliT0LookUpKey(TString name):
-   TObject(),
-   fKey(),
-   fName(name)
- {
- }
-//--------------------------------------------------------------------------------------
-
-Bool_t AliT0LookUpKey:: IsEqual(const TObject* obj) const
-{
-  Int_t k;
-//  printf("IsEqual\n");
-    k=((AliT0LookUpKey*)obj)->GetKey();
-    if (k==fKey) return kTRUE; else return kFALSE;
-}
-//--------------------------------------------------------------------------------------
-void AliT0LookUpKey::Print(Option_t *) const
-{
-  printf(" AliT0LookUpKey key %i name %s\n",fKey,fName.Data());
-
-}