ATLAS Offline Software
Loading...
Searching...
No Matches
IParticleAssocFilter Class Reference

class to filter a collection of particles. More...

#include <IParticleAssocFilter.h>

Inheritance diagram for IParticleAssocFilter:
Collaboration diagram for IParticleAssocFilter:

Public Member Functions

 IParticleAssocFilter ()
 Default constructor:
 IParticleAssocFilter (const IParticleAssocFilter &rhs)
 Copy constructor:
virtual ~IParticleAssocFilter ()
 Destructor:
IParticleAssocFilteroperator= (const IParticleAssocFilter &rhs)
 Assignment operator:
virtual bool isAccepted (const IParticle *object, const IParticle *associated) const
 Main filter method.
double deltaPxMin () const
 Returns the minimum px required by the filter.
double deltaPxMax () const
 Returns the maximum px required by the filter.
double deltaPyMin () const
 Returns the minimum py required by the filter.
double deltaPyMax () const
 Returns the maximum py required by the filter.
double deltaPzMin () const
 Returns the minimum pz required by the filter.
double deltaPzMax () const
 Returns the maximum pz required by the filter.
double deltaEneMin () const
 Returns the minimum energy required by the filter.
double deltaEneMax () const
 Returns the maximum energy required by the filter.
double deltaEtaMin () const
 Returns the minimum eta required by the filter.
double deltaEtaMax () const
 Returns the maximum eta required by the filter.
double deltaPhiMin () const
 Returns the minimum phi required by the filter.
double deltaPhiMax () const
 Returns the maximum phi required by the filter.
double deltaMassMin () const
 Returns the minimum mass required by the filter.
double deltaMassMax () const
 Returns the maximum mass required by the filter.
double deltaPtMin () const
 Returns the minimum pt required by the filter.
double deltaPtMax () const
 Returns the maximum pt required by the filter.
double deltaRMin () const
 Returns the minimum deltaR required by the filter.
double deltaRMax () const
 Returns the maximum deltaR required by the filter.
virtual void reset ()
 Reset the range cuts for the internal variables (px,py,...) After calling this method, the filter will accept any association.
virtual void setFilter (const IFilterCuts *ifilter)
 Copies the IFilterCuts properties of the given object to the current IFilterCuts object (ie: it copies all the ranges in px,py,... to the current object)
void setDeltaPxMin (const double deltaPxMin)
void setDeltaPxMax (const double deltaPxMax)
void setDeltaPx (const double deltaPxMin, const double deltaPxMax)
void setDeltaPyMin (const double deltaPyMin)
void setDeltaPyMax (const double deltaPyMax)
void setDeltaPy (const double deltaPyMin, const double deltaPyMax)
void setDeltaPzMin (const double deltaPzMin)
void setDeltaPzMax (const double deltaPzMax)
void setDeltaPz (const double deltaPzMin, const double deltaPzMax)
void setDeltaEneMin (const double deltaEneMin)
void setDeltaEneMax (const double deltaEneMax)
void setDeltaEne (const double deltaEneMin, const double deltaEneMax)
void setDeltaEtaMin (const double deltaEtaMin)
void setDeltaEtaMax (const double deltaEtaMax)
void setDeltaEta (const double deltaEtaMin, const double deltaEtaMax)
void setDeltaPhiMin (const double deltaPhiMin)
void setDeltaPhiMax (const double deltaPhiMax)
void setDeltaPhi (const double deltaPhiMin, const double deltaPhiMax)
void setDeltaMassMin (const double massMin)
void setDeltaMassMax (const double massMax)
void setDeltaMass (const double deltaMassMin, const double deltaMassMax)
void setDeltaPtMin (const double deltaPtMin)
void setDeltaPtMax (const double deltaPtMax)
void setDeltaPt (const double deltaPtMin, const double deltaPtMax)
void setDeltaRMin (const double deltaRMin)
void setDeltaRMax (const double deltaRMax)
void setDeltaR (const double deltaRMin, const double deltaRMax)
void setDeltaThetaMin (const double deltaThetaMin)
void setDeltaThetaMax (const double deltaThetaMax)
void setDeltaTheta (const double deltaThetaMin, const double deltaThetaMax)
void setDeltaCosThetaMin (const double deltaCosThetaMin)
void setDeltaCosThetaMax (const double deltaCosThetaMax)
void setDeltaCosTheta (const double deltaCosThetaMin, const double deltaCosThetaMax)

