]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliAODJetEventBackground.cxx
The check for save file was blocking the route to the checker
[u/mrichter/AliRoot.git] / STEER / AliAODJetEventBackground.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 //-------------------------------------------------------------------------
17 //     AOD class for  jet backgrounds
18 //     Author: Christian Klein-Boesing IKP Muenster
19 //-------------------------------------------------------------------------
20
21
22 #include "AliAODJetEventBackground.h"
23
24 using namespace std;
25
26 ClassImp(AliAODJetEventBackground)
27
28 TString AliAODJetEventBackground::fgkStdBranchName("jeteventbackground");
29
30
31
32 //______________________________________________________________________________
33 AliAODJetEventBackground::AliAODJetEventBackground() :
34     TNamed()
35 {
36   for(int i = 0;i < kMaxBackground;++i){
37     fBackground[i] = 0;
38   } 
39 }
40
41 //______________________________________________________________________________
42 AliAODJetEventBackground::~AliAODJetEventBackground() 
43 {
44   //
45   // destructor
46   //
47 }
48
49 //______________________________________________________________________________
50 AliAODJetEventBackground::AliAODJetEventBackground(const AliAODJetEventBackground& back) :
51     TNamed(back)
52 {
53   //
54   // Copy constructor
55   //
56   for(int i = 0;i < kMaxBackground;++i){
57     fBackground[i] = back.fBackground[i];
58   } 
59   
60 }
61
62 //______________________________________________________________________________
63 AliAODJetEventBackground& AliAODJetEventBackground::operator=(const AliAODJetEventBackground& back)
64 {
65   //
66    // Assignment operator
67   //
68
69   if(this!=&back) {
70     TNamed::operator=(back);
71     for(int i = 0;i < kMaxBackground;++i){
72       fBackground[i] = back.fBackground[i];
73     } 
74   }
75
76   return *this;
77 }
78
79 void AliAODJetEventBackground::Print(Option_t* /*option*/) const 
80 {
81   //
82   // Print information of all data members
83   //
84
85   printf("Jet EventBackground :\n");
86   for(int i = 0;i < kMaxBackground;++i){
87     printf("%d: %3.E GeV \n",i,fBackground[i]);
88   } 
89 }
90
91 void AliAODJetEventBackground::Reset()  
92 {
93   //
94   // reset information of all data members
95   //
96   for(int i = 0;i < kMaxBackground;++i){
97     fBackground[i] = 0;
98   } 
99 }