CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
ParticleAllocator Class Reference

#include <Particle.h>

Public Member Functions

void AddParticle (const Particle &particle, List_t &list)
 
void FreeList (List_t &list)
 
void FreeListNode (List_t &list, LPIT_t it)
 

Private Attributes

List_t fFreeNodes
 

Detailed Description

Definition at line 144 of file Particle.h.

Member Function Documentation

void ParticleAllocator::AddParticle ( const Particle particle,
List_t list 
)

Definition at line 109 of file Particle.cc.

References fFreeNodes, and AlCaHLTBitMon_ParallelJobs::p.

Referenced by Decay(), and gen::Hydjet2Hadronizer::generatePartonsAndHadronize().

109  {
110  if(fFreeNodes.empty())
111  list.push_back(p);
112  else {
113  list.splice(list.end(), fFreeNodes, fFreeNodes.begin());
114  list.back() = p;
115  }
116 }
List_t fFreeNodes
Definition: Particle.h:151
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run
void ParticleAllocator::FreeList ( List_t list)

Definition at line 122 of file Particle.cc.

References fFreeNodes, and list().

Referenced by gen::Hydjet2Hadronizer::generatePartonsAndHadronize().

122  {
123  fFreeNodes.splice(fFreeNodes.end(), list);
124 }
List_t fFreeNodes
Definition: Particle.h:151
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run
void ParticleAllocator::FreeListNode ( List_t list,
LPIT_t  it 
)

Definition at line 118 of file Particle.cc.

References fFreeNodes, and list().

118  {
119  fFreeNodes.splice(fFreeNodes.end(), list, it);
120 }
List_t fFreeNodes
Definition: Particle.h:151
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run

Member Data Documentation

List_t ParticleAllocator::fFreeNodes
private

Definition at line 151 of file Particle.h.

Referenced by AddParticle(), FreeList(), and FreeListNode().