laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauEmbeddedData.hh
Go to the documentation of this file.
1 
2 /*
3 Copyright 2007 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 
35 #ifndef LAU_EMBEDDED_DATA
36 #define LAU_EMBEDDED_DATA
37 
38 #include "LauFitDataTree.hh"
39 
40 #include <set>
41 #include <vector>
42 
43 class LauKinematics;
44 class LauIsobarDynamics;
45 
47 
48  public:
50 
55  LauEmbeddedData( const TString& fileName, const TString& treeName, Bool_t allowReuseOfEvents );
56 
58  virtual ~LauEmbeddedData();
59 
61 
64  Bool_t findBranches();
65 
67 
70  UInt_t nBranches() const { return theDataTree_ ? theDataTree_->nBranches() : 0; }
71 
73 
76  UInt_t nEvents() const { return theDataTree_ ? theDataTree_->nEvents() : 0; }
77 
79 
82  UInt_t nUsedEvents() const { return usedEvents_.size(); }
83 
85 
88  Bool_t haveBranch( const TString& name ) const
89  {
90  return theDataTree_ ? theDataTree_->haveBranch( name ) : kFALSE;
91  }
92 
94 
97  void getEmbeddedEvent( LauKinematics* kinematics );
98 
100 
103  Bool_t getReweightedEvent( LauIsobarDynamics* dynamics );
104 
106 
110  Double_t getValue( const TString& name ) const;
111 
113 
117  LauFitData getValues( const std::vector<TString>& names ) const;
118 
120  void clearUsedList() { usedEvents_.clear(); }
121 
122  protected:
124 
127  Bool_t reuseEvents() const { return reuseEvents_; }
128 
129  private:
132 
135 
141  Bool_t reuseEvents_;
143  std::set<UInt_t> usedEvents_;
144 
145  ClassDef( LauEmbeddedData, 0 ) // a non-persistent bare-bones complex class
146 };
147 
148 #endif
virtual ~LauEmbeddedData()
Destructor.
UInt_t nBranches() const
Obtain the number of branches in the tree.
Double_t getValue(const TString &name) const
Get the value of a specified branch.
LauEmbeddedData & operator=(const LauEmbeddedData &rhs)
Copy assignment operator (not implemented)
Bool_t reuseEvents() const
Boolean determining whether events should be reused.
void clearUsedList()
Clear the list of used events.
File containing declaration of LauFitDataTree class.
Bool_t haveBranch(const TString &name) const
Boolean to determine whether branch exists.
Bool_t haveBranch(const TString &name) const
Check if the named branch is stored.
LauFitDataTree * theDataTree_
The structure containing the data.
Class to store the input fit variables.
UInt_t nUsedEvents() const
Retrieve the number of events that have already been sampled.
UInt_t nBranches() const
Retrieve the number of branches.
LauFitData theData_
The data for the currently retrieved event.
LauEmbeddedData(const TString &fileName, const TString &treeName, Bool_t allowReuseOfEvents)
Constructor.
Bool_t getReweightedEvent(LauIsobarDynamics *dynamics)
Retrieve an event from the data sample, applying an accept/reject based on the given DP model.
Bool_t reuseEvents_
Flag whether events can be reused.
UInt_t nEvents() const
Retrieve the number of events.
std::map< TString, Double_t > LauFitData
Type for holding event data.
void getEmbeddedEvent(LauKinematics *kinematics)
Retrieve an event from the data sample.
LauFitData getValues(const std::vector< TString > &names) const
Get values of specified branches.
Class for calculating 3-body kinematic quantities.
std::set< UInt_t > usedEvents_
Used events.
Bool_t findBranches()
Find and read the branches in data tree.
LauEmbeddedData(const LauEmbeddedData &rhs)
Copy constructor (not implemented)
Class to store the data for embedding in toy experiments.
Class for defining signal dynamics using the isobar model.
UInt_t nEvents() const
Retrieve the number of events.