Laura++
3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
|
Go to the documentation of this file.
40 rootFileName_( rootFileName ),
41 rootTreeName_( rootTreeName ),
44 definedBranches_( kFALSE )
67 cerr << "ERROR in LauGenNtuple::createFileAndTree : Bad filename supplied, not creating file or tree."
73 cerr << "ERROR in LauGenNtuple::createFileAndTree : Problem opening file \""
74 << rootFileName_ << "\" for writing, not creating tree." << endl;
91 cerr << "ERROR in LauGenNtuple::addIntegerBranch : Already defined branches, can't add further ones."
101 cerr << "ERROR in LauGenNtuple::addDoubleBranch : Already defined branches, can't add further ones."
122 cerr << "ERROR in LauGenNtuple::getIntegerBranchValue : no such branch \"" << name << "\"."
134 cerr << "ERROR in LauGenNtuple::getDoubleBranchValue : no such branch \"" << name << "\"."
145 cerr << "ERROR in LauGenNtuple::defineBranches : Already defined branches, not doing it again."
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 );
157 TString name = iter->first;
158 Double_t* pointer = &( iter->second );
159 TString thirdPart( name );
169 cerr << "ERROR in LauGenNtuple::fillBranches : Tree not created, cannot fill branches."
190 cerr << "ERROR in LauGenNtuple::buildIndex : Tree not created, cannot build index." << endl;
193 return rootTree_->BuildIndex( majorName, minorName );
202 cerr << "ERROR in LauGenNtuple::writeOutGenResults : File not opened, can't write anything."
214 rootTree_->Write( "", TObject::kOverwrite );
223 cerr << "ERROR in LauGenNtuple::addFriendTree : Tree not created, cannot add friend." << endl;
226 rootTree_->AddFriend( rootTreeName, rootFileName );
virtual ~LauGenNtuple() Destructor.
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.
void writeOutGenResults() Write out the results from the generation.
void defineBranches() Define branches of the tree.
LauGenNtuple(const TString &rootFileName, const TString &rootTreeName) Constructor.
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.
void addIntegerBranch(const TString &name) Add integer branch to tree.
IntVarMap intVars_ Integer variables.
void deleteAndRecreateTree() Delete and recreate tree.
|