CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Public Attributes | Private Attributes
GenParticleProducer Class Reference
Inheritance diagram for GenParticleProducer:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

int chargeTimesThree (int) const
 
bool convertParticle (reco::GenParticle &cand, const HepMC::GenParticle *part)
 
bool fillDaughters (reco::GenParticleCollection &cand, const HepMC::GenParticle *part, size_t index)
 
bool fillIndices (const HepMC::GenEvent *mc, std::vector< const HepMC::GenParticle * > &particles, std::vector< int > &barCodeVector, int offset)
 
 GenParticleProducer (const edm::ParameterSet &)
 constructor More...
 
virtual void produce (edm::Event &e, const edm::EventSetup &)
 process one event More...
 
 ~GenParticleProducer ()
 destructor More...
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Public Attributes

std::map< int, size_t > barcodes_
 
reco::GenParticleRefProd ref_
 

Private Attributes

bool abortOnUnknownPDGCode_
 unknown code treatment flag More...
 
std::vector< int > chargeM_
 
std::map< int, int > chargeMap_
 
std::vector< int > chargeP_
 charge indices More...
 
bool doSubEvent_
 input & output modes More...
 
bool firstEvent_
 whether the first event was looked at More...
 
bool saveBarCodes_
 save bar-codes More...
 
edm::InputTag src_
 source collection name More...
 
bool useCF_
 
std::vector< std::string > vectorSrc_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Definition at line 25 of file GenParticleProducer.cc.

Constructor & Destructor Documentation

GenParticleProducer::GenParticleProducer ( const edm::ParameterSet cfg)

constructor

Definition at line 85 of file GenParticleProducer.cc.

References doSubEvent_, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), saveBarCodes_, src_, useCF_, and vectorSrc_.

85  :
86  firstEvent_(true),
87  abortOnUnknownPDGCode_( cfg.getUntrackedParameter<bool>( "abortOnUnknownPDGCode", true ) ),
88  saveBarCodes_( cfg.getUntrackedParameter<bool>( "saveBarCodes", false ) ),
90  doSubEvent_(cfg.getUntrackedParameter<bool>( "doSubEvent", false )),
91  useCF_(cfg.getUntrackedParameter<bool>( "useCrossingFrame", false ))
92 {
93  produces<GenParticleCollection>();
94  if( saveBarCodes_ ) {
95  std::string alias( cfg.getParameter<std::string>( "@module_label" ) );
96  produces<vector<int> >().setBranchAlias( alias + "BarCodes" );
97  }
98 
99  if(doSubEvent_){
100  vectorSrc_ = cfg.getParameter<std::vector<std::string> >( "srcVector" );
101  // produces<SubEventMap>();
102  }else if(useCF_) src_ = cfg.getUntrackedParameter<InputTag>( "src" , InputTag("mix","generator"));
103  else src_ = cfg.getParameter<InputTag>( "src" );
104 
105 }
T getParameter(std::string const &) const
bool abortOnUnknownPDGCode_
unknown code treatment flag
T getUntrackedParameter(std::string const &, T const &) const
edm::InputTag src_
source collection name
std::vector< int > chargeP_
charge indices
bool firstEvent_
whether the first event was looked at
bool doSubEvent_
input &amp; output modes
std::vector< int > chargeM_
bool saveBarCodes_
save bar-codes
std::vector< std::string > vectorSrc_
static const int PDGCacheMax
GenParticleProducer::~GenParticleProducer ( )

destructor

Definition at line 107 of file GenParticleProducer.cc.

107  {
108 }

Member Function Documentation

int GenParticleProducer::chargeTimesThree ( int  id) const

Definition at line 110 of file GenParticleProducer.cc.

References abortOnUnknownPDGCode_, abs, chargeM_, chargeMap_, chargeP_, edm::hlt::Exception, f, edm::errors::LogicError, RecoTau_DiTaus_pt_20-420_cfg::ParticleID, and PDGCacheMax.

Referenced by convertParticle().