Protected Attributes

FilterRange m_deltaPx
 Required range in px (min/max)
FilterRange m_deltaPy
 Required range in py (min/max)
FilterRange m_deltaPz
 Required range in pz (min/max)
FilterRange m_deltaEne
 Required range in energy (min/max)
FilterRange m_deltaEta
 Required range in eta (min/max)
PhiFilterRange m_deltaPhi
 Required range in phi (min/max)
FilterRange m_deltaMass
 Required range in mass (min/max)
FilterRange m_deltaPt
 Required range in pt (min/max)
FilterRange m_deltaR
 Required range in deltaR (min/max)
FilterRange m_deltaTheta
 Required range in theta (min/max)
FilterRange m_deltaCosTheta
 Required range in cos(theta) (min/max)

Detailed Description

class to filter a collection of particles.

One can construct a filter to associate 2 IParticles based on topological requirements. One can require associations in px, py, pz, energy, eta, phi, mass, pt, deltaR and cosTheta and specify min and max values for each of these variables.

Definition at line 28 of file IParticleAssocFilter.h.

Constructor & Destructor Documentation

◆ IParticleAssocFilter() [1/2]

IParticleAssocFilter::IParticleAssocFilter ( )

Default constructor:

Public methods:

Constructors

Definition at line 23 of file IParticleAssocFilter.cxx.

◆ IParticleAssocFilter() [2/2]

IParticleAssocFilter::IParticleAssocFilter ( const IParticleAssocFilter & rhs)

◆ ~IParticleAssocFilter()

IParticleAssocFilter::~IParticleAssocFilter ( )
virtual

Destructor:

Destructor.

Definition at line 43 of file IParticleAssocFilter.cxx.

43{}

Member Function Documentation

◆ deltaEneMax()

double AssocFilter< IParticle, IParticle >::deltaEneMax ( ) const
inherited

Returns the maximum energy required by the filter.

Definition at line 111 of file AssocFilter.h.

444{
445 return m_deltaEne.upper();
446}

◆ deltaEneMin()

double AssocFilter< IParticle, IParticle >::deltaEneMin ( ) const
inherited

Returns the minimum energy required by the filter.

Definition at line 107 of file AssocFilter.h.

438{
439 return m_deltaEne.lower();
440}

◆ deltaEtaMax()

double AssocFilter< IParticle, IParticle >::deltaEtaMax ( ) const
inherited

Returns the maximum eta required by the filter.

Definition at line 119 of file AssocFilter.h.

456{
457 return m_deltaEta.upper();
458}

◆ deltaEtaMin()

double AssocFilter< IParticle, IParticle >::deltaEtaMin ( ) const
inherited

Returns the minimum eta required by the filter.

Definition at line 115 of file AssocFilter.h.

450{
451 return m_deltaEta.lower();
452}

◆ deltaMassMax()

double AssocFilter< IParticle, IParticle >::deltaMassMax ( ) const
inherited

Returns the maximum mass required by the filter.

Definition at line 135 of file AssocFilter.h.

480{
481 return m_deltaMass.upper();
482}

◆ deltaMassMin()

double AssocFilter< IParticle, IParticle >::deltaMassMin ( ) const
inherited

Returns the minimum mass required by the filter.

Definition at line 131 of file AssocFilter.h.

474{
475 return m_deltaMass.lower();
476}

◆ deltaPhiMax()

double AssocFilter< IParticle, IParticle >::deltaPhiMax ( ) const
inherited

Returns the maximum phi required by the filter.

Definition at line 127 of file AssocFilter.h.

468{
469 return m_deltaPhi.upper();
470}

◆ deltaPhiMin()

double AssocFilter< IParticle, IParticle >::deltaPhiMin ( ) const
inherited

Returns the minimum phi required by the filter.

Definition at line 123 of file AssocFilter.h.

462{
463 return m_deltaPhi.lower();
464}

◆ deltaPtMax()

double AssocFilter< IParticle, IParticle >::deltaPtMax ( ) const
inherited

Returns the maximum pt required by the filter.

Definition at line 143 of file AssocFilter.h.

492{
493 return m_deltaPt.upper();
494}

◆ deltaPtMin()

double AssocFilter< IParticle, IParticle >::deltaPtMin ( ) const
inherited

Returns the minimum pt required by the filter.

Definition at line 139 of file AssocFilter.h.

486{
487 return m_deltaPt.lower();
488}

◆ deltaPxMax()

double AssocFilter< IParticle, IParticle >::deltaPxMax ( ) const
inherited

Returns the maximum px required by the filter.

Definition at line 87 of file AssocFilter.h.

408{
409 return m_deltaPx.upper();
410}

◆ deltaPxMin()

double AssocFilter< IParticle, IParticle >::deltaPxMin ( ) const
inherited

Returns the minimum px required by the filter.

Definition at line 83 of file AssocFilter.h.

402{
403 return m_deltaPx.lower();
404}

◆ deltaPyMax()

double AssocFilter< IParticle, IParticle >::deltaPyMax ( ) const
inherited

Returns the maximum py required by the filter.

Definition at line 95 of file AssocFilter.h.

420{
421 return m_deltaPy.upper();
422}

◆ deltaPyMin()

double AssocFilter< IParticle, IParticle >::deltaPyMin ( ) const
inherited

Returns the minimum py required by the filter.

Definition at line 91 of file AssocFilter.h.

414{
415 return m_deltaPy.lower();
416}

◆ deltaPzMax()

double AssocFilter< IParticle, IParticle >::deltaPzMax ( ) const
inherited

Returns the maximum pz required by the filter.

Definition at line 103 of file AssocFilter.h.

432{
433 return m_deltaPz.upper();
434}

◆ deltaPzMin()

double AssocFilter< IParticle, IParticle >::deltaPzMin ( ) const
inherited

Returns the minimum pz required by the filter.

Definition at line 99 of file AssocFilter.h.

426{
427 return m_deltaPz.lower();
428}

◆ deltaRMax()

double AssocFilter< IParticle, IParticle >::deltaRMax ( ) const
inherited

Returns the maximum deltaR required by the filter.

Definition at line 151 of file AssocFilter.h.

504{
505 return m_deltaR.upper();
506}

◆ deltaRMin()

double AssocFilter< IParticle, IParticle >::deltaRMin ( ) const
inherited

Returns the minimum deltaR required by the filter.

Definition at line 147 of file AssocFilter.h.

498{
499 return m_deltaR.lower();
500}

◆ isAccepted()

bool AssocFilter< IParticle, IParticle >::isAccepted ( const IParticle * object,
const IParticle * associated ) const
virtualinherited

Main filter method.

This method takes the decision whether or not the filter has to accept the association between both objects. It returns true or false accordingly.

Implements IAssocFilter< IParticle, IParticle >.

Definition at line 78 of file AssocFilter.h.

337{
338 bool isAccepted = true;
339
340 if ( m_deltaPx.isActive() ) {
342 m_deltaPx.isInRange( std::fabs( object->px() - associated->px() ) );
343 }
344
345 if ( m_deltaPy.isActive() ) {
347 m_deltaPy.isInRange( std::fabs( object->py() - associated->py() ) );
348 }
349
350 if ( m_deltaPz.isActive() ) {
352 m_deltaPz.isInRange( std::fabs( object->pz() - associated->pz() ) );
353 }
354
355 if ( m_deltaEne.isActive() ) {
357 m_deltaEne.isInRange( std::fabs( object->e() - associated->e() ) );
358 }
359
360 if ( m_deltaEta.isActive() ) {
362 m_deltaEta.isInRange( std::fabs(object->eta() - associated->eta()) );
363 }
364
365 if ( m_deltaPhi.isActive() ) {
367 m_deltaPhi.isInRange ( std::fabs(P4Helpers::deltaPhi(object,associated)) );
368 }
369
370 if ( m_deltaMass.isActive() ) {
372 m_deltaMass.isInRange( std::fabs( object->m() - associated->m() ) );
373 }
374
375 if ( m_deltaPt.isActive() ) {
377 m_deltaPt.isInRange ( std::fabs( object->pt() - associated->pt() ) );
378 }
379
380 if ( m_deltaR.isActive() ) {
382 m_deltaR.isInRange( P4Helpers::deltaR(object, associated ) );
383 }
384
385 /*
386 if ( m_deltaTheta.isActive() ) {
387 isAccepted = isAccepted &&
388 m_deltaTheta.isInRange( );
389 }
390
391 if ( m_deltaCosTheta.isActive() ) {
392 isAccepted = isAccepted &&
393 m_deltaCosTheta.isInRange( );
394 }
395 */
396
397 return isAccepted;
398}
(templated) class to filter a collection of T.
Definition AssocFilter.h:45
virtual bool isAccepted(const IParticle *object, const IParticle *associated) const

