]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removed with simplifying AliMUONGeometryDEIndexing class
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 22 Nov 2005 14:18:56 +0000 (14:18 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 22 Nov 2005 14:18:56 +0000 (14:18 +0000)
MUON/AliMUONVGeometryDEIndexing.cxx [deleted file]
MUON/AliMUONVGeometryDEIndexing.h [deleted file]

diff --git a/MUON/AliMUONVGeometryDEIndexing.cxx b/MUON/AliMUONVGeometryDEIndexing.cxx
deleted file mode 100644 (file)
index 8f3fdba..0000000
+++ /dev/null
@@ -1,50 +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.                  *
- **************************************************************************/
-
-// $Id$
-//
-// Class AliMUONVGeometryDEIndexing
-// --------------------------------
-// The abstract singleton base class for definition of
-// the conversion between the detection element Ids and 
-// the indexing in a simple array.
-//
-// Author: Ivana Hrivnacova, IPN Orsay
-
-#include "AliMUONVGeometryDEIndexing.h"
-
-ClassImp(AliMUONVGeometryDEIndexing)
-
-//______________________________________________________________________________
-AliMUONVGeometryDEIndexing::AliMUONVGeometryDEIndexing()
- : TObject()
-{ 
-// Standard/default constructor
-}
-
-//______________________________________________________________________________
-AliMUONVGeometryDEIndexing::~AliMUONVGeometryDEIndexing() {
-//
-}
-
-//______________________________________________________________________________
-Int_t AliMUONVGeometryDEIndexing::GetModuleId(Int_t detElemId)
-{
-// Get module Id from detection element Id
-// ---
-
-  return detElemId/100 - 1;
-}  
-
diff --git a/MUON/AliMUONVGeometryDEIndexing.h b/MUON/AliMUONVGeometryDEIndexing.h
deleted file mode 100644 (file)
index 21a5350..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-// $Id$
-
-/// \ingroup geometry
-/// \class AliMUONVGeometryDEIndexing
-/// \brief Base class for definition of detection elements indexing 
-/// 
-/// The abstract singleton base class for definition of
-/// the conversion between the detection element Ids and 
-/// the indexing in a simple array.
-///
-/// Author: Ivana Hrivnacova, IPN Orsay
-
-#ifndef ALI_MUON_V_GEOMETRY_DE_INDEXING_H
-#define ALI_MUON_V_GEOMETRY_DE_INDEXING_H
-
-#include <TObject.h>
-
-class AliMUONVGeometryDEIndexing;
-
-class AliMUONVGeometryDEIndexing : public TObject
-{
-  public:
-    AliMUONVGeometryDEIndexing();
-    virtual ~AliMUONVGeometryDEIndexing();
-
-    // static method
-    static  Int_t GetModuleId(Int_t detElemId);
-            
-    // methods
-    virtual Int_t GetDetElementIndex(Int_t detElemId) const = 0;
-    virtual Int_t GetDetElementId(Int_t detElemIndex) const = 0;
-
-    virtual Int_t GetNofDetElements() const = 0;
-    virtual void  SetNofDetElements(Int_t  nofDetElements) = 0;  
-
-  ClassDef(AliMUONVGeometryDEIndexing, 1) // MUON transformations store
-};
-
-#endif //ALI_MUON_DE_INDEXING_H