BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
THistogram Class Reference

A class for a histogram used in tracking. More...

#include <THistogram.h>

Public Member Functions

 THistogram (unsigned nBins)
 Constructor.
virtual ~THistogram ()
 Destructor.
void dump (const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
 dumps debug information.
const AList< TMLink > *const bin (unsigned i) const
 returns a pointer to i'th AList<TMLink>.
const AList< TMLink > *const bin (int i) const
 returns a pointer to i'th AList<TMLink>.
unsigned nBin (unsigned i) const
 returns number in i'th bin.
unsigned nBins (void) const
 returns # of bins.
AList< TMLinkcontents (unsigned center, unsigned width) const
 returns an AList of TMLinks within 'center' bin +- 'width' bin region.
AList< TMLinkcontents (int start, int end) const
 returns an AList of TMLinks from 'start' bin to 'end' bin region.
const AList< TMLink > & contents (void) const
 returns an AList<TMLink> of all contents.
AList< TSegment0clusters0 (void) const
 returns an AList<TSegment0> of clusters.
AList< TSegmentclusters (void) const
 returns an AList<TSegment0> of clusters.
AList< TSegment0segments0 (void) const
 returns an AList<TSegment0> using clusters() function.
AList< TSegmentsegments (void) const
 returns an AList<TSegment0> using clusters() function.
void fillX (const AList< TMLink > &links)
 fills with hits.
void fillY (const AList< TMLink > &links)
 fills with hits.
void fillPhi (const AList< TMLink > &links)
 fills with hits.
void remove (const AList< TMLink > &links)
 removes links.
void mask (unsigned binN)
 masks a bin. Masked bin will not be returned by ::findPeak.
void unmask (void)
 remove masks.
 THistogram (unsigned nBins)
 Constructor.
virtual ~THistogram ()
 Destructor.
void dump (const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
 dumps debug information.
const AList< TMLink > *const bin (unsigned i) const
 returns a pointer to i'th AList<TMLink>.
const AList< TMLink > *const bin (int i) const
 returns a pointer to i'th AList<TMLink>.
unsigned nBin (unsigned i) const
 returns number in i'th bin.
unsigned nBins (void) const
 returns # of bins.
AList< TMLinkcontents (unsigned center, unsigned width) const
 returns an AList of TMLinks within 'center' bin +- 'width' bin region.
AList< TMLinkcontents (int start, int end) const
 returns an AList of TMLinks from 'start' bin to 'end' bin region.
const AList< TMLink > & contents (void) const
 returns an AList<TMLink> of all contents.
AList< TSegment0clusters0 (void) const
 returns an AList<TSegment0> of clusters.
AList< TSegmentclusters (void) const
 returns an AList<TSegment0> of clusters.
AList< TSegment0segments0 (void) const
 returns an AList<TSegment0> using clusters() function.
AList< TSegmentsegments (void) const
 returns an AList<TSegment0> using clusters() function.
void fillX (const AList< TMLink > &links)
 fills with hits.
void fillY (const AList< TMLink > &links)
 fills with hits.
void fillPhi (const AList< TMLink > &links)
 fills with hits.
void remove (const AList< TMLink > &links)
 removes links.
void mask (unsigned binN)
 masks a bin. Masked bin will not be returned by ::findPeak.
void unmask (void)
 remove masks.
 THistogram (unsigned nBins)
 Constructor.
virtual ~THistogram ()
 Destructor.
void dump (const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
 dumps debug information.
const AList< TMLink > *const bin (unsigned i) const
 returns a pointer to i'th AList<TMLink>.
const AList< TMLink > *const bin (int i) const
 returns a pointer to i'th AList<TMLink>.
unsigned nBin (unsigned i) const
 returns number in i'th bin.
unsigned nBins (void) const
 returns # of bins.
AList< TMLinkcontents (unsigned center, unsigned width) const
 returns an AList of TMLinks within 'center' bin +- 'width' bin region.
AList< TMLinkcontents (int start, int end) const
 returns an AList of TMLinks from 'start' bin to 'end' bin region.
const AList< TMLink > & contents (void) const
 returns an AList<TMLink> of all contents.
AList< TSegment0clusters0 (void) const
 returns an AList<TSegment0> of clusters.
AList< TSegmentclusters (void) const
 returns an AList<TSegment0> of clusters.
AList< TSegment0segments0 (void) const
 returns an AList<TSegment0> using clusters() function.
AList< TSegmentsegments (void) const
 returns an AList<TSegment0> using clusters() function.
void fillX (const AList< TMLink > &links)
 fills with hits.
void fillY (const AList< TMLink > &links)
 fills with hits.
void fillPhi (const AList< TMLink > &links)
 fills with hits.
void remove (const AList< TMLink > &links)
 removes links.
void mask (unsigned binN)
 masks a bin. Masked bin will not be returned by ::findPeak.
void unmask (void)
 remove masks.

Detailed Description

A class for a histogram used in tracking.

Definition at line 34 of file InstallArea/x86_64-el9-gcc13-dbg/include/TrkReco/THistogram.h.

Constructor & Destructor Documentation

◆ THistogram() [1/3]

THistogram::THistogram ( unsigned nBins)

Constructor.

Definition at line 19 of file THistogram.cxx.

19 : _nBins( nBins ) {
20 _binSize = 2. * M_PI / (float)_nBins;
21 _bins = (unsigned*)malloc( _nBins * sizeof( unsigned ) );
22 _masks = (bool*)malloc( _nBins * sizeof( bool ) );
23 _links = (AList<TMLink>**)malloc( _nBins * sizeof( AList<TMLink>* ) );
24 for ( unsigned i = 0; i < _nBins; i++ )
25 {
26 _bins[i] = 0;
27 _masks[i] = false;
28 _links[i] = new AList<TMLink>;
29 }
30}
#define M_PI
Definition TConstant.h:4
unsigned nBins(void) const
returns # of bins.

◆ ~THistogram() [1/3]

THistogram::~THistogram ( )
virtual

Destructor.

Definition at line 32 of file THistogram.cxx.

32 {
33 free( _bins );
34 free( _masks );
35 for ( unsigned i = 0; i < _nBins; i++ ) delete _links[i];
36 free( _links );
37}

◆ THistogram() [2/3]

THistogram::THistogram ( unsigned nBins)

Constructor.

◆ ~THistogram() [2/3]

virtual THistogram::~THistogram ( )
virtual

Destructor.

◆ THistogram() [3/3]

THistogram::THistogram ( unsigned nBins)

Constructor.

◆ ~THistogram() [3/3]

virtual THistogram::~THistogram ( )
virtual

Destructor.

Member Function Documentation

◆ bin() [1/6]

const AList< TMLink > *const THistogram::bin ( int i) const
inline

returns a pointer to i'th AList<TMLink>.

Definition at line 125 of file InstallArea/x86_64-el9-gcc13-dbg/include/TrkReco/THistogram.h.

125 {
126 while ( i < 0 ) i += _nBins;
127 return _links[i % _nBins];
128}

◆ bin() [2/6]

const AList< TMLink > *const THistogram::bin ( int i) const

returns a pointer to i'th AList<TMLink>.

◆ bin() [3/6]

const AList< TMLink > *const THistogram::bin ( int i) const

returns a pointer to i'th AList<TMLink>.

◆ bin() [4/6]

const AList< TMLink > *const THistogram::bin ( unsigned i) const
inline

returns a pointer to i'th AList<TMLink>.

Definition at line 120 of file InstallArea/x86_64-el9-gcc13-dbg/include/TrkReco/THistogram.h.

120 {
121 if ( i < _nBins ) return _links[i];
122 return 0;
123}

Referenced by contents().

◆ bin() [5/6]

const AList< TMLink > *const THistogram::bin ( unsigned i) const

returns a pointer to i'th AList<TMLink>.

◆ bin() [6/6]

const AList< TMLink > *const THistogram::bin ( unsigned i) const

returns a pointer to i'th AList<TMLink>.

◆ clusters() [1/3]

AList< TSegment > THistogram::clusters ( void ) const

returns an AList<TSegment0> of clusters.

Definition at line 230 of file THistogram.cxx.

230 {
231 AList<TSegment> list;
232 // std::cout<<"enter clusters"<<std::endl;
233 //...Serach for empty bin...
234 unsigned begin = 0;
235 while ( _bins[begin] > 0 ) begin++;
236 if ( begin == _nBins ) return list;
237
238 //...Start searching...
239 unsigned loop = 0;
240 while ( loop < _nBins )
241 {
242 ++loop;
243 unsigned id = ( begin + loop ) % _nBins;
244 if ( _bins[id] )
245 {
246 unsigned size = 0;
247 TSegment* c = new TSegment();
248 while ( _bins[id] )
249 {
250 if ( _bins[id] ) ++size;
251 c->append( *_links[id] );
252 ++loop;
253 id = ( begin + loop ) % _nBins;
254 if ( loop == _nBins ) break;
255 }
256 list.append( c );
257 }
258 }
259 return list;
260}
void append(TMLink &)
appends a TMLink.

Referenced by segments().

◆ clusters() [2/3]

AList< TSegment > THistogram::clusters ( void ) const

returns an AList<TSegment0> of clusters.

◆ clusters() [3/3]

AList< TSegment > THistogram::clusters ( void ) const

returns an AList<TSegment0> of clusters.

◆ clusters0() [1/3]

AList< TSegment0 > THistogram::clusters0 ( void ) const

returns an AList<TSegment0> of clusters.

Definition at line 160 of file THistogram.cxx.

160 {
161 AList<TSegment0> list;
162
163 //...Serach for empty bin...
164 unsigned begin = 0;
165 while ( _bins[begin] > 0 ) begin++;
166 if ( begin == _nBins ) return list;
167
168 //...Start searching...
169 unsigned loop = 0;
170 while ( loop < _nBins )
171 {
172 ++loop;
173 unsigned id = ( begin + loop ) % _nBins;
174 if ( _bins[id] )
175 {
176 unsigned size = 0;
177 TSegment0* c = new TSegment0();
178 while ( _bins[id] )
179 {
180 if ( _bins[id] ) ++size;
181 c->append( *_links[id] );
182 ++loop;
183 id = ( begin + loop ) % _nBins;
184 if ( loop == _nBins ) break;
185 }
186 list.append( c );
187 }
188 }
189 return list;
190}

Referenced by TFastFinder::doit(), TConformalFinder0::findClusters(), TConformalFinder0::findClusters2(), and segments0().

◆ clusters0() [2/3]

AList< TSegment0 > THistogram::clusters0 ( void ) const

returns an AList<TSegment0> of clusters.

◆ clusters0() [3/3]

AList< TSegment0 > THistogram::clusters0 ( void ) const

returns an AList<TSegment0> of clusters.

◆ contents() [1/9]

AList< TMLink > THistogram::contents ( int start,
int end ) const

returns an AList of TMLinks from 'start' bin to 'end' bin region.

Definition at line 154 of file THistogram.cxx.

154 {
155 AList<TMLink> links;
156 for ( int i = start; i <= end; i++ ) links.append( *bin( i ) );
157 return links;
158}
const AList< TMLink > *const bin(unsigned i) const
returns a pointer to i'th AList<TMLink>.

◆ contents() [2/9]

AList< TMLink > THistogram::contents ( int start,
int end ) const

returns an AList of TMLinks from 'start' bin to 'end' bin region.

◆ contents() [3/9]

AList< TMLink > THistogram::contents ( int start,
int end ) const

returns an AList of TMLinks from 'start' bin to 'end' bin region.

◆ contents() [4/9]

AList< TMLink > THistogram::contents ( unsigned center,
unsigned width ) const

returns an AList of TMLinks within 'center' bin +- 'width' bin region.

Definition at line 147 of file THistogram.cxx.

147 {
148 AList<TMLink> links;
149 for ( int i = -(int)width; i <= (int)width; i++ )
150 { links.append( *bin( (int)center + i ) ); }
151 return links;
152}
*******INTEGER m_nBinMax INTEGER m_NdiMax !No of bins in histogram for cell exploration division $ !Last vertex $ !Last active cell $ !Last cell in buffer $ !No of sampling when dividing cell $ !No of function total $ !Flag for random ceel for $ !Flag for type of for WtMax $ !Flag which decides whether vertices are included in the sampling $ entire domain is hyp !Maximum effective eevents per bin
Definition FoamA.h:85

◆ contents() [5/9]

AList< TMLink > THistogram::contents ( unsigned center,
unsigned width ) const

returns an AList of TMLinks within 'center' bin +- 'width' bin region.

◆ contents() [6/9]

AList< TMLink > THistogram::contents ( unsigned center,
unsigned width ) const

returns an AList of TMLinks within 'center' bin +- 'width' bin region.

◆ contents() [7/9]

const AList< TMLink > & THistogram::contents ( void ) const
inline

returns an AList<TMLink> of all contents.

Definition at line 138 of file InstallArea/x86_64-el9-gcc13-dbg/include/TrkReco/THistogram.h.

138{ return _all; }

◆ contents() [8/9]

const AList< TMLink > & THistogram::contents ( void ) const

returns an AList<TMLink> of all contents.

◆ contents() [9/9]

const AList< TMLink > & THistogram::contents ( void ) const

returns an AList<TMLink> of all contents.

◆ dump() [1/3]

void THistogram::dump ( const std::string & message = std::string( "" ),
const std::string & prefix = std::string( "" ) ) const

dumps debug information.

Definition at line 39 of file THistogram.cxx.

39 {
40 std::cout << pre;
41 std::cout << "THistogram dump:#bins=" << _nBins << std::endl;
42 unsigned nLoops = _nBins / 15 + 1;
43 unsigned n0 = 0;
44 unsigned n1 = 0;
45 for ( unsigned i = 0; i < nLoops; i++ )
46 {
47 for ( unsigned j = 0; j < 15; j++ )
48 {
49 if ( n0 == _nBins ) break;
50 printf( "%4d", n0 );
51 ++n0;
52 }
53 std::cout << std::endl;
54 for ( unsigned j = 0; j < 15; j++ )
55 {
56 if ( n1 == _nBins ) break;
57 if ( !_masks[n1] ) printf( "%4d", _bins[n1] );
58 else printf( "-%3d", _bins[n1] );
59 ++n1;
60 }
61 std::cout << std::endl;
62 }
63
64 if ( msg.find( "detail" ) != std::string::npos )
65 {
66 for ( unsigned i = 0; i < _nBins; i++ )
67 {
68 std::cout << "bin " << i << " : ";
69 for ( unsigned j = 0; j < _links[i]->length(); j++ )
70 { std::cout << ( *_links[i] )[j]->wire()->name() << ","; }
71 std::cout << std::endl;
72 }
73 }
74
75 return;
76}
int n1
Definition SD0Tag.cxx:58

◆ dump() [2/3]

void THistogram::dump ( const std::string & message = std::string(""),
const std::string & prefix = std::string("") ) const

dumps debug information.

◆ dump() [3/3]

void THistogram::dump ( const std::string & message = std::string(""),
const std::string & prefix = std::string("") ) const

dumps debug information.

◆ fillPhi() [1/3]

void THistogram::fillPhi ( const AList< TMLink > & links)

fills with hits.

Definition at line 113 of file THistogram.cxx.

113 {
114 _all = (AList<TMLink>&)links;
115 unsigned nLinks = links.length();
116 double offset = _binSize / 4.;
117 for ( unsigned i = 0; i < nLinks; i++ )
118 {
119 TMLink* l = links[i];
120 const HepPoint3D& p = l->position();
121 float phi = atan2( p.y(), p.x() ) + M_PI;
122 // std::cout<<"atan "<<atan2(-1., -1.)<<std::endl;
123 unsigned pos = (unsigned)floor( ( phi + offset ) / _binSize );
124
125 // std::cout <<"layer "<<l->wire()->layerId()<<" cell "<<l->wire()->localId()
126 // <<" x "<<p.x()<<" y "<<p.y()<<" pos "<<pos<<" xypos hit
127 //"<<l->hit()->xyPosition()<<" xypos wire "<<l->wire()->xyPosition()<<" drift
128 //"<<l->hit()->drift(0)<< "+-" <<l->hit()->dDrift(0)<<std::endl; std::cout<<"binsize
129 //"<<_binSize<<" offset "<<offset<<" phi "<<phi<<std::endl;
130 //...Why is this needed?...
131 pos %= _nBins;
132
133 ++_bins[pos];
134 _links[pos]->append( l );
135 }
136}
HepGeom::Point3D< double > HepPoint3D

◆ fillPhi() [2/3]

void THistogram::fillPhi ( const AList< TMLink > & links)

fills with hits.

◆ fillPhi() [3/3]

void THistogram::fillPhi ( const AList< TMLink > & links)

fills with hits.

◆ fillX() [1/3]

void THistogram::fillX ( const AList< TMLink > & links)

fills with hits.

Definition at line 78 of file THistogram.cxx.

78 {
79 _all = (AList<TMLink>&)links;
80 unsigned nLinks = links.length();
81 double offset = _binSize / 4.;
82 for ( unsigned i = 0; i < nLinks; i++ )
83 {
84 TMLink* l = links[i];
85 const HepPoint3D& p = l->position();
86 unsigned pos = (unsigned)floor( ( p.x() + offset ) / _binSize );
87
88 //...Why is this needed?...
89 pos %= _nBins;
90
91 ++_bins[pos];
92 _links[pos]->append( l );
93 }
94}

Referenced by TFastFinder::doit(), and TConformalFinder0::findSegments().

◆ fillX() [2/3]

void THistogram::fillX ( const AList< TMLink > & links)

fills with hits.

◆ fillX() [3/3]

void THistogram::fillX ( const AList< TMLink > & links)

fills with hits.

◆ fillY() [1/3]

void THistogram::fillY ( const AList< TMLink > & links)

fills with hits.

Definition at line 96 of file THistogram.cxx.

96 {
97 _all = (AList<TMLink>&)links;
98 unsigned nLinks = links.length();
99 for ( unsigned i = 0; i < nLinks; i++ )
100 {
101 TMLink* l = links[i];
102 const HepPoint3D& p = l->position();
103 unsigned pos = (unsigned)floor( p.y() / _binSize );
104
105 //...Why is this needed?...
106 pos %= _nBins;
107
108 ++_bins[pos];
109 _links[pos]->append( l );
110 }
111}

◆ fillY() [2/3]

void THistogram::fillY ( const AList< TMLink > & links)

fills with hits.

◆ fillY() [3/3]

void THistogram::fillY ( const AList< TMLink > & links)

fills with hits.

◆ mask() [1/3]

void THistogram::mask ( unsigned binN)
inline

masks a bin. Masked bin will not be returned by ::findPeak.

Definition at line 132 of file InstallArea/x86_64-el9-gcc13-dbg/include/TrkReco/THistogram.h.

132{ _masks[a] = true; }

◆ mask() [2/3]

void THistogram::mask ( unsigned binN)

masks a bin. Masked bin will not be returned by ::findPeak.

◆ mask() [3/3]

void THistogram::mask ( unsigned binN)

masks a bin. Masked bin will not be returned by ::findPeak.

◆ nBin() [1/3]

unsigned THistogram::nBin ( unsigned i) const
inline

returns number in i'th bin.

Definition at line 140 of file InstallArea/x86_64-el9-gcc13-dbg/include/TrkReco/THistogram.h.

140 {
141 if ( i < _nBins ) return _bins[i];
142 return 0;
143}

◆ nBin() [2/3]

unsigned THistogram::nBin ( unsigned i) const

returns number in i'th bin.

◆ nBin() [3/3]

unsigned THistogram::nBin ( unsigned i) const

returns number in i'th bin.

◆ nBins() [1/3]

unsigned THistogram::nBins ( void ) const
inline

returns # of bins.

Definition at line 130 of file InstallArea/x86_64-el9-gcc13-dbg/include/TrkReco/THistogram.h.

130{ return _nBins; }

Referenced by THistogram().

◆ nBins() [2/3]

unsigned THistogram::nBins ( void ) const

returns # of bins.

◆ nBins() [3/3]

unsigned THistogram::nBins ( void ) const

returns # of bins.

◆ remove() [1/3]

void THistogram::remove ( const AList< TMLink > & links)

removes links.

Definition at line 138 of file THistogram.cxx.

138 {
139 for ( unsigned i = 0; i < _nBins; i++ )
140 {
141 _links[i]->remove( links );
142 _bins[i] = _links[i]->length();
143 }
144 _all.remove( links );
145}

◆ remove() [2/3]

void THistogram::remove ( const AList< TMLink > & links)

removes links.

◆ remove() [3/3]

void THistogram::remove ( const AList< TMLink > & links)

removes links.

◆ segments() [1/3]

AList< TSegment > THistogram::segments ( void ) const

returns an AList<TSegment0> using clusters() function.

Definition at line 262 of file THistogram.cxx.

262 {
263 // yuany
264 /*
265 for (unsigned i = 0; i < _nBins; i++) {
266 std::cout<<"i "<<i<<" bins[i] "<<_bins[i]<<std::endl;
267 }
268 */
269 //...Obtain raw clusters...
270 AList<TSegment> list = clusters();
271 unsigned n = list.length();
272 if ( n == 0 ) return list;
273
274 //...Examine each cluster...
275 AList<TSegment> splitted;
276 for ( unsigned i = 0; i < n; i++ )
277 {
278 TSegment* c = list[i];
279
280#ifdef TRKRECO_DEBUG_DETAIL
281 std::cout << " base segment : ";
282 c->dump( "hits" );
283#endif
284
285 AList<TSegment> newClusters = c->split();
286 if ( newClusters.length() == 0 )
287 {
288#ifdef TRKRECO_DEBUG_DETAIL
289 std::cout << " ... Solving dual hits" << std::endl;
290#endif
291 c->solveDualHits();
292 continue;
293 }
294
295 list.append( newClusters );
296 splitted.append( c );
297#ifdef TRKRECO_DEBUG_DETAIL
298 c->dump( "hits", " " );
299 std::cout << " ... splitted as" << std::endl;
300 for ( unsigned j = 0; j < newClusters.length(); j++ )
301 {
302 std::cout << " " << j << " : ";
303 newClusters[j]->dump( "hits" );
304 }
305#endif
306 }
307 list.remove( splitted );
308 HepAListDeleteAll( splitted );
309
310 // yuany
311 // n = list.length();
312 // for (unsigned i = 0; i < n; i++) {
313 // TSegment * c = list[i];
314 // std::cout << " base segment : ";
315 // c->dump("hits");
316 // }
317
318 return list;
319}
const Int_t n
AList< TSegment > clusters(void) const
returns an AList<TSegment0> of clusters.
void dump(const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
dumps debug information.
Definition TSegment.cxx:113
AList< TSegment > split(void) const
Definition TSegment.cxx:406
int solveDualHits(void)
Definition TSegment.cxx:778

◆ segments() [2/3]

AList< TSegment > THistogram::segments ( void ) const

returns an AList<TSegment0> using clusters() function.

◆ segments() [3/3]

AList< TSegment > THistogram::segments ( void ) const

returns an AList<TSegment0> using clusters() function.

◆ segments0() [1/3]

AList< TSegment0 > THistogram::segments0 ( void ) const

returns an AList<TSegment0> using clusters() function.

Definition at line 192 of file THistogram.cxx.

192 {
193
194 //...Obtain raw clusters...
195 AList<TSegment0> list = clusters0();
196 unsigned n = list.length();
197 if ( n == 0 ) return list;
198
199 //...Examine each cluster...
200 AList<TSegment0> splitted;
201 for ( unsigned i = 0; i < n; i++ )
202 {
203 TSegment0* c = list[i];
204
205 AList<TSegment0> newClusters = c->split();
206 if ( newClusters.length() == 0 )
207 {
208 c->solveDualHits();
209 continue;
210 }
211
212 list.append( newClusters );
213 splitted.append( c );
214#ifdef TRKRECO_DEBUG_DETAIL
215 c->dump( "hits", " " );
216 std::cout << " ... splitted as" << std::endl;
217 for ( unsigned j = 0; j < newClusters.length(); j++ )
218 {
219 std::cout << " " << j << " : ";
220 newClusters[j]->dump( "hits" );
221 }
222#endif
223 }
224 list.remove( splitted );
225 HepAListDeleteAll( splitted );
226
227 return list;
228}
AList< TSegment0 > clusters0(void) const
returns an AList<TSegment0> of clusters.
void dump(const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
dumps debug information.
Definition TSegment0.cxx:49
int solveDualHits(void)
AList< TSegment0 > split(void) const

◆ segments0() [2/3]

AList< TSegment0 > THistogram::segments0 ( void ) const

returns an AList<TSegment0> using clusters() function.

◆ segments0() [3/3]

AList< TSegment0 > THistogram::segments0 ( void ) const

returns an AList<TSegment0> using clusters() function.

◆ unmask() [1/3]

void THistogram::unmask ( void )
inline

remove masks.

Definition at line 134 of file InstallArea/x86_64-el9-gcc13-dbg/include/TrkReco/THistogram.h.

134 {
135 for ( unsigned i = 0; i < _nBins; i++ ) _masks[i] = false;
136}

◆ unmask() [2/3]

void THistogram::unmask ( void )

remove masks.

◆ unmask() [3/3]

void THistogram::unmask ( void )

remove masks.


The documentation for this class was generated from the following files: