laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauMergeDataFiles.hh
Go to the documentation of this file.
1 
2 /*
3 Copyright 2008 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 
25 #include "TFile.h"
26 #include "TString.h"
27 #include "TTree.h"
28 
29 #include <cstdlib>
30 #include <map>
31 
44  public:
46 
51  LauMergeDataFiles( const TString& fileName1, const TString& fileName2, const TString& treeName );
52 
54  virtual ~LauMergeDataFiles();
55 
57 
60  void process( const TString& fileName );
61 
62  protected:
64  typedef std::map<TString, Double_t> LeafDoubleMap;
66  typedef std::map<TString, Int_t> LeafIntegerMap;
68  typedef std::map<Int_t, std::pair<Int_t, Int_t>> ExptsMap;
69 
71  void openInputFiles();
73  void setupInputTrees();
75  void setupOutputTree();
77  void findExperiments( TTree* tree, ExptsMap& exptsMap );
79  Bool_t checkExperimentMaps() const;
81  void readExperiment( TTree* tree, const ExptsMap::const_iterator& exptsMap, Int_t offset );
83  void writeFile();
84 
85  private:
87  TString fileName1_;
89  TString fileName2_;
91  TString treeName_;
92 
94  TFile* inputFile1_;
96  TFile* inputFile2_;
97 
99  TTree* inputTree1_;
101  TTree* inputTree2_;
102 
104  TFile* outputFile_;
106  TTree* outputTree_;
107 
108  // Tree variables
110  Int_t iExpt_;
113 
118 
123 
124  ClassDef( LauMergeDataFiles, 0 )
125 };
void findExperiments(TTree *tree, ExptsMap &exptsMap)
Determine the experiments stored a given tree.
TTree * inputTree2_
Input tree 2.
std::map< TString, Int_t > LeafIntegerMap
Type to relate leaf names with their integer value.
void process(const TString &fileName)
Do the merge.
TString fileName1_
Name of file 1.
std::map< Int_t, std::pair< Int_t, Int_t > > ExptsMap
Type to hold for each experiment the first and last entry numbers in a tree.
Bool_t checkExperimentMaps() const
Check that the experiments in each tree match.
TFile * outputFile_
Output file.
void setupOutputTree()
Create the structure of the output tree.
Int_t iEvtWithinExpt_
Storage for the event-within-experiment index variable.
TTree * outputTree_
Output tree.
LeafDoubleMap doubleVars_
Storage for double-precision leaves.
void readExperiment(TTree *tree, const ExptsMap::const_iterator &exptsMap, Int_t offset)
Read the entries for a given experiment from the given tree and store in the output tree.
TTree * inputTree1_
Input tree 1.
ExptsMap tree2Expts_
Experiment -> first and last tree entry for tree 2.
Utility class to allow the merging of data files on a expt-by-expt basis.
void openInputFiles()
Open the specified input files and check that the trees can be read.
LauMergeDataFiles(const TString &fileName1, const TString &fileName2, const TString &treeName)
Constructor.
virtual ~LauMergeDataFiles()
Destructor.
LeafIntegerMap integerVars_
Storage for integer leaves.
TString fileName2_
Name of file 2.
TFile * inputFile2_
Input file 2.
TFile * inputFile1_
Input file 1.
std::map< TString, Double_t > LeafDoubleMap
Type to relate leaf names with their double-precision value.
ExptsMap tree1Expts_
Experiment -> first and last tree entry for tree 1.
void writeFile()
Write the output file.
void setupInputTrees()
Read the structure of the input trees, create appropriate storage and set the branch addresses.
TString treeName_
Name of the tree.
Int_t iExpt_
Storage for the experiment index variable.