CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GenParticleProducer.cc
Go to the documentation of this file.
1 /* \class GenParticleProducer
2  *
3  * \author Luca Lista, INFN
4  *
5  * Convert HepMC GenEvent format into a collection of type
6  * CandidateCollection containing objects of type GenParticle
7  *
8  *
9  */
16 
17 #include <vector>
18 #include <string>
19 #include <map>
20 #include <set>
21 
22 namespace edm { class ParameterSet; }
23 namespace HepMC { class GenParticle; class GenEvent; }
24 
26  public:
31 
33  virtual void produce( edm::Event& e, const edm::EventSetup&) override;
34  int chargeTimesThree( int ) const;
36  bool fillDaughters(reco::GenParticleCollection& cand, const HepMC::GenParticle * part, size_t index);
37  bool fillIndices(const HepMC::GenEvent * mc, std::vector<const HepMC::GenParticle*>& particles, std::vector<int>& barCodeVector, int offset);
38  std::map<int, size_t> barcodes_;
40 
41  private:
44  std::vector<edm::EDGetTokenT<edm::HepMCProduct> > vectorSrcTokens_;
46 
54  std::vector<int> chargeP_, chargeM_;
55  std::map<int, int> chargeMap_;
56 
59  bool useCF_;
60 
61 };
62 
65 
66 //#include "SimDataFormats/HiGenData/interface/SubEventMap.h"
68 
76 #include <fstream>
77 #include <algorithm>
78 using namespace edm;
79 using namespace reco;
80 using namespace std;
81 using namespace HepMC;
82 
83 static const int PDGCacheMax = 32768;
84 static const double mmToCm = 0.1;
85 
87  firstEvent_(true),
88  abortOnUnknownPDGCode_( cfg.getUntrackedParameter<bool>( "abortOnUnknownPDGCode", true ) ),
89  saveBarCodes_( cfg.getUntrackedParameter<bool>( "saveBarCodes", false ) ),
90  chargeP_( PDGCacheMax, 0 ), chargeM_( PDGCacheMax, 0 ),
91  doSubEvent_(cfg.getUntrackedParameter<bool>( "doSubEvent", false )),
92  useCF_(cfg.getUntrackedParameter<bool>( "useCrossingFrame", false ))
93 {
94  produces<GenParticleCollection>();
95  if( saveBarCodes_ ) {
96  std::string alias( cfg.getParameter<std::string>( "@module_label" ) );
97  produces<vector<int> >().setBranchAlias( alias + "BarCodes" );
98  }
99 
100  if(doSubEvent_){
101  vectorSrcTokens_ = vector_transform(cfg.getParameter<std::vector<std::string> >( "srcVector" ), [this](std::string const & label){return mayConsume<HepMCProduct>(InputTag(label));});
102  // produces<SubEventMap>();
103  }else if(useCF_) {
104  mixToken_ = mayConsume<CrossingFrame<HepMCProduct> >(InputTag(cfg.getParameter<std::string>( "mix" ),"generator"));
105  srcToken_ = mayConsume<HepMCProduct>(cfg.getUntrackedParameter<InputTag>( "src" , InputTag(cfg.getParameter<std::string>( "mix" ),"generator")));
106  } else srcToken_ = mayConsume<HepMCProduct>(cfg.getParameter<InputTag>( "src" ));
107 }
108 
110 }
111 
113  if( std::abs( id ) < PDGCacheMax )
114  return id > 0 ? chargeP_[ id ] : chargeM_[ - id ];
115  map<int, int>::const_iterator f = chargeMap_.find( id );
116  if ( f == chargeMap_.end() ) {
119  << "invalid PDG id: " << id << endl;
120  else
121  return HepPDT::ParticleID(id).threeCharge();
122  }
123  return f->second;
124 }
125 
127 
128  if (firstEvent_) {
130  es.getData( pdt );
131  for( HepPDT::ParticleDataTable::const_iterator p = pdt->begin(); p != pdt->end(); ++ p ) {
132  const HepPDT::ParticleID & id = p->first;
133  int pdgId = id.pid(), apdgId = std::abs( pdgId );
134  int q3 = id.threeCharge();
135  if ( apdgId < PDGCacheMax && pdgId > 0 ) {
136  chargeP_[ apdgId ] = q3;
137  chargeM_[ apdgId ] = -q3;
138  } else if ( apdgId < PDGCacheMax ) {
139  chargeP_[ apdgId ] = -q3;
140  chargeM_[ apdgId ] = q3;
141  } else {
142  chargeMap_[ pdgId ] = q3;
143  chargeMap_[ -pdgId ] = -q3;
144  }
145  }
146  firstEvent_ = false;
147  }
148 
149  barcodes_.clear();
150 
151  size_t totalSize = 0;
152  const GenEvent * mc = 0;
153  std::vector<Handle<HepMCProduct> > heps;
154  MixCollection<HepMCProduct>* cfhepmcprod = 0;
155  size_t npiles = vectorSrcTokens_.size();
156 
157  if(useCF_){
159  evt.getByToken(mixToken_,cf);
160  cfhepmcprod = new MixCollection<HepMCProduct>(cf.product());
161  npiles = cfhepmcprod->size();
162  for(unsigned int icf = 0; icf < npiles; ++icf){
163  totalSize += cfhepmcprod->getObject(icf).GetEvent()->particles_size();
164  }
165  }else if (doSubEvent_){
166  for(size_t i = 0; i < npiles; ++i){
168  heps.push_back(handle);
169  evt.getByToken( vectorSrcTokens_[i], heps[i] );
170  totalSize += heps[i]->GetEvent()->particles_size();
171  }
172  }else{
174  evt.getByToken( srcToken_, mcp );
175  mc = mcp->GetEvent();
176  if( mc == 0 )
178  << "HepMC has null pointer to GenEvent" << endl;
179  totalSize = mc->particles_size();
180  }
181 
182  // initialise containers
183  const size_t size = totalSize;
184  vector<const HepMC::GenParticle *> particles( size );
185  auto_ptr<GenParticleCollection> candsPtr( new GenParticleCollection( size ) );
186  // auto_ptr<SubEventMap> subsPtr( new SubEventMap() );
187  auto_ptr<vector<int> > barCodeVector( new vector<int>( size ) );
189  GenParticleCollection & cands = * candsPtr;
190  // SubEventMap & subs = *subsPtr;
191  size_t offset = 0;
192  size_t suboffset = 0;
193 
195  if(doSubEvent_ || useCF_){
196  for(size_t i = 0; i < npiles; ++i){
197  barcodes_.clear();
198  if(useCF_) mc = cfhepmcprod->getObject(i).GetEvent();
199  else mc = heps[i]->GetEvent();
200 
201  //Look whether heavy ion/signal event
202  bool isHI = false;
203  const HepMC::HeavyIon * hi = mc->heavy_ion();
204  if(hi && hi->Ncoll_hard() > 1) isHI = true;
205  size_t num_particles = mc->particles_size();
206  fillIndices(mc, particles, *barCodeVector, offset);
207  // fill output collection and save association
208  for( size_t i = offset; i < offset + num_particles; ++ i ) {
209 
210  const HepMC::GenParticle * part = particles[ i ];
211  reco::GenParticle & cand = cands[ i ];
212  // convert HepMC::GenParticle to new reco::GenParticle
213  convertParticle(cand, part);
214  cand.resetDaughters( ref_.id() );
215  }
216 
217  for( size_t d = offset; d < offset + num_particles; ++ d ) {
218  const HepMC::GenParticle * part = particles[ d ];
219  const GenVertex * productionVertex = part->production_vertex();
220  int sub_id = 0;
221  if ( productionVertex != 0 ) {
222  sub_id = productionVertex->id();
223  if(!isHI) sub_id = 0;
224  // search barcode map and attach daughters
225  fillDaughters(cands,part,d);
226  }else{
227  const GenVertex * endVertex = part->end_vertex();
228  if(endVertex != 0) sub_id = endVertex->id();
229  else throw cms::Exception( "SubEventID" )<<"SubEvent not determined. Particle has no production and no end vertex!"<<endl;
230  }
231  if(sub_id < 0) sub_id = 0;
232  int new_id = sub_id + suboffset;
233  GenParticleRef dref( ref_, d );
234  // subs.insert(dref,new_id); // For SubEventMap
235  cands[d].setCollisionId(new_id); // For new GenParticle
236  LogDebug("VertexId")<<"SubEvent offset 3 : "<<suboffset;
237  }
238  int nsub = -2;
239  if(isHI){
240  nsub = hi->Ncoll_hard()+1;
241  suboffset += nsub;
242  }else{
243  suboffset += 1;
244  }
245  offset += num_particles;
246  }
247  }else{
248  fillIndices(mc, particles, *barCodeVector, 0);
249 
250  // fill output collection and save association
251  for( size_t i = 0; i < particles.size(); ++ i ) {
252  const HepMC::GenParticle * part = particles[ i ];
253  reco::GenParticle & cand = cands[ i ];
254  // convert HepMC::GenParticle to new reco::GenParticle
255  convertParticle(cand, part);
256  cand.resetDaughters( ref_.id() );
257  }
258 
259  // fill references to daughters
260  for( size_t d = 0; d < cands.size(); ++ d ) {
261  const HepMC::GenParticle * part = particles[ d ];
262  const GenVertex * productionVertex = part->production_vertex();
263  // search barcode map and attach daughters
264  if ( productionVertex != 0 ) fillDaughters(cands,part,d);
265  cands[d].setCollisionId(0);
266  }
267  }
268 
269  evt.put( candsPtr );
270  if(saveBarCodes_) evt.put( barCodeVector );
271  // if(doSubEvent_) evt.put(subsPtr); // For SubEventMap
272  if(cfhepmcprod) delete cfhepmcprod;
273 
274 }
275 
277  Candidate::LorentzVector p4( part->momentum() );
278  int pdgId = part->pdg_id();
279  cand.setThreeCharge( chargeTimesThree( pdgId ) );
280  cand.setPdgId( pdgId );
281  cand.setStatus( part->status() );
282  cand.setP4( p4 );
283  cand.setCollisionId(0);
284  const GenVertex * v = part->production_vertex();
285  if ( v != 0 ) {
286  ThreeVector vtx = v->point3d();
287  Candidate::Point vertex( vtx.x() * mmToCm, vtx.y() * mmToCm, vtx.z() * mmToCm );
288  cand.setVertex( vertex );
289  } else {
290  cand.setVertex( Candidate::Point( 0, 0, 0 ) );
291  }
292  return true;
293 }
294 
296 
297  const GenVertex * productionVertex = part->production_vertex();
298  size_t numberOfMothers = productionVertex->particles_in_size();
299  if ( numberOfMothers > 0 ) {
300  GenVertex::particles_in_const_iterator motherIt = productionVertex->particles_in_const_begin();
301  for( ; motherIt != productionVertex->particles_in_const_end(); motherIt++) {
302  const HepMC::GenParticle * mother = * motherIt;
303  size_t m = barcodes_.find( mother->barcode() )->second;
304  cands[ m ].addDaughter( GenParticleRef( ref_, index ) );
305  cands[ index ].addMother( GenParticleRef( ref_, m ) );
306  }
307  }
308 
309  return true;
310 }
311 
312 bool GenParticleProducer::fillIndices(const HepMC::GenEvent * mc, vector<const HepMC::GenParticle*>& particles, vector<int>& barCodeVector, int offset){
313  size_t idx = offset;
314  HepMC::GenEvent::particle_const_iterator begin = mc->particles_begin(), end = mc->particles_end();
315  for( HepMC::GenEvent::particle_const_iterator p = begin; p != end; ++ p ) {
316  const HepMC::GenParticle * particle = * p;
317  size_t barCode_this_event = particle->barcode();
318  size_t barCode = barCode_this_event + offset;
319  if( barcodes_.find(barCode) != barcodes_.end() )
320  throw cms::Exception( "WrongReference" )
321  << "barcodes are duplicated! " << endl;
322  particles[idx] = particle;
323  barCodeVector[idx] = barCode;
324  barcodes_.insert( make_pair(barCode_this_event, idx ++) );
325  }
326  return true;
327 }
328 
329 
331 
333 
#define LogDebug(id)
GenParticleProducer(const edm::ParameterSet &)
constructor
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
T getParameter(std::string const &) const
bool abortOnUnknownPDGCode_
unknown code treatment flag
int i
Definition: DBlmapReader.cc:9
bool fillDaughters(reco::GenParticleCollection &cand, const HepMC::GenParticle *part, size_t index)
void setCollisionId(int s)
Definition: GenParticle.h:37
std::vector< int > chargeP_
charge indices
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
std::map< int, size_t > barcodes_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
edm::Ref< GenParticleCollection > GenParticleRef
persistent reference to a GenParticle
std::vector< edm::EDGetTokenT< edm::HepMCProduct > > vectorSrcTokens_
~GenParticleProducer()
destructor
virtual void produce(edm::Event &e, const edm::EventSetup &) override
process one event
edm::EDGetTokenT< CrossingFrame< edm::HepMCProduct > > mixToken_
int chargeTimesThree(int) const
auto vector_transform(std::vector< InputType > const &input, Function predicate) -> std::vector< typename std::remove_cv< typename std::remove_reference< decltype(predicate(input.front()))>::type >::type >
Definition: transform.h:11
edm::EDGetTokenT< edm::HepMCProduct > srcToken_
source collection name
int size() const
Definition: MixCollection.h:23
void getData(T &iHolder) const
Definition: EventSetup.h:67
U second(std::pair< T, U > const &p)
reco::GenParticleRefProd ref_
void resetDaughters(const edm::ProductID &id)
set daughters product ID
bool firstEvent_
whether the first event was looked at
virtual void setStatus(int status) GCC11_FINAL
set status word
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
double p4[4]
Definition: TauolaWrapper.h:92
tuple handle
Definition: patZpeak.py:22
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
double f[11][100]
#define end
Definition: vmac.h:37
unsigned int offset(bool)
virtual void setVertex(const Point &vertex)
set vertex
RefProd< PROD > getRefBeforePut()
Definition: Event.h:128
virtual void setThreeCharge(Charge qx3) GCC11_FINAL
set electric charge
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:35
static const double mmToCm
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
part
Definition: HCALResponse.h:20
std::map< int, int > chargeMap_
T const * product() const
Definition: Handle.h:81
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:41
bool doSubEvent_
input &amp; output modes
std::vector< int > chargeM_
#define begin
Definition: vmac.h:30
virtual void setP4(const LorentzVector &p4) GCC11_FINAL
set 4-momentum
ProductID id() const
Accessor for product ID.
Definition: RefProd.h:140
math::XYZPoint Point
point in the space
Definition: Candidate.h:45
bool saveBarCodes_
save bar-codes
volatile std::atomic< bool > shutdown_flag false
virtual void setPdgId(int pdgId) GCC11_FINAL
tuple size
Write out results.
static const int PDGCacheMax