CGEM BOSS
6.6.5.h
BESIII Offline Software System
Loading...
Searching...
No Matches
ChosenChargeList.cc
Go to the documentation of this file.
1
#ifndef DCHAIN_CHOSENCHARGELIST_CC
2
#define DCHAIN_CHOSENCHARGELIST_CC
3
// -*- C++ -*-
4
//
5
// Package: DChain
6
// Module: ChosenChargeList
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: ChosenChargeList.cc,v 1.1.1.1 2009/03/03 06:06:56 maqm Exp $
16
//
17
// Revision history
18
//
19
// $Log: ChosenChargeList.cc,v $
20
// Revision 1.1.1.1 2009/03/03 06:06:56 maqm
21
// first import of DecayChain
22
//
23
// Revision 1.1 2006/01/11 20:28:34 cdj
24
// massive class renaming, addition of [] for selection and unit tests
25
//
26
// Revision 1.3 2003/05/15 19:56:11 cdj
27
// revamped memory handling so always use a ReferenceHolder to deal with the reference counting
28
//
29
// Revision 1.2 2003/03/13 20:19:16 cleo3
30
// now compiles under Linux
31
//
32
// Revision 1.1.1.1 2000/12/18 22:16:55 cdj
33
// imported DChain
34
//
35
// Revision 1.12 1998/08/20 20:00:09 sjp
36
// Modified to use DChainBoolean
37
//
38
// Revision 1.11 1998/08/19 20:46:20 sjp
39
// Fixed comments and removed report references
40
//
41
// Revision 1.10 1998/04/17 19:14:47 sjp
42
// Modified to use latest type
43
//
44
// Revision 1.9 1997/09/03 14:58:20 sjp
45
// Use new report.h and TBParticlePoint
46
//
47
// Revision 1.8 1997/08/28 07:00:19 sjp
48
// Modified files to handle complete templating
49
//
50
// Revision 1.7 1997/08/19 23:02:34 sjp
51
// Restructured package to be independent of Rock
52
//
53
// Revision 1.6 1997/08/19 16:16:48 sjp
54
// Changed Template's Parameter for symmetry with Neutrals
55
//
56
// Revision 1.5 1997/08/15 21:33:02 sjp
57
// Updated to use <package>/<file>.h include structure.
58
// Updated to use bug flags specified in Experiement.h
59
//
60
// Revision 1.4 1997/01/31 20:17:30 sjp
61
// Modified to use the new `bug' include files
62
//
63
// Revision 1.3 1997/01/21 20:34:29 sjp
64
// Changed CPP flags and include because of library reorganization
65
//
66
// Revision 1.2 1996/12/20 21:15:59 sjp
67
// Ammended to allow for LabaledLists being reference counted.
68
// Added dropLink() for all created entries.
69
//
70
// Revision 1.1 1996/11/04 19:36:41 sjp
71
// New file for new `List' module
72
//
73
74
// system include files
75
#include <stdlib.h>
// required for 'exit'
76
77
// user include files
78
#include "
DecayChain/Function/DCAnalysisFunction.h
"
79
#include "
DecayChain/Function/DCConjugateFunction.h
"
80
#include "
DecayChain/Element/conjugation.h
"
81
#include "
DecayChain/Element/LabeledParticle.h
"
82
#include "
DecayChain/Iterator/MuteWholeItr.h
"
83
#include "
DecayChain/Iterator/WholeItr.h
"
84
#include "
DecayChain/Iterator/PartialItr.h
"
85
#include "
DecayChain/List/LabeledParticleList.h
"
86
87
#include "
DecayChain/List/ChosenChargeList.h
"
88
89
//
90
// constants, enums and typedefs
91
//
92
namespace
dchain
{
93
//
94
// static data member definitions
95
//
96
97
//
98
// constructors and destructor
99
//
100
template
<
class
Charged ,
class
Cand
id
ateClass >
101
ChosenChargeList< Charged , CandidateClass >::ChosenChargeList
(
dchain::LabeledParticleList< Charged , CandidateClass >
& aLabeledDecayList ,
102
const
conjugation::Label
aLabel ) :
103
ConjugateList
< CandidateClass >( aLabel ) ,
104
m_list( &aLabeledDecayList )
105
{
106
}
107
108
template
<
class
Charged ,
class
Cand
id
ateClass >
109
ChosenChargeList< Charged , CandidateClass >::~ChosenChargeList
()
110
{
111
}
112
113
//
114
// assignment operators
115
//
116
// template < class Charged , class CandidateClass >
117
// const ChosenChargeList< Charged , CandidateClass >& ChosenChargeList< Charged , CandidateClass >::operator=( const ChosenChargeList< Charged , CandidateClass >& aOtherList )
118
// {
119
// }
120
121
//
122
// member functions
123
//
124
template
<
class
Charged ,
class
Cand
id
ateClass >
125
typename
ChosenChargeList< Charged , CandidateClass >::iterator
ChosenChargeList< Charged , CandidateClass >::particle_begin
()
126
{
127
return
( m_list->begin() ) ;
128
}
129
130
template
<
class
Charged ,
class
Cand
id
ateClass >
131
typename
ChosenChargeList< Charged , CandidateClass >::iterator
ChosenChargeList< Charged , CandidateClass >::particle_end
()
132
{
133
return
( m_list->end() ) ;
134
}
135
136
template
<
class
Charged ,
class
Cand
id
ateClass >
137
dchain::LabeledCandidateList< CandidateClass >
&
ChosenChargeList< Charged , CandidateClass >::labeledCandidateList
()
138
{
139
return
( *m_list ) ;
140
}
141
142
//
143
// const member functions
144
//
145
template
<
class
Charged ,
class
Cand
id
ateClass >
146
typename
ChosenChargeList< Charged , CandidateClass >::const_iterator
ChosenChargeList< Charged , CandidateClass >::particle_begin
()
const
147
{
148
// Need to cast to 'const' to get the right function call
149
return
( (*(
const
dchain::LabeledParticleList< Charged , CandidateClass >
*)(m_list.pointer())).begin() ) ;
150
}
151
152
template
<
class
Charged ,
class
Cand
id
ateClass >
153
typename
ChosenChargeList< Charged , CandidateClass >::const_iterator
ChosenChargeList< Charged , CandidateClass >::particle_end
()
const
154
{
155
// Need to cast to 'const' to get the right function call
156
return
( (*(
const
dchain::LabeledParticleList< Charged , CandidateClass >
*)(m_list.pointer())).end() ) ;
157
}
158
159
template
<
class
Charged ,
class
Cand
id
ateClass >
160
typename
ChosenChargeList< Charged , CandidateClass >::const_partial_iterator
ChosenChargeList< Charged , CandidateClass >::partial_particle_begin
()
const
161
{
162
// Need to cast to 'const' to get the right function call
163
return
( (*(
const
dchain::LabeledParticleList< Charged , CandidateClass >
*)(m_list.pointer())).begin( this->label() ) ) ;
164
}
165
166
template
<
class
Charged ,
class
Cand
id
ateClass >
167
typename
ChosenChargeList< Charged , CandidateClass >::const_partial_iterator
ChosenChargeList< Charged , CandidateClass >::partial_particle_end
()
const
168
{
169
// Need to cast to 'const' to get the right function call
170
return
( (*(
const
dchain::LabeledParticleList< Charged , CandidateClass >
*)(m_list.pointer())).end( this->label() ) ) ;
171
}
172
173
template
<
class
Charged ,
class
Cand
id
ateClass >
174
const
dchain::LabeledCandidateList< CandidateClass >
&
ChosenChargeList< Charged , CandidateClass >::labeledCandidateList
()
const
175
{
176
return
( *m_list ) ;
177
}
178
179
//
180
// static member functions
181
//
182
}
183
184
#endif
/* DCHAIN_CHOSENCHARGELIST_CC */
ChosenChargeList.h
DCAnalysisFunction.h
DCConjugateFunction.h
LabeledParticleList.h
LabeledParticle.h
MuteWholeItr.h
PartialItr.h
WholeItr.h
dchain::ChosenChargeList
Definition
ChosenChargeList.h:55
dchain::ChosenChargeList::~ChosenChargeList
virtual ~ChosenChargeList()
Definition
ChosenChargeList.cc:109
dchain::ChosenChargeList::particle_end
iterator particle_end()
Definition
ChosenChargeList.cc:131
dchain::ChosenChargeList::partial_particle_begin
const_partial_iterator partial_particle_begin() const
Definition
ChosenChargeList.cc:160
dchain::ChosenChargeList::particle_begin
iterator particle_begin()
Definition
ChosenChargeList.cc:125
dchain::ChosenChargeList::partial_particle_end
const_partial_iterator partial_particle_end() const
Definition
ChosenChargeList.cc:167
dchain::ChosenChargeList::labeledCandidateList
virtual dchain::LabeledCandidateList< CandidateClass > & labeledCandidateList()
Definition
ChosenChargeList.cc:137
dchain::ConjugateList
Definition
ConjugateList.h:84
dchain::LabeledCandidateList
Definition
LabeledCandidateList.h:94
dchain::LabeledParticleList
Definition
LabeledParticleList.h:113
dchain::MuteWholeItr
Definition
NeutralVisibleList.h:88
dchain::PartialItr
Definition
NeutralVisibleList.h:90
dchain::WholeItr
Definition
NeutralVisibleList.h:89
conjugation.h
dchain::conjugation::Label
Label
Definition
conjugation.h:39
dchain
Definition
children.h:16
6.6.5.h
Event
DecayChain
DecayChain-00-00-03-slc6tag
DecayChain
List
Template
ChosenChargeList.cc
Generated by
1.12.0