CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackAndVertexUnpacker.cc
Go to the documentation of this file.
1 
13 
14 //#include "DataFormats/Common/interface/ValueMap.h"
15 //#include "DataFormats/Common/interface/View.h"
16 //#include "DataFormats/PatCandidates/interface/Vertexing.h"
17 
22 
23 //#include "PhysicsTools/PatAlgos/interface/VertexingHelper.h"
24 
25 
26 namespace pat {
27 
29 
30 
31  public:
32 
33  explicit PATTrackAndVertexUnpacker(const edm::ParameterSet & iConfig);
35 
36  virtual void produce(edm::Event & iEvent, const edm::EventSetup& iSetup) override;
37 
38  private:
39  typedef std::vector<edm::InputTag> VInputTag;
40  // configurables
46 
47  };
48 
49 }
50 
52 
53 PATTrackAndVertexUnpacker::PATTrackAndVertexUnpacker(const edm::ParameterSet& iConfig) :
54  Cands_(consumes< std::vector<pat::PackedCandidate> >(iConfig.getParameter<edm::InputTag>("packedCandidates"))),
55  PVs_(consumes<reco::VertexCollection>(iConfig.getParameter<edm::InputTag>("slimmedVertices"))),
56  SVs_(consumes<reco::VertexCompositePtrCandidateCollection>(iConfig.getParameter<edm::InputTag>("slimmedSecondaryVertices"))),
57  AdditionalTracks_(consumes<pat::PackedCandidateCollection>(iConfig.getParameter<edm::InputTag>("additionalTracks")))
58 {
59  produces<reco::TrackCollection>();
60  produces<reco::VertexCollection>();
61  produces<reco::VertexCollection>("secondary");
62 }
63 
64 
66 }
67 
68 
70  using namespace edm; using namespace std; using namespace reco;
72  iEvent.getByToken(Cands_, cands);
74  iEvent.getByToken(PVs_, pvs);
76  iEvent.getByToken(SVs_, svs);
78  iEvent.getByToken(AdditionalTracks_, addTracks);
79 
80  std::auto_ptr< std::vector<reco::Track> > outTks( new std::vector<reco::Track> );
81  std::vector<unsigned int> asso;
82  std::map<unsigned int, unsigned int> trackKeys;
83  unsigned int j=0;
84  for(unsigned int i=0;i<cands->size();i++) {
85  const pat::PackedCandidate & c = (*cands)[i];
86  if(c.charge() != 0 && c.numberOfHits()> 0){
87  outTks->push_back(c.pseudoTrack());
89  {
90  asso.push_back(j);
91  }
92  trackKeys[i]=j;
93  j++;
94  }
95  }
96  reco::Vertex pv = (*pvs)[0];
97  std::auto_ptr< std::vector<reco::Vertex> > outPv( new std::vector<reco::Vertex> );
98  int offsetAdd=j;
99  for(unsigned int i = 0; i < addTracks->size(); i++) {
100  outTks->push_back((*addTracks)[i].pseudoTrack());
101  if((*addTracks)[i].fromPV()==pat::PackedCandidate::PVUsedInFit)
102  {
103 // std::cout << "USEDINFIT " << i <<std::endl;
104  asso.push_back(j);
105  }
106  j++;
107 
108  }
109  edm::OrphanHandle< std::vector<reco::Track> > oh = iEvent.put( outTks );
110  for(unsigned int i=0;i<asso.size();i++)
111  {
112  TrackRef r(oh,asso[i]);
113  TrackBaseRef rr(r);
114  pv.add(rr);
115  }
116  outPv->push_back(pv);
117  iEvent.put(outPv);
118 
119  std::auto_ptr< std::vector<reco::Vertex> > outSv( new std::vector<reco::Vertex> );
120  for(size_t i=0;i< svs->size(); i++) {
121  const reco::VertexCompositePtrCandidate &sv = (*svs)[i];
122  outSv->push_back(reco::Vertex(sv.vertex(),sv.vertexCovariance(),sv.vertexChi2(),sv.vertexNdof(),0));
123  for(size_t j=0;j<sv.numberOfDaughters();j++){
124  TrackRef r;
125  if(sv.daughterPtr(j).id() == cands.id()) {
126  r= TrackRef(oh,trackKeys[sv.daughterPtr(j).key()]); // use trackKeys because cand->track has gaps from neutral
127  } else {
128 // std::cout << "vertex " << i << " using lost Track " << sv.daughterPtr(j).key() << " " << offsetAdd+sv.daughterPtr(j).key() << std::endl;
129  r=TrackRef(oh,offsetAdd+sv.daughterPtr(j).key()); // use directly the key because addTracks is only charged
130  }
131  TrackBaseRef rr(r);
132  outSv->back().add(rr);
133 
134  }
135  }
136 
137  iEvent.put(outSv,"secondary");
138 
139 }
140 
141 
143 
int i
Definition: DBlmapReader.cc:9
virtual double vertexChi2() const
chi-squares
int numberOfHits() const
CandidatePtr daughterPtr(size_type i) const
reference to daughter at given position
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
virtual const Point & vertex() const
vertex position (overwritten by PF...)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::vector< pat::PackedCandidate > PackedCandidateCollection
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
std::vector< VertexCompositePtrCandidate > VertexCompositePtrCandidateCollection
collection of Candidate objects
edm::EDGetTokenT< reco::VertexCompositePtrCandidateCollection > SVs_
virtual double vertexCovariance(int i, int j) const
(i, j)-th element of error matrix, i, j = 0, ... 2
int iEvent
Definition: GenABIO.cc:230
virtual size_t numberOfDaughters() const
number of daughters
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
ProductID id() const
Accessor for product ID.
Definition: Ptr.h:164
virtual void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
int j
Definition: DBlmapReader.cc:9
virtual int charge() const
electric charge
key_type key() const
Definition: Ptr.h:169
edm::Ref< TrackCollection > TrackRef
persistent reference to a Track
Definition: TrackFwd.h:14
edm::EDGetTokenT< std::vector< pat::PackedCandidate > > AdditionalTracks_
std::vector< edm::InputTag > VInputTag
edm::EDGetTokenT< std::vector< pat::PackedCandidate > > Cands_
PATTrackAndVertexUnpacker(const edm::ParameterSet &iConfig)
ProductIndex id() const
Definition: ProductID.h:38
edm::EDGetTokenT< reco::VertexCollection > PVs_
const PVAssoc fromPV() const
virtual reco::Track pseudoTrack() const
Return by value (no caching heavy function) a pseudo track made with candidate kinematics, parameterized error for eta,phi,pt and full IP covariance.