]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Reintroducing previously removed variables
authorodjuvsla <odjuvsla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 20 Jun 2012 14:53:14 +0000 (14:53 +0000)
committerodjuvsla <odjuvsla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 20 Jun 2012 14:53:14 +0000 (14:53 +0000)
This is done to make the EMCAL run with the updated
base classes.

PWGLF/totEt/AliAnalysisEt.cxx
PWGLF/totEt/AliAnalysisEt.h

index 9626d2d7ac0e6873e63b39049f37d495f3d16988..11d06de33771bcbe9e7cc0898f0e1066f6bb8e65 100644 (file)
@@ -60,8 +60,11 @@ AliAnalysisEt::AliAnalysisEt() : AliAnalysisEtCommon()
                               ,fAcceptedTree(0)
                               ,fDepositTree(0)
                               ,fTotEt(0)
+                              ,fTotEtAcc(0)
                               ,fTotNeutralEt(0)
+                              ,fTotNeutralEtAcc(0)
                               ,fTotChargedEt(0)
+                              ,fTotChargedEtAcc(0)
                               ,fMultiplicity(0)
                               ,fChargedMultiplicity(0)
                               ,fNeutralMultiplicity(0)
@@ -392,8 +395,11 @@ void AliAnalysisEt::CreateTrees()
   
     fEventSummaryTree = new TTree(treename, treename);
     fEventSummaryTree->Branch("fTotEt",&fTotEt,"fTotEt/D");
+    fEventSummaryTree->Branch("fTotEtAcc",&fTotEtAcc,"fTotEtAcc/D");
     fEventSummaryTree->Branch("fTotNeutralEt",&fTotNeutralEt,"fTotNeutralEt/D");
+    fEventSummaryTree->Branch("fTotNeutralEtAcc",&fTotNeutralEtAcc,"fTotNeutralEtAcc/D");
     fEventSummaryTree->Branch("fTotChargedEt",&fTotChargedEt,"fTotChargedEt/D");
+    fEventSummaryTree->Branch("fTotChargedEtAcc",&fTotChargedEtAcc,"fTotChargedEtAcc/D");
     fEventSummaryTree->Branch("fMultiplicity",&fMultiplicity,"fMultiplicity/I");
     fEventSummaryTree->Branch("fChargedMultiplicity",&fChargedMultiplicity,"fChargedMultiplicity/I");
     fEventSummaryTree->Branch("fNeutralMultiplicity",&fNeutralMultiplicity,"fNeutralMultiplicity/I");
@@ -547,8 +553,11 @@ void AliAnalysisEt::ResetEventValues()
 { // clear
   AliAnalysisEtCommon::ResetEventValues();
   fTotEt = 0;
+  fTotEtAcc = 0;
   fTotNeutralEt = 0;
-  fTotChargedEt  = 0;
+  fTotChargedEt = 0;
+  fTotNeutralEtAcc = 0;
+  fTotChargedEtAcc  = 0;
   fMultiplicity = 0;
   fChargedMultiplicity = 0;
   fNeutralMultiplicity = 0;
index 61114f9d3b1caa742bcf81b8192f60525991a143..c7f77b667eca8a10b70b4737e756e6303792b4f0 100644 (file)
@@ -134,10 +134,16 @@ protected:
     
     Double_t fTotEt;/** Total Et in the event (without acceptance cuts) */
 
+    Double_t fTotEtAcc;/** Total Et in the event (without acceptance cuts) */
+
     Double_t fTotNeutralEt;/** Total neutral Et in the event */
 
+    Double_t fTotNeutralEtAcc;/** Total neutral Et in the event */
+
     Double_t fTotChargedEt;/** Total charged Et in the event */
 
+    Double_t fTotChargedEtAcc;/** Total charged Et in the event */
+
     Int_t fMultiplicity;/** Multiplicity of particles in the event */
     Int_t fChargedMultiplicity;/** Multiplicity of charged particles in the event */
     Int_t fNeutralMultiplicity; /** Multiplicity of neutral particles in the event */