]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG4/totEt/AliAnalysisEtSelectionContainer.h
Fixing some coding violations. Mostly not enough comments at the top of the file.
[u/mrichter/AliRoot.git] / PWG4 / totEt / AliAnalysisEtSelectionContainer.h
index 4a2e2b4739d5214c0a3e4a85ddfcce18c65400c8..cb7e3ec104b97f365d315f826a4f5cdf6eee5ff4 100644 (file)
@@ -1,3 +1,10 @@
+//_________________________________________________________________________
+//  Utility Class for transverse energy studies
+//  Class for determining physics selection
+//  - reconstruction and MonteCarlo output
+//
+//*-- Authors: Oystein Djuvsland (Bergen)
+//_________________________________________________________________________//
 #ifndef ALIANALYSISETSELECTIONCONTAINER_H
 #define ALIANALYSISETSELECTIONCONTAINER_H
 
@@ -5,7 +12,8 @@
 #include <map>
 
 
-class AliPhysicsSelection;
+
+class  AliPhysicsSelection; 
 
 class AliAnalysisEtSelectionContainer : public TNamed
 {
@@ -21,10 +29,10 @@ public:
   virtual ~AliAnalysisEtSelectionContainer();
   
   /** Return the physics selection for the current run */
-  AliPhysicsSelection* GetPhysicsSelection(Int_t runNumber) { return fPhysicsSelectionMap[runNumber]; }
+  AliPhysicsSelection* GetPhysicsSelection(Int_t runNumber){ return fPhysicsSelectionMap[runNumber]; }
   
   /** Return the physics selection for the current run */
-  AliPhysicsSelection* GetDefaultPhysicsSelection() { return fPhysicsSelectionMap[0]; }
+  AliPhysicsSelection* GetDefaultPhysicsSelection(){ return fPhysicsSelectionMap[0]; }
   
   /** Get the map */
   std::map<int, AliPhysicsSelection*> GetPhysicsSelectionMap() const { return fPhysicsSelectionMap; }