◆ operator=()

IParticleAssocFilter & IParticleAssocFilter::operator= ( const IParticleAssocFilter & rhs)

Assignment operator:

Definition at line 33 of file IParticleAssocFilter.cxx.

34{
35 if ( this != &rhs ) {
37 }
38 return *this;
39}
AssocFilter & operator=(const AssocFilter &rhs)
Assignment operator:

◆ reset()

void AssocFilter< IParticle, IParticle >::reset ( )
virtualinherited

Reset the range cuts for the internal variables (px,py,...) After calling this method, the filter will accept any association.

Implements IAssocFilter< IParticle, IParticle >.

Definition at line 160 of file AssocFilter.h.

513{
514 m_deltaR.includeAll();
515 m_deltaPx.includeAll();
516 m_deltaPy.includeAll();
517 m_deltaPz.includeAll();
518 m_deltaEne.includeAll();
519 m_deltaEta.includeAll();
520 m_deltaPhi.includeAll();
521 m_deltaMass.includeAll();
522 m_deltaPt.includeAll();
523 m_deltaTheta.includeAll();
524 m_deltaCosTheta.includeAll();
525}

◆ setDeltaCosTheta()

void AssocFilter< IParticle, IParticle >::setDeltaCosTheta ( const double deltaCosThetaMin,
const double deltaCosThetaMax )
inherited

Definition at line 211 of file AssocFilter.h.

762{
764}

◆ setDeltaCosThetaMax()

void AssocFilter< IParticle, IParticle >::setDeltaCosThetaMax ( const double deltaCosThetaMax)
inherited

Definition at line 210 of file AssocFilter.h.

755{
757}

◆ setDeltaCosThetaMin()

void AssocFilter< IParticle, IParticle >::setDeltaCosThetaMin ( const double deltaCosThetaMin)
inherited

Definition at line 209 of file AssocFilter.h.

749{
751}

◆ setDeltaEne()

void AssocFilter< IParticle, IParticle >::setDeltaEne ( const double deltaEneMin,
const double deltaEneMax )
inherited

Definition at line 182 of file AssocFilter.h.

629{
631}

◆ setDeltaEneMax()

void AssocFilter< IParticle, IParticle >::setDeltaEneMax ( const double deltaEneMax)
inherited

Definition at line 181 of file AssocFilter.h.

622{
623 m_deltaEne.setMax( deltaEneMax );
624}

◆ setDeltaEneMin()

void AssocFilter< IParticle, IParticle >::setDeltaEneMin ( const double deltaEneMin)
inherited

Definition at line 180 of file AssocFilter.h.

616{
617 m_deltaEne.setMin( deltaEneMin );
618}

◆ setDeltaEta()

void AssocFilter< IParticle, IParticle >::setDeltaEta ( const double deltaEtaMin,
const double deltaEtaMax )
inherited

Definition at line 186 of file AssocFilter.h.

648{
650}

◆ setDeltaEtaMax()

void AssocFilter< IParticle, IParticle >::setDeltaEtaMax ( const double deltaEtaMax)
inherited

Definition at line 185 of file AssocFilter.h.

641{
642 m_deltaEta.setMax(deltaEtaMax);
643}

◆ setDeltaEtaMin()

void AssocFilter< IParticle, IParticle >::setDeltaEtaMin ( const double deltaEtaMin)
inherited

Definition at line 184 of file AssocFilter.h.

635{
636 m_deltaEta.setMin(deltaEtaMin);
637}

◆ setDeltaMass()

void AssocFilter< IParticle, IParticle >::setDeltaMass ( const double deltaMassMin,
const double deltaMassMax )
inherited

Definition at line 194 of file AssocFilter.h.

◆ setDeltaMassMax()

void AssocFilter< IParticle, IParticle >::setDeltaMassMax ( const double massMax)
inherited

Definition at line 193 of file AssocFilter.h.

679{
681}

◆ setDeltaMassMin()

void AssocFilter< IParticle, IParticle >::setDeltaMassMin ( const double massMin)
inherited

Definition at line 192 of file AssocFilter.h.

673{
675}

◆ setDeltaPhi()

void AssocFilter< IParticle, IParticle >::setDeltaPhi ( const double deltaPhiMin,
const double deltaPhiMax )
inherited

