BOSS
7.1.1
BESIII Offline Software System
Loading...
Searching...
No Matches
DCChargedVisibleList.cc
Go to the documentation of this file.
1
#ifndef DCHAIN_DCCHARGEDVISIBLELIST_CC
2
#define DCHAIN_DCCHARGEDVISIBLELIST_CC
3
// -*- C++ -*-
4
//
5
// Package: DChain
6
// Module: ChargedVisibleList
7
//
8
// Description: <one line class summary>
9
//
10
// Implimentation:
11
// <Notes on implimentation>
12
//
13
// Author: Simon Patton
14
// Created: Fri Oct 4 11:04:56 EDT 1996
15
// $Id: DCChargedVisibleList.cc,v 1.1.1.1 2009/03/03 06:06:56 maqm Exp $
16
//
17
// Revision history
18
//
19
// $Log: DCChargedVisibleList.cc,v $
20
// Revision 1.1.1.1 2009/03/03 06:06:56 maqm
21
// first import of DecayChain
22
//
23
// Revision 1.6 2006/01/11 20:28:36 cdj
24
// massive class renaming, addition of [] for selection and unit tests
25
//
26
// Revision 1.5 2003/08/01 13:48:43 mrs43
27
// changed plus and minus methods of DCChargedVisibleList to const
28
//
29
// Revision 1.4 2003/05/15 19:56:11 cdj
30
// revamped memory handling so always use a ReferenceHolder to deal with the reference counting
31
//
32
// Revision 1.3 2003/03/13 20:19:16 cleo3
33
// now compiles under Linux
34
//
35
// Revision 1.2 2000/12/30 19:43:32 cdj
36
// no more missing symbols under OSF1
37
//
38
// Revision 1.1.1.1 2000/12/18 22:16:55 cdj
39
// imported DChain
40
//
41
// Revision 1.14 1998/08/20 20:00:08 sjp
42
// Modified to use DChainBoolean
43
//
44
// Revision 1.13 1998/08/19 20:46:19 sjp
45
// Fixed comments and removed report references
46
//
47
// Revision 1.12 1998/04/17 19:14:46 sjp
48
// Modified to use latest type
49
//
50
// Revision 1.11 1997/09/17 20:05:34 sjp
51
// Removed filling to superclass
52
//
53
// Revision 1.10 1997/09/03 14:58:18 sjp
54
// Use new report.h and TBParticlePoint
55
//
56
// Revision 1.9 1997/08/28 07:00:17 sjp
57
// Modified files to handle complete templating
58
//
59
// Revision 1.8 1997/08/19 23:02:32 sjp
60
// Restructured package to be independent of Rock
61
//
62
// Revision 1.7 1997/08/19 15:55:28 sjp
63
// Modified list to have no dependence on any other
64
// structures except its contents, which must have
65
// certain `typedef' available to use.
66
//
67
// Revision 1.6 1997/08/15 21:33:00 sjp
68
// Updated to use <package>/<file>.h include structure.
69
// Updated to use bug flags specified in Experiement.h
70
//
71
// Revision 1.5 1997/01/31 20:17:28 sjp
72
// Modified to use the new `bug' include files
73
//
74
// Revision 1.4 1997/01/21 20:34:26 sjp
75
// Changed CPP flags and include because of library reorganization
76
//
77
// Revision 1.3 1996/12/20 21:15:57 sjp
78
// Ammended to allow for LabaledLists being reference counted.
79
// Added dropLink() for all created entries.
80
//
81
// Revision 1.2 1996/11/05 19:30:35 sjp
82
// Added definition for filling for TruthTable.
83
//
84
// Revision 1.1 1996/11/04 19:36:39 sjp
85
// New file for new `List' module
86
//
87
88
// system include files
89
#include <stdlib.h>
// required for 'exit'
90
91
// user include files
92
#include "
DecayChain/Function/DCSelectionFunction.h
"
93
#include "
DecayChain/Function/DCAnalysisFunction.h
"
94
#include "
DecayChain/Element/conjugation.h
"
95
#include "
DecayChain/Element/LabeledParticle.h
"
96
#include "
DecayChain/Iterator/MuteWholeItr.h
"
97
#include "
DecayChain/Iterator/WholeItr.h
"
98
#include "
DecayChain/List/LabeledParticleList.h
"
99
#include "
DecayChain/List/ChosenChargeList.h
"
100
101
#include "
DecayChain/List/DCChargedVisibleList.h
"
102
103
// STL include files
104
//#include <vector>
105
106
//
107
// constants, enums and typedefs
108
//
109
110
//
111
// static data member definitions
112
//
113
114
//
115
// constructors and destructor
116
//
117
118
template
<
class
Charged ,
class
Cand
id
ateClass >
119
DCChargedVisibleList< Charged , CandidateClass >::
120
DCChargedVisibleList
(
bool
( * pFunction )( Charged& ) ) :
121
m_function( pFunction ) ,
122
m_functionalObject( 0 )
123
{
124
}
125
126
template
<
class
Charged ,
class
Cand
id
ateClass >
127
DCChargedVisibleList< Charged , CandidateClass >::
128
DCChargedVisibleList
(
const
DCChargedVisibleList< Charged , CandidateClass >
& aOtherList ,
129
bool
( * pFunction )( Charged& ) ) :
130
dchain
::ChargedVisibleList<Charged, CandidateClass>(aOtherList, pFunction),
131
m_function( pFunction ) ,
132
m_functionalObject( 0 )
133
{
134
}
135
136
template
<
class
Charged ,
class
Cand
id
ateClass >
137
DCChargedVisibleList< Charged , CandidateClass >::
138
DCChargedVisibleList
(
DCSelectionFunction< Charged >
& aFunctionalObject ) :
139
m_function( 0 ) ,
140
m_functionalObject( &aFunctionalObject )
141
{
142
}
143
144
template
<
class
Charged ,
class
Cand
id
ateClass >
145
DCChargedVisibleList< Charged , CandidateClass >::
146
DCChargedVisibleList
(
const
DCChargedVisibleList< Charged , CandidateClass >
& aOtherList ,
147
DCSelectionFunction< Charged >
& aFunctionalObject ) :
148
dchain
::ChargedVisibleList<Charged,CandidateClass>(aOtherList,aFunctionalObject),
149
m_function( 0 ) ,
150
m_functionalObject( &aFunctionalObject )
151
{
152
}
153
154
template
<
class
Charged ,
class
Cand
id
ateClass >
155
DCChargedVisibleList< Charged , CandidateClass >::~DCChargedVisibleList
()
156
{
157
}
158
159
//
160
// assignment operators
161
//
162
163
template
<
class
Charged ,
class
Cand
id
ateClass >
164
const
DCChargedVisibleList< Charged , CandidateClass >
&
DCChargedVisibleList< Charged , CandidateClass >::operator=
(
const
DCChargedVisibleList< Charged , CandidateClass >
& aOtherList )
165
{
166
this->eraseContents() ;
167
fill
(aOtherList.
labeledCandidateList
()) ;
168
return
( *
this
) ;
169
}
170
171
//
172
// member functions
173
//
174
175
template
<
class
Charged ,
class
Cand
id
ateClass >
176
void
DCChargedVisibleList< Charged , CandidateClass >::fill
(
const
dchain::LabeledParticleList< Charged , CandidateClass >
& aList )
177
{
178
if
( 0 != m_function ) {
179
fill
(aList,
dchain::NewMaker<Charged>
(), m_function);
180
}
else
if
(m_functionalObject) {
181
fill
(aList,
dchain::NewMaker<Charged>
(), m_functionalObject);
182
}
else
{
183
fill
(aList,
dchain::NewMaker<Charged>
(),
dchain::SelectAll<Charged>
());
184
}
185
}
186
187
//
188
// const member functions
189
//
190
191
//
192
// static member functions
193
//
194
195
#endif
/* DCHAIN_DCCHARGEDVISIBLELIST_CC */
ChosenChargeList.h
DCAnalysisFunction.h
DCChargedVisibleList.h
DCSelectionFunction.h
LabeledParticleList.h
LabeledParticle.h
MuteWholeItr.h
fill
void fill(NTuple::Array< double > &nt_p4, const HepLorentzVector &p4)
Definition
MyUtil.cxx:3
WholeItr.h
DCChargedVisibleList
Definition
DCChargedVisibleList.h:98
DCChargedVisibleList::DCChargedVisibleList
DCChargedVisibleList(bool(*pFunction)(Charged &)=0)
Definition
DCChargedVisibleList.cc:120
DCChargedVisibleList::~DCChargedVisibleList
virtual ~DCChargedVisibleList()
Definition
DCChargedVisibleList.cc:155
DCChargedVisibleList::fill
void fill(const dchain::LabeledParticleList< Charged, CandidateClass > &aList)
Definition
DCChargedVisibleList.cc:176
DCChargedVisibleList::operator=
const DCChargedVisibleList< Charged, CandidateClass > & operator=(const DCChargedVisibleList< Charged, CandidateClass > &aOtherList)
Definition
DCChargedVisibleList.cc:164
DCSelectionFunction< Charged >
dchain::ChargedVisibleList::labeledCandidateList
virtual LabeledParticleList< Charged, CandidateClass > & labeledCandidateList()
Definition
ChargedVisibleList.cc:196
dchain::LabeledParticleList
Definition
LabeledParticleList.h:113
conjugation.h
dchain
Definition
children.h:16
dchain::NewMaker
Definition
MakerTrait.h:38
dchain::SelectAll
Definition
SelectAll.h:39
7.1.1
Event
DecayChain
DecayChain-00-04-01
DecayChain
List
Template
DCChargedVisibleList.cc
Generated by
1.12.0