laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauGenNtuple.cc
Go to the documentation of this file.
1 
2 /*
3 Copyright 2006 University of Warwick
4 
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8 
9  http://www.apache.org/licenses/LICENSE-2.0
10 
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 */
17 
18 /*
19 Laura++ package authors:
20 John Back
21 Paul Harrison
22 Thomas Latham
23 */
24 
29 #include <iostream>
30 using std::cerr;
31 using std::cout;
32 using std::endl;
33 
34 #include "LauGenNtuple.hh"
35 
36 #include "TFile.h"
37 #include "TTree.h"
38 
39 LauGenNtuple::LauGenNtuple( const TString& rootFileName, const TString& rootTreeName ) :
40  rootFileName_( rootFileName ),
41  rootTreeName_( rootTreeName ),
42  rootFile_( 0 ),
43  rootTree_( 0 ),
44  definedBranches_( kFALSE )
45 {
46  this->createFileAndTree();
47 }
48 
50 {
51  // seems that closing the file deletes the tree
52  // so only delete if the file is still open for some reason
53  if ( rootFile_ && rootFile_->IsOpen() ) {
54  delete rootTree_;
55  rootTree_ = 0;
56  }
57  delete rootFile_;
58  rootFile_ = 0;
59 }
60 
62 {
63  // first check whether we've already opened up the file or not
64  if ( ! rootFile_ ) {
65  // if not, first check the filename and if all ok create the file
66  if ( rootFileName_ == "" ) {
67  cerr << "ERROR in LauGenNtuple::createFileAndTree : Bad filename supplied, not creating file or tree."
68  << endl;
69  return;
70  }
71  rootFile_ = TFile::Open( rootFileName_, "recreate" );
72  if ( ! rootFile_ || rootFile_->IsZombie() || ! rootFile_->IsWritable() ) {
73  cerr << "ERROR in LauGenNtuple::createFileAndTree : Problem opening file \""
74  << rootFileName_ << "\" for writing, not creating tree." << endl;
75  return;
76  }
77  }
78  // check whether we've already created the tree
79  if ( ! rootTree_ ) {
80  // if not change to the file's directory and create the tree
81  rootFile_->cd();
82  rootTree_ = new TTree( rootTreeName_, rootTreeName_ );
83  rootTree_->SetDirectory( rootFile_ );
84  this->definedBranches( kFALSE );
85  }
86 }
87 
88 void LauGenNtuple::addIntegerBranch( const TString& name )
89 {
90  if ( this->definedBranches() ) {
91  cerr << "ERROR in LauGenNtuple::addIntegerBranch : Already defined branches, can't add further ones."
92  << endl;
93  return;
94  }
95  this->setIntegerBranchValue( name, 0 );
96 }
97 
98 void LauGenNtuple::addDoubleBranch( const TString& name )
99 {
100  if ( this->definedBranches() ) {
101  cerr << "ERROR in LauGenNtuple::addDoubleBranch : Already defined branches, can't add further ones."
102  << endl;
103  return;
104  }
105  this->setDoubleBranchValue( name, 0.0 );
106 }
107 
108 void LauGenNtuple::setIntegerBranchValue( const TString& name, Int_t value )
109 {
110  intVars_[name] = value;
111 }
112 
113 void LauGenNtuple::setDoubleBranchValue( const TString& name, Double_t value )
114 {
116 }
117 
118 Int_t LauGenNtuple::getIntegerBranchValue( const TString& name ) const
119 {
120  IntVarMap::const_iterator iter = intVars_.find( name );
121  if ( iter == intVars_.end() ) {
122  cerr << "ERROR in LauGenNtuple::getIntegerBranchValue : no such branch \"" << name << "\"."
123  << endl;
124  return -99;
125  } else {
126  return iter->second;
127  }
128 }
129 
130 Double_t LauGenNtuple::getDoubleBranchValue( const TString& name ) const
131 {
132  DoubleVarMap::const_iterator iter = doubleVars_.find( name );
133  if ( iter == doubleVars_.end() ) {
134  cerr << "ERROR in LauGenNtuple::getDoubleBranchValue : no such branch \"" << name << "\"."
135  << endl;
136  return -99.0;
137  } else {
138  return iter->second;
139  }
140 }
141 
143 {
144  if ( this->definedBranches() ) {
145  cerr << "ERROR in LauGenNtuple::defineBranches : Already defined branches, not doing it again."
146  << endl;
147  return;
148  }
149  for ( IntVarMap::iterator iter = intVars_.begin(); iter != intVars_.end(); ++iter ) {
150  TString name = iter->first;
151  Int_t* pointer = &( iter->second );
152  TString thirdPart( name );
153  thirdPart += "/I";
154  rootTree_->Branch( name, pointer, thirdPart );
155  }
156  for ( DoubleVarMap::iterator iter = doubleVars_.begin(); iter != doubleVars_.end(); ++iter ) {
157  TString name = iter->first;
158  Double_t* pointer = &( iter->second );
159  TString thirdPart( name );
160  thirdPart += "/D";
161  rootTree_->Branch( name, pointer, thirdPart );
162  }
163  this->definedBranches( kTRUE );
164 }
165 
167 {
168  if ( ! rootTree_ ) {
169  cerr << "ERROR in LauGenNtuple::fillBranches : Tree not created, cannot fill branches."
170  << endl;
171  return;
172  } else if ( ! this->definedBranches() ) {
173  this->defineBranches();
174  }
175  rootTree_->Fill();
176 }
177 
179 {
180  if ( rootTree_ ) {
181  delete rootTree_;
182  rootTree_ = 0;
183  }
184  this->createFileAndTree();
185 }
186 
187 Int_t LauGenNtuple::buildIndex( const TString& majorName, const TString& minorName )
188 {
189  if ( ! rootTree_ ) {
190  cerr << "ERROR in LauGenNtuple::buildIndex : Tree not created, cannot build index." << endl;
191  return -1;
192  }
193  return rootTree_->BuildIndex( majorName, minorName );
194 }
195 
197 {
198  // Write out the generated ntuple
199 
200  // Check that the file is open
201  if ( rootFile_ == 0 ) {
202  cerr << "ERROR in LauGenNtuple::writeOutGenResults : File not opened, can't write anything."
203  << endl;
204  return;
205  }
206 
207  // Check that the tree exists and if so then make sure we have the
208  // up to date pointer to the file since if it splits via the
209  // TTree::ChangeFile mechanism we're left with a dangling pointer
210  if ( rootTree_ != 0 ) {
211  rootFile_ = rootTree_->GetCurrentFile();
212  }
213  rootFile_->cd();
214  rootTree_->Write( "", TObject::kOverwrite );
215  rootFile_->Close();
216  delete rootFile_;
217  rootFile_ = 0;
218 }
219 
220 void LauGenNtuple::addFriendTree( const TString& rootFileName, const TString& rootTreeName )
221 {
222  if ( ! rootTree_ ) {
223  cerr << "ERROR in LauGenNtuple::addFriendTree : Tree not created, cannot add friend." << endl;
224  return;
225  }
226  rootTree_->AddFriend( rootTreeName, rootFileName );
227 }
virtual ~LauGenNtuple()
Destructor.
Definition: LauGenNtuple.cc:49
Bool_t definedBranches() const
Flags whether branches have been defined.
void setDoubleBranchValue(const TString &name, Double_t value)
Set value of a double branch.
Int_t getIntegerBranchValue(const TString &name) const
Get value of an integer branch.
TString rootTreeName_
Name of root tree.
Double_t value() const
The value of the parameter.
TString rootFileName_
Name of root file.
TTree * rootTree_
Root tree.
void addDoubleBranch(const TString &name)
Add double branch to tree.
Definition: LauGenNtuple.cc:98
void writeOutGenResults()
Write out the results from the generation.
void defineBranches()
Define branches of the tree.
LauGenNtuple(const TString &rootFileName, const TString &rootTreeName)
Constructor.
Definition: LauGenNtuple.cc:39
void setIntegerBranchValue(const TString &name, Int_t value)
Set value of an integer branch.
void fillBranches()
Fill branches in the ntuple.
void addFriendTree(const TString &rootFileName, const TString &rootTreeName)
Add a friend tree.
TFile * rootFile_
Root file.
File containing declaration of LauGenNtuple class.
Double_t getDoubleBranchValue(const TString &name) const
Get value of a double branch.
Int_t buildIndex(const TString &majorName, const TString &minorName="0")
Create an index table using leaves of the tree.
DoubleVarMap doubleVars_
Double variables.
const TString & name() const
The parameter name.
void createFileAndTree()
Create ntuple file and the tree.
Definition: LauGenNtuple.cc:61
void addIntegerBranch(const TString &name)
Add integer branch to tree.
Definition: LauGenNtuple.cc:88
IntVarMap intVars_
Integer variables.
void deleteAndRecreateTree()
Delete and recreate tree.