Definition at line 190 of file AssocFilter.h.

667{
669}

◆ setDeltaPhiMax()

void AssocFilter< IParticle, IParticle >::setDeltaPhiMax ( const double deltaPhiMax)
inherited

Definition at line 189 of file AssocFilter.h.

660{
661 m_deltaPhi.setMax(deltaPhiMax);
662}

◆ setDeltaPhiMin()

void AssocFilter< IParticle, IParticle >::setDeltaPhiMin ( const double deltaPhiMin)
inherited

Definition at line 188 of file AssocFilter.h.

654{
655 m_deltaPhi.setMin(deltaPhiMin);
656}

◆ setDeltaPt()

void AssocFilter< IParticle, IParticle >::setDeltaPt ( const double deltaPtMin,
const double deltaPtMax )
inherited

Definition at line 198 of file AssocFilter.h.

705{
706 m_deltaPt.setRange( deltaPtMin, deltaPtMax );
707}

◆ setDeltaPtMax()

void AssocFilter< IParticle, IParticle >::setDeltaPtMax ( const double deltaPtMax)
inherited

Definition at line 197 of file AssocFilter.h.

698{
699 m_deltaPt.setMax(deltaPtMax);
700}

◆ setDeltaPtMin()

void AssocFilter< IParticle, IParticle >::setDeltaPtMin ( const double deltaPtMin)
inherited

Definition at line 196 of file AssocFilter.h.

692{
693 m_deltaPt.setMin(deltaPtMin);
694}

◆ setDeltaPx()

void AssocFilter< IParticle, IParticle >::setDeltaPx ( const double deltaPxMin,
const double deltaPxMax )
inherited

Definition at line 170 of file AssocFilter.h.

571{
572 m_deltaPx.setRange( deltaPxMin, deltaPxMax );
573}

◆ setDeltaPxMax()

void AssocFilter< IParticle, IParticle >::setDeltaPxMax ( const double deltaPxMax)
inherited

Definition at line 169 of file AssocFilter.h.

564{
565 m_deltaPx.setMax( deltaPxMax );
566}

◆ setDeltaPxMin()

void AssocFilter< IParticle, IParticle >::setDeltaPxMin ( const double deltaPxMin)
inherited

Definition at line 168 of file AssocFilter.h.

558{
559 m_deltaPx.setMin( deltaPxMin );
560}

◆ setDeltaPy()

void AssocFilter< IParticle, IParticle >::setDeltaPy ( const double deltaPyMin,
const double deltaPyMax )
inherited

Definition at line 174 of file AssocFilter.h.

590{
591 m_deltaPy.setRange( deltaPyMin, deltaPyMax );
592}

◆ setDeltaPyMax()

void AssocFilter< IParticle, IParticle >::setDeltaPyMax ( const double deltaPyMax)
inherited

Definition at line 173 of file AssocFilter.h.

583{
584 m_deltaPy.setMax( deltaPyMax );
585}

◆ setDeltaPyMin()

void AssocFilter< IParticle, IParticle >::setDeltaPyMin ( const double deltaPyMin)
inherited

Definition at line 172 of file AssocFilter.h.

577{
578 m_deltaPy.setMin( deltaPyMin );
579}

◆ setDeltaPz()

void AssocFilter< IParticle, IParticle >::setDeltaPz ( const double deltaPzMin,
const double deltaPzMax )
inherited

Definition at line 178 of file AssocFilter.h.

609{
610 m_deltaPz.setRange( deltaPzMin, deltaPzMax );
611}

◆ setDeltaPzMax()

void AssocFilter< IParticle, IParticle >::setDeltaPzMax ( const double deltaPzMax)
inherited

Definition at line 177 of file AssocFilter.h.

602{
603 m_deltaPz.setMax( deltaPzMax );
604}

◆ setDeltaPzMin()

void AssocFilter< IParticle, IParticle >::setDeltaPzMin ( const double deltaPzMin)
inherited

Definition at line 176 of file AssocFilter.h.

596{
597 m_deltaPz.setMin( deltaPzMin );
598}

◆ setDeltaR()

void AssocFilter< IParticle, IParticle >::setDeltaR ( const double deltaRMin,
const double deltaRMax )
inherited

Definition at line 202 of file AssocFilter.h.

724{
725 m_deltaR.setRange( deltaRMin, deltaRMax );
726}

◆ setDeltaRMax()

