]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/EveBase/AliEveVSDCreator.h
Fix order of public/protected/private sections to conform with coding
[u/mrichter/AliRoot.git] / EVE / EveBase / AliEveVSDCreator.h
index 163ffbba8c99c77af0a4e484fe9166a93e30141a..40f709948f324389a649b6d9c474a80a08f11275 100644 (file)
@@ -19,27 +19,6 @@ class AliRunLoader;
 
 class AliEveVSDCreator : public TEveVSD
 {
-private:
-  AliEveVSDCreator(const AliEveVSDCreator&);            // Not implemented
-  AliEveVSDCreator& operator=(const AliEveVSDCreator&); // Not implemented
-
-protected:
-  void               MakeItsDigitsInfo();
-  TEveMCRecCrossRef* GetGeninfo(Int_t label);
-  AliTPCParam*       GetTpcParam(const TEveException& eh);
-
-  TString       fDataDir;    // Source data directory.
-  Int_t         fEvent;      // Source event number.
-
-  Float_t       fTPCHitRes;  // Resolution for storing TPC hits.
-  Float_t       fTRDHitRes;  // Resolution for storing TRD hits.
-
-  Int_t         fDebugLevel; // Internal debug level.
-
-  AliRunLoader *fRunLoader;  // Internal run-loader.
-
-  std::map<Int_t, TEveMCRecCrossRef*> fGenInfoMap; // Map label to MC-Rec cross-ref data structure.
-
 public:
   AliEveVSDCreator(const Text_t* name="AliEveVSDCreator", const Text_t* title="");
   virtual ~AliEveVSDCreator() {}
@@ -66,6 +45,27 @@ public:
   Int_t GetDebugLevel() const   { return fDebugLevel; }
   void  SetDebugLevel(Int_t dl) { fDebugLevel = dl; }
 
+protected:
+  void               MakeItsDigitsInfo();
+  TEveMCRecCrossRef* GetGeninfo(Int_t label);
+  AliTPCParam*       GetTpcParam(const TEveException& eh);
+
+  TString       fDataDir;    // Source data directory.
+  Int_t         fEvent;      // Source event number.
+
+  Float_t       fTPCHitRes;  // Resolution for storing TPC hits.
+  Float_t       fTRDHitRes;  // Resolution for storing TRD hits.
+
+  Int_t         fDebugLevel; // Internal debug level.
+
+  AliRunLoader *fRunLoader;  // Internal run-loader.
+
+  std::map<Int_t, TEveMCRecCrossRef*> fGenInfoMap; // Map label to MC-Rec cross-ref data structure.
+
+private:
+  AliEveVSDCreator(const AliEveVSDCreator&);            // Not implemented
+  AliEveVSDCreator& operator=(const AliEveVSDCreator&); // Not implemented
+
   ClassDef(AliEveVSDCreator, 0); // Create VSD file from ALICE data.
 }; // endclass AliEveVSDCreator