]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/Alieve/AliEveTPCData.h
Put all classes in Alieve/ sub-module out of the Alieve namespace and
[u/mrichter/AliRoot.git] / EVE / Alieve / AliEveTPCData.h
similarity index 59%
rename from EVE/Alieve/TPCData.h
rename to EVE/Alieve/AliEveTPCData.h
index 04005d0b22a9f8cc7fdd7ca3ca6f06837d39e07e..81603da81efa823e88cd241e8ac21233579a571d 100644 (file)
@@ -1,4 +1,11 @@
-// $Header$
+// $Id$
+// Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
+
+/**************************************************************************
+ * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
+ * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
+ * full copyright notice.                                                 * 
+ **************************************************************************/
 
 #ifndef ALIEVE_TPCData_H
 #define ALIEVE_TPCData_H
@@ -13,29 +20,28 @@ class TTree;
 class AliTPCRawStream;
 class AliTPCRawStreamOld;
 
-namespace Alieve {
 
-class TPCSectorData;
+class AliEveTPCSectorData;
 
-class TPCData : public TObject, public TEveRefCnt
+class AliEveTPCData : public TObject, public TEveRefCnt
 {
 protected:
-  std::vector<TPCSectorData*>  fSectors;
+  std::vector<AliEveTPCSectorData*>  fSectors;
   Int_t                        fSectorBlockSize;
   Short_t                      fLoadThreshold;
   Short_t                      fLoadPedestal;
   Bool_t                       fAutoPedestal;
 
 public:
-  TPCData();
-  virtual ~TPCData();
+  AliEveTPCData();
+  virtual ~AliEveTPCData();
 
   void CreateSector(Int_t sector);
   void CreateAllSectors();
   void DropAllSectors();
   void DeleteAllSectors();
 
-  TPCSectorData* GetSectorData(Int_t sector, Bool_t spawnSectors=kFALSE);
+  AliEveTPCSectorData* GetSectorData(Int_t sector, Bool_t spawnSectors=kFALSE);
 
   Int_t GetSectorBlockSize()   const { return fSectorBlockSize; }
   void  SetSectorBlockSize(Int_t bs) { fSectorBlockSize = bs; }
@@ -52,9 +58,7 @@ public:
   void LoadDigits(TTree* tree, Bool_t spawnSectors=kTRUE);
   void LoadRaw(AliTPCRawStream& input, Bool_t spawnSectors=kTRUE, Bool_t warn=kFALSE);
 
-  ClassDef(TPCData, 1); // Manages TPC data for an event.
-}; // endclass TPCData
-
-}
+  ClassDef(AliEveTPCData, 1); // Manages TPC data for an event.
+}; // endclass AliEveTPCData
 
 #endif