void AssocFilter< IParticle, IParticle >::setDeltaRMax ( const double deltaRMax)
inherited

Definition at line 201 of file AssocFilter.h.

717{
718 m_deltaR.setMax( deltaRMax );
719}

◆ setDeltaRMin()

void AssocFilter< IParticle, IParticle >::setDeltaRMin ( const double deltaRMin)
inherited

Definition at line 200 of file AssocFilter.h.

711{
712 m_deltaR.setMin( deltaRMin );
713}

◆ setDeltaTheta()

void AssocFilter< IParticle, IParticle >::setDeltaTheta ( const double deltaThetaMin,
const double deltaThetaMax )
inherited

Definition at line 206 of file AssocFilter.h.

743{
745}

◆ setDeltaThetaMax()

void AssocFilter< IParticle, IParticle >::setDeltaThetaMax ( const double deltaThetaMax)
inherited

Definition at line 205 of file AssocFilter.h.

736{
737 m_deltaTheta.setMax( deltaThetaMax );
738}

◆ setDeltaThetaMin()

void AssocFilter< IParticle, IParticle >::setDeltaThetaMin ( const double deltaThetaMin)
inherited

Definition at line 204 of file AssocFilter.h.

730{
731 m_deltaTheta.setMin( deltaThetaMin );
732}

◆ setFilter()

void AssocFilter< IParticle, IParticle >::setFilter ( const IFilterCuts * ifilter)
virtualinherited

Copies the IFilterCuts properties of the given object to the current IFilterCuts object (ie: it copies all the ranges in px,py,... to the current object)

Implements IFilterCuts.

Definition at line 166 of file AssocFilter.h.

529{
530 if ( ifilter ) {
532 dynamic_cast<const AssocFilter<OBJ,ASSO> *>(ifilter );
533
534 if ( assocFilter ) {
546 } else {
547 MsgStream log( Athena::getMessageSvc(), "AssocFilter" );
548 log << MSG::ERROR
549 << "Can't dynamic_cast " << ifilter << " to an AssocFilter"
550 << endmsg;
551 }
552 } //> ifilter is a valid pointer
553 return;
554}

Member Data Documentation

◆ m_deltaCosTheta

FilterRange AssocFilter< IParticle, IParticle >::m_deltaCosTheta
protectedinherited

Required range in cos(theta) (min/max)

Definition at line 263 of file AssocFilter.h.

◆ m_deltaEne

FilterRange AssocFilter< IParticle, IParticle >::m_deltaEne
protectedinherited

Required range in energy (min/max)

Definition at line 235 of file AssocFilter.h.

◆ m_deltaEta

FilterRange AssocFilter< IParticle, IParticle >::m_deltaEta
protectedinherited

Required range in eta (min/max)

Definition at line 239 of file AssocFilter.h.

◆ m_deltaMass

FilterRange AssocFilter< IParticle, IParticle >::m_deltaMass
protectedinherited

Required range in mass (min/max)

Definition at line 247 of file AssocFilter.h.

◆ m_deltaPhi

PhiFilterRange AssocFilter< IParticle, IParticle >::m_deltaPhi
protectedinherited

Required range in phi (min/max)

Definition at line 243 of file AssocFilter.h.

◆ m_deltaPt

FilterRange AssocFilter< IParticle, IParticle >::m_deltaPt
protectedinherited

Required range in pt (min/max)

Definition at line 251 of file AssocFilter.h.

◆ m_deltaPx

FilterRange AssocFilter< IParticle, IParticle >::m_deltaPx
protectedinherited

Required range in px (min/max)

Definition at line 223 of file AssocFilter.h.

◆ m_deltaPy

FilterRange AssocFilter< IParticle, IParticle >::m_deltaPy
protectedinherited

Required range in py (min/max)

Definition at line 227 of file AssocFilter.h.

◆ m_deltaPz

FilterRange AssocFilter< IParticle, IParticle >::m_deltaPz
protectedinherited

Required range in pz (min/max)

Definition at line 231 of file AssocFilter.h.

◆ m_deltaR

FilterRange AssocFilter< IParticle, IParticle >::m_deltaR
protectedinherited

Required range in deltaR (min/max)

Definition at line 255 of file AssocFilter.h.

◆ m_deltaTheta

FilterRange AssocFilter< IParticle, IParticle >::m_deltaTheta
protectedinherited

Required range in theta (min/max)

Definition at line 259 of file AssocFilter.h.


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