110  {
111  if( std::abs( id ) < PDGCacheMax )
112  return id > 0 ? chargeP_[ id ] : chargeM_[ - id ];
113  map<int, int>::const_iterator f = chargeMap_.find( id );
114  if ( f == chargeMap_.end() ) {
117  << "invalid PDG id: " << id << endl;
118  else
119  return HepPDT::ParticleID(id).threeCharge();
120  }
121  return f->second;
122 }
bool abortOnUnknownPDGCode_
unknown code treatment flag
std::vector< int > chargeP_
charge indices
#define abs(x)
Definition: mlp_lapack.h:159
double f[11][100]
std::map< int, int > chargeMap_
std::vector< int > chargeM_
static const int PDGCacheMax
bool GenParticleProducer::convertParticle ( reco::GenParticle cand,
const HepMC::GenParticle *  part 
)

Definition at line 275 of file GenParticleProducer.cc.

References chargeTimesThree(), mmToCm, p4, benchmark_cfg::pdgId, reco::GenParticle::setCollisionId(), reco::LeafCandidate::setP4(), reco::LeafCandidate::setPdgId(), reco::LeafCandidate::setStatus(), reco::LeafCandidate::setThreeCharge(), reco::LeafCandidate::setVertex(), and v.

Referenced by produce().

275  {
276  Candidate::LorentzVector p4( part->momentum() );
277  int pdgId = part->pdg_id();
278  cand.setThreeCharge( chargeTimesThree( pdgId ) );
279  cand.setPdgId( pdgId );
280  cand.setStatus( part->status() );
281  cand.setP4( p4 );
282  cand.setCollisionId(0);
283  const GenVertex * v = part->production_vertex();
284  if ( v != 0 ) {
285  ThreeVector vtx = v->point3d();
286  Candidate::Point vertex( vtx.x() * mmToCm, vtx.y() * mmToCm, vtx.z() * mmToCm );
287  cand.setVertex( vertex );
288  } else {
289  cand.setVertex( Candidate::Point( 0, 0, 0 ) );
290  }
291  return true;
292 }
void setCollisionId(int s)
Definition: GenParticle.h:38
virtual void setStatus(int status)
set status word
virtual void setP4(const LorentzVector &p4)
set 4-momentum
int chargeTimesThree(int) const
virtual void setThreeCharge(Charge qx3)
set electric charge
double p4[4]
Definition: TauolaWrapper.h:92
virtual void setVertex(const Point &vertex)
set vertex
static const double mmToCm
part
Definition: HCALResponse.h:21
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:39
virtual void setPdgId(int pdgId)
math::XYZPoint Point
point in the space
Definition: Candidate.h:43
mathSSE::Vec4< T > v
bool GenParticleProducer::fillDaughters ( reco::GenParticleCollection cand,
const HepMC::GenParticle *  part,
size_t  index 
)

Definition at line 294 of file GenParticleProducer.cc.

References barcodes_, configurableAnalysis::GenParticle, getHLTprescales::index, m, ref_, and edm::second().

Referenced by produce().

294  {
295 
296  const GenVertex * productionVertex = part->production_vertex();
297  size_t numberOfMothers = productionVertex->particles_in_size();
298  if ( numberOfMothers > 0 ) {
299  GenVertex::particles_in_const_iterator motherIt = productionVertex->particles_in_const_begin();
300  for( ; motherIt != productionVertex->particles_in_const_end(); motherIt++) {
301  const HepMC::GenParticle * mother = * motherIt;
302  size_t m = barcodes_.find( mother->barcode() )->second;
303  cands[ m ].addDaughter( GenParticleRef( ref_, index ) );
304  cands[ index ].addMother( GenParticleRef( ref_, m ) );
305  }
306  }
307 
308  return true;
309 }
std::map< int, size_t > barcodes_
edm::Ref< edm::HepMCProduct, HepMC::GenParticle > GenParticleRef
U second(std::pair< T, U > const &p)
reco::GenParticleRefProd ref_
part
Definition: HCALResponse.h:21
bool GenParticleProducer::fillIndices ( const HepMC::GenEvent *  mc,
std::vector< const HepMC::GenParticle * > &  particles,
std::vector< int > &  barCodeVector,
int  offset 
)

Definition at line 311 of file GenParticleProducer.cc.

References barcodes_, begin, end, configurableAnalysis::GenParticle, evf::evtn::offset(), and L1TEmulatorMonitor_cff::p.

Referenced by produce().

311  {
312  size_t idx = offset;
313  HepMC::GenEvent::particle_const_iterator begin = mc->particles_begin(), end = mc->particles_end();
314  for( HepMC::GenEvent::particle_const_iterator p = begin; p != end; ++ p ) {
315  const HepMC::GenParticle * particle = * p;
316  size_t barCode_this_event = particle->barcode();
317  size_t barCode = barCode_this_event + offset;
318  if( barcodes_.find(barCode) != barcodes_.end() )
319  throw cms::Exception( "WrongReference" )
320  << "barcodes are duplicated! " << endl;
321  particles[idx] = particle;
322  barCodeVector[idx] = barCode;
323  barcodes_.insert( make_pair(barCode_this_event, idx ++) );
324  }
325  return true;
326 }
std::map< int, size_t > barcodes_
#define end
Definition: vmac.h:38
unsigned int offset(bool)
#define begin
Definition: vmac.h:31
void GenParticleProducer::produce ( edm::Event e,
const edm::EventSetup es 
)
virtual

process one event

fill indices

Implements edm::EDProducer.

Definition at line 124 of file GenParticleProducer.cc.

References abs, barcodes_, chargeM_, chargeMap_, chargeP_, convertParticle(), doSubEvent_, edm::hlt::Exception, fillDaughters(), fillIndices(), firstEvent_, configurableAnalysis::GenParticle, edm::Event::getByLabel(), edm::EventSetup::getData(), edm::HepMCProduct::GetEvent(), MixCollection< T >::getObject(), edm::Event::getRefBeforePut(), patZpeak::handle, i, edm::RefProd< T >::id(), edm::errors::InvalidReference, LogDebug, evf::evtn::offset(), L1TEmulatorMonitor_cff::p, RecoTau_DiTaus_pt_20-420_cfg::ParticleID, PDGCacheMax, benchmark_cfg::pdgId, edm::Handle< T >::product(), edm::Event::put(), ref_, reco::CompositeRefCandidateT< D >::resetDaughters(), saveBarCodes_, MixCollection< T >::size(), findQualityFiles::size, src_, useCF_, and vectorSrc_.

124  {
125 
126  if (firstEvent_) {
128  es.getData( pdt );
129  for( HepPDT::ParticleDataTable::const_iterator p = pdt->begin(); p != pdt->end(); ++ p ) {
130  const HepPDT::ParticleID & id = p->first;
131  int pdgId = id.pid(), apdgId = std::abs( pdgId );
132  int q3 = id.threeCharge();
133  if ( apdgId < PDGCacheMax && pdgId > 0 ) {
134  chargeP_[ apdgId ] = q3;
135  chargeM_[ apdgId ] = -q3;
136  } else if ( apdgId < PDGCacheMax ) {
137  chargeP_[ apdgId ] = -q3;
138  chargeM_[ apdgId ] = q3;
139  } else {
140  chargeMap_[ pdgId ] = q3;
141  chargeMap_[ -pdgId ] = -q3;
142  }
143  }
144  firstEvent_ = false;
145  }
146 
147  barcodes_.clear();
148 
149  size_t totalSize = 0;
150  const GenEvent * mc = 0;
151  std::vector<Handle<HepMCProduct> > heps;
152  MixCollection<HepMCProduct>* cfhepmcprod = 0;
153  size_t npiles = vectorSrc_.size();
154 
155  if(useCF_){
157  evt.getByLabel(InputTag("mix","generator"),cf);
158  cfhepmcprod = new MixCollection<HepMCProduct>(cf.product());
159  npiles = cfhepmcprod->size();
160  for(unsigned int icf = 0; icf < npiles; ++icf){
161  totalSize += cfhepmcprod->getObject(icf).GetEvent()->particles_size();
162  }
163  }else if (doSubEvent_){
164  for(size_t i = 0; i < npiles; ++i){
165  // cout<<"Tag "<<vectorSrc_[i]<<endl;
167  heps.push_back(handle);
168  evt.getByLabel( vectorSrc_[i], heps[i] );
169  totalSize += heps[i]->GetEvent()->particles_size();
170  }
171  }else{
173  evt.getByLabel( src_, mcp );
174  mc = mcp->GetEvent();
175  if( mc == 0 )
177  << "HepMC has null pointer to GenEvent" << endl;
178  totalSize = mc->particles_size();
179  }
180 
181  // initialise containers
182  const size_t size = totalSize;
183  vector<const HepMC::GenParticle *> particles( size );
184  auto_ptr<GenParticleCollection> candsPtr( new GenParticleCollection( size ) );
185  // auto_ptr<SubEventMap> subsPtr( new SubEventMap() );
186  auto_ptr<vector<int> > barCodeVector( new vector<int>( size ) );
187  ref_ = evt.getRefBeforePut<GenParticleCollection>();
188  GenParticleCollection & cands = * candsPtr;
189  // SubEventMap & subs = *subsPtr;
190  size_t offset = 0;
191  size_t suboffset = 0;
192 
194  if(doSubEvent_ || useCF_){
195  for(size_t i = 0; i < npiles; ++i){
196  barcodes_.clear();
197  if(useCF_) mc = cfhepmcprod->getObject(i).GetEvent();
198  else mc = heps[i]->GetEvent();
199 
200  //Look whether heavy ion/signal event
201  bool isHI = false;
202  const HepMC::HeavyIon * hi = mc->heavy_ion();
203  if(hi && hi->Ncoll_hard() > 1) isHI = true;
204  size_t num_particles = mc->particles_size();
205  fillIndices(mc, particles, *barCodeVector, offset);
206  // fill output collection and save association
207  for( size_t i = offset; i < offset + num_particles; ++ i ) {
208 
209  const HepMC::GenParticle * part = particles[ i ];
210  reco::GenParticle & cand = cands[ i ];
211  // convert HepMC::GenParticle to new reco::GenParticle
212  convertParticle(cand, part);
213  cand.resetDaughters( ref_.id() );
214  }
215 
216  for( size_t d = offset; d < offset + num_particles; ++ d ) {
217  const HepMC::GenParticle * part = particles[ d ];
218  const GenVertex * productionVertex = part->production_vertex();
219  int sub_id = 0;
220  if ( productionVertex != 0 ) {
221  sub_id = productionVertex->id();
222  if(!isHI) sub_id = 0;
223  // search barcode map and attach daughters
224  fillDaughters(cands,part,d);
225  }else{
226  const GenVertex * endVertex = part->end_vertex();
227  if(endVertex != 0) sub_id = endVertex->id();
228  else throw cms::Exception( "SubEventID" )<<"SubEvent not determined. Particle has no production and no end vertex!"<<endl;
229  }
230  if(sub_id < 0) sub_id = 0;
231  int new_id = sub_id + suboffset;
232  GenParticleRef dref( ref_, d );
233  // subs.insert(dref,new_id); // For SubEventMap
234  cands[d].setCollisionId(new_id); // For new GenParticle
235  LogDebug("VertexId")<<"SubEvent offset 3 : "<<suboffset;
236  }
237  int nsub = -2;
238  if(isHI){
239  nsub = hi->Ncoll_hard()+1;
240  suboffset += nsub;
241  }else{
242  suboffset += 1;
243  }
244  offset += num_particles;
245  }
246  }else{
247  fillIndices(mc, particles, *barCodeVector, 0);
248 
249  // fill output collection and save association
250  for( size_t i = 0; i < particles.size(); ++ i ) {
251  const HepMC::GenParticle * part = particles[ i ];
252  reco::GenParticle & cand = cands[ i ];
253  // convert HepMC::GenParticle to new reco::GenParticle
254  convertParticle(cand, part);
255  cand.resetDaughters( ref_.id() );
256  }
257 
258  // fill references to daughters
259  for( size_t d = 0; d < cands.size(); ++ d ) {
260  const HepMC::GenParticle * part = particles[ d ];
261  const GenVertex * productionVertex = part->production_vertex();
262  // search barcode map and attach daughters
263  if ( productionVertex != 0 ) fillDaughters(cands,part,d);
264  cands[d].setCollisionId(0);
265  }
266  }
267 
268  evt.put( candsPtr );
269  if(saveBarCodes_) evt.put( barCodeVector );
270  // if(doSubEvent_) evt.put(subsPtr); // For SubEventMap
271  if(cfhepmcprod) delete cfhepmcprod;
272 
273 }
#define LogDebug(id)
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
int i
Definition: DBlmapReader.cc:9
bool fillDaughters(reco::GenParticleCollection &cand, const HepMC::GenParticle *part, size_t index)
edm::InputTag src_
source collection name
std::vector< int > chargeP_
charge indices
std::map< int, size_t > barcodes_
#define abs(x)
Definition: mlp_lapack.h:159
int size() const
Definition: MixCollection.h:23
void getData(T &iHolder) const
Definition: EventSetup.h:67
reco::GenParticleRefProd ref_
void resetDaughters(const edm::ProductID &id)
set daughters product ID
bool firstEvent_
whether the first event was looked at
tuple handle
Definition: patZpeak.py:22
unsigned int offset(bool)
bool fillIndices(const HepMC::GenEvent *mc, std::vector< const HepMC::GenParticle * > &particles, std::vector< int > &barCodeVector, int offset)
bool convertParticle(reco::GenParticle &cand, const HepMC::GenParticle *part)
const T & getObject(unsigned int ip) const
Definition: MixCollection.h:30
const HepMC::GenEvent * GetEvent() const
Definition: HepMCProduct.h:34
part
Definition: HCALResponse.h:21
std::map< int, int > chargeMap_
T const * product() const
Definition: Handle.h:74
bool doSubEvent_
input &amp; output modes
std::vector< int > chargeM_
ProductID id() const
Accessor for product ID.
Definition: RefProd.h:142
bool saveBarCodes_
save bar-codes
std::vector< std::string > vectorSrc_
tuple size
Write out results.
static const int PDGCacheMax

Member Data Documentation

bool GenParticleProducer::abortOnUnknownPDGCode_
private

unknown code treatment flag

Definition at line 49 of file GenParticleProducer.cc.

Referenced by chargeTimesThree().

std::map<int, size_t> GenParticleProducer::barcodes_

Definition at line 38 of file GenParticleProducer.cc.

Referenced by fillDaughters(), fillIndices(), and produce().

std::vector<int> GenParticleProducer::chargeM_
private

Definition at line 53 of file GenParticleProducer.cc.

Referenced by chargeTimesThree(), and produce().

std::map<int, int> GenParticleProducer::chargeMap_
private

Definition at line 54 of file GenParticleProducer.cc.

Referenced by chargeTimesThree(), and produce().

std::vector<int> GenParticleProducer::chargeP_
private

charge indices

Definition at line 53 of file GenParticleProducer.cc.

Referenced by chargeTimesThree(), and produce().

bool GenParticleProducer::doSubEvent_
private

input & output modes

Definition at line 57 of file GenParticleProducer.cc.

Referenced by GenParticleProducer(), and produce().

bool GenParticleProducer::firstEvent_
private

whether the first event was looked at

Definition at line 47 of file GenParticleProducer.cc.

Referenced by produce().

reco::GenParticleRefProd GenParticleProducer::ref_

Definition at line 39 of file GenParticleProducer.cc.

Referenced by fillDaughters(), and produce().

bool GenParticleProducer::saveBarCodes_
private

save bar-codes

Definition at line 51 of file GenParticleProducer.cc.

Referenced by GenParticleProducer(), and produce().

edm::InputTag GenParticleProducer::src_
private

source collection name

Definition at line 43 of file GenParticleProducer.cc.

Referenced by GenParticleProducer(), and produce().

bool GenParticleProducer::useCF_
private

Definition at line 58 of file GenParticleProducer.cc.

Referenced by GenParticleProducer(), and produce().

std::vector<std::string> GenParticleProducer::vectorSrc_
private

Definition at line 44 of file GenParticleProducer.cc.

Referenced by GenParticleProducer(), and produce().