]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliAODJetEventBackground.cxx
coverity 10161
[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     fSigma[i] = 0;
39     fMeanArea[i] = 0; 
40
41   } 
42 }
43
44 //______________________________________________________________________________
45 AliAODJetEventBackground::~AliAODJetEventBackground() 
46 {
47   //
48   // destructor
49   //
50 }
51
52 //______________________________________________________________________________
53 AliAODJetEventBackground::AliAODJetEventBackground(const AliAODJetEventBackground& back) :
54     TNamed(back)
55 {
56   //
57   // Copy constructor
58   //
59   for(int i = 0;i < kMaxBackground;++i){
60     fBackground[i] = back.fBackground[i];
61     fSigma[i] = back.fSigma[i];
62     fMeanArea[i] = back.fMeanArea[i]; 
63   } 
64   
65 }
66
67 //______________________________________________________________________________
68 AliAODJetEventBackground& AliAODJetEventBackground::operator=(const AliAODJetEventBackground& back)
69 {
70   //
71    // Assignment operator
72   //
73
74   if(this!=&back) {
75     TNamed::operator=(back);
76     for(int i = 0;i < kMaxBackground;++i){
77       fBackground[i] = back.fBackground[i];
78       fSigma[i] = back.fSigma[i];
79       fMeanArea[i] = back.fMeanArea[i]; 
80     } 
81   }
82
83   return *this;
84 }
85
86 void AliAODJetEventBackground::Print(Option_t* /*option*/) const 
87 {
88   //
89   // Print information of all data members
90   //
91
92   printf("Jet EventBackground :\n");
93   for(int i = 0;i < kMaxBackground;++i){
94     printf("%d: %3.E GeV Sigma %3.E Mean Area %3.E  \n",i,fBackground[i],fSigma[i],fMeanArea[i]);
95   } 
96 }
97
98 void AliAODJetEventBackground::Reset()  
99 {
100   //
101   // reset information of all data members
102   //
103   for(int i = 0;i < kMaxBackground;++i){
104     fBackground[i] = 0;
105     fSigma[i] = 0;
106     fMeanArea[i] = 0; 
107   } 
108 }