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
PixelVertexProducer Class Reference

#include <PixelVertexFinding/interface/PixelVertexProducer.h>

Inheritance diagram for PixelVertexProducer:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 PixelVertexProducer (const edm::ParameterSet &)
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 
 ~PixelVertexProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

edm::ParameterSet conf_
 
DivisiveVertexFinderdvf_
 
double ptMin_
 
int verbose_
 

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)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Description: This produces 1D (z only) primary vertexes using only pixel information.

Implementation: This producer can use either the Divisive Primary Vertex Finder or the Histogramming Primary Vertex Finder (currently not implemented). It relies on the PixelTripletProducer and PixelTrackProducer having already been run upstream. This is code ported from ORCA originally written by S Cucciarelli, M Konecki, D Kotlinski.

Definition at line 34 of file PixelVertexProducer.h.

Constructor & Destructor Documentation

PixelVertexProducer::PixelVertexProducer ( const edm::ParameterSet conf)
explicit

Definition at line 14 of file PixelVertexProducer.cc.

References conf_, dvf_, edm::ParameterSet::getParameter(), ptMin_, AlCaHLTBitMon_QueryRunRegistry::string, and verbose_.

15  : conf_(conf), verbose_(0), dvf_(0), ptMin_(1.0)
16 {
17  // Register my product
18  produces<reco::VertexCollection>();
19 
20  // Setup shop
21  verbose_ = conf.getParameter<int>("Verbosity"); // 0 silent, 1 chatty, 2 loud
22  std::string finder = conf.getParameter<std::string>("Finder"); // DivisiveVertexFinder
23  bool useError = conf.getParameter<bool>("UseError"); // true
24  bool wtAverage = conf.getParameter<bool>("WtAverage"); // true
25  double zOffset = conf.getParameter<double>("ZOffset"); // 5.0 sigma
26  double zSeparation = conf.getParameter<double>("ZSeparation"); // 0.05 cm
27  int ntrkMin = conf.getParameter<int>("NTrkMin"); // 3
28  // Tracking requirements before sending a track to be considered for vtx
29  ptMin_ = conf_.getParameter<double>("PtMin"); // 1.0 GeV
30 
31  if (finder == "DivisiveVertexFinder") {
32  if (verbose_ > 0) edm::LogInfo("PixelVertexProducer") << ": Using the DivisiveVertexFinder\n";
33  dvf_ = new DivisiveVertexFinder(zOffset, ntrkMin, useError, zSeparation, wtAverage, verbose_);
34  }
35  else { // Finder not supported, or you made a mistake in your request
36  // throw an exception once I figure out how CMSSW does this
37  }
38 }
T getParameter(std::string const &) const
edm::ParameterSet conf_
DivisiveVertexFinder * dvf_
PixelVertexProducer::~PixelVertexProducer ( )

Definition at line 41 of file PixelVertexProducer.cc.

References dvf_.

41  {
42  delete dvf_;
43 }
DivisiveVertexFinder * dvf_

Member Function Documentation

void PixelVertexProducer::produce ( edm::Event e,
const edm::EventSetup es 
)
virtual

Implements edm::EDProducer.

Definition at line 45 of file PixelVertexProducer.cc.

References reco::Vertex::add(), conf_, dvf_, reco::BeamSpot::dxdz(), reco::BeamSpot::dydz(), error, DivisiveVertexFinder::findVertexes(), DivisiveVertexFinder::findVertexesAlt(), edm::Event::getByLabel(), edm::ParameterSet::getParameter(), i, edm::HandleBase::isValid(), convertSQLiteXML::ok, reco::BeamSpot::position(), edm::Handle< T >::product(), ptMin_, edm::RefVector< C, T, F >::push_back(), edm::Event::put(), reco::BeamSpot::rotatedCovariance3D(), edm::RefVector< C, T, F >::size(), mathSSE::sqrt(), testEve_cfg::tracks, findQualityFiles::v, verbose_, x, reco::BeamSpot::x0(), detailsBasic3DVector::y, reco::BeamSpot::y0(), detailsBasic3DVector::z, and reco::BeamSpot::z0().

45  {
46 
47  // First fish the pixel tracks out of the event
48  edm::Handle<reco::TrackCollection> trackCollection;
49  edm::InputTag trackCollName = conf_.getParameter<edm::InputTag>("TrackCollection");
50  e.getByLabel(trackCollName,trackCollection);
51  const reco::TrackCollection tracks = *(trackCollection.product());
52  if (verbose_ > 0) edm::LogInfo("PixelVertexProducer") << ": Found " << tracks.size() << " tracks in TrackCollection called " << trackCollName << "\n";
53 
54 
55  // Second, make a collection of pointers to the tracks we want for the vertex finder
57  for (unsigned int i=0; i<tracks.size(); i++) {
58  if (tracks[i].pt() > ptMin_)
59  trks.push_back( reco::TrackRef(trackCollection, i) );
60  }
61  if (verbose_ > 0) edm::LogInfo("PixelVertexProducer") << ": Selected " << trks.size() << " of these tracks for vertexing\n";
62 
64  edm::InputTag bsName = conf_.getParameter<edm::InputTag>("beamSpot");
65  e.getByLabel(bsName,bsHandle);
66  math::XYZPoint myPoint(0.,0.,0.);
67  if (bsHandle.isValid()) myPoint = math::XYZPoint(bsHandle->x0(),bsHandle->y0(), 0. ); //FIXME: fix last coordinate with vertex.z() at same time
68 
69  // Third, ship these tracks off to be vertexed
70  std::auto_ptr<reco::VertexCollection> vertexes(new reco::VertexCollection);
71  bool ok;
72  if (conf_.getParameter<bool>("Method2")) {
73  ok = dvf_->findVertexesAlt(trks, // input
74  *vertexes,myPoint); // output
75  if (verbose_ > 0) edm::LogInfo("PixelVertexProducer") << "Method2 returned status of " << ok;
76  }
77  else {
78  ok = dvf_->findVertexes(trks, // input
79  *vertexes); // output
80  if (verbose_ > 0) edm::LogInfo("PixelVertexProducer") << "Method1 returned status of " << ok;
81  }
82 
83  if (verbose_ > 0) {
84  edm::LogInfo("PixelVertexProducer") << ": Found " << vertexes->size() << " vertexes\n";
85  for (unsigned int i=0; i<vertexes->size(); ++i) {
86  edm::LogInfo("PixelVertexProducer") << "Vertex number " << i << " has " << (*vertexes)[i].tracksSize() << " tracks with a position of " << (*vertexes)[i].z() << " +- " << std::sqrt( (*vertexes)[i].covariance(2,2) );
87  }
88  }
89 
90 
91  if(bsHandle.isValid())
92  {
93  const reco::BeamSpot & bs = *bsHandle;
94 
95  for (unsigned int i=0; i<vertexes->size(); ++i) {
96  double z=(*vertexes)[i].z();
97  double x=bs.x0()+bs.dxdz()*(z-bs.z0());
98  double y=bs.y0()+bs.dydz()*(z-bs.z0());
99  reco::Vertex v( reco::Vertex::Point(x,y,z), (*vertexes)[i].error(),(*vertexes)[i].chi2() , (*vertexes)[i].ndof() , (*vertexes)[i].tracksSize());
100  //Copy also the tracks
101  for (std::vector<reco::TrackBaseRef >::const_iterator it = (*vertexes)[i].tracks_begin();
102  it !=(*vertexes)[i].tracks_end(); it++) {
103  v.add( *it );
104  }
105  (*vertexes)[i]=v;
106 
107  }
108  }
109  else
110  {
111  edm::LogWarning("PixelVertexProducer") << "No beamspot found. Using returning vertexes with (0,0,Z) ";
112  }
113 
114  if(!vertexes->size() && bsHandle.isValid()){
115 
116  const reco::BeamSpot & bs = *bsHandle;
117 
119  if ( (bse.cxx() <= 0.) ||
120  (bse.cyy() <= 0.) ||
121  (bse.czz() <= 0.) ) {
123  we(0,0)=10000;
124  we(1,1)=10000;
125  we(2,2)=10000;
126  vertexes->push_back(reco::Vertex(bs.position(), we,0.,0.,0));
127 
128  edm::LogInfo("PixelVertexProducer") <<"No vertices found. Beamspot with invalid errors " << bse.matrix() << std::endl
129  << "Will put Vertex derived from dummy-fake BeamSpot into Event.\n"
130  << (*vertexes)[0].x() << "\n"
131  << (*vertexes)[0].y() << "\n"
132  << (*vertexes)[0].z() << "\n";
133  } else {
134  vertexes->push_back(reco::Vertex(bs.position(),
135  bs.rotatedCovariance3D(),0.,0.,0));
136 
137  edm::LogInfo("PixelVertexProducer") << "No vertices found. Will put Vertex derived from BeamSpot into Event:\n"
138  << (*vertexes)[0].x() << "\n"
139  << (*vertexes)[0].y() << "\n"
140  << (*vertexes)[0].z() << "\n";
141  }
142  }
143 
144  else if(!vertexes->size() && !bsHandle.isValid())
145  {
146  edm::LogWarning("PixelVertexProducer") << "No beamspot and no vertex found. No vertex returned.";
147  }
148 
149  e.put(vertexes);
150 
151 }
T getParameter(std::string const &) const
double z0() const
z coordinate
Definition: BeamSpot.h:69
int i
Definition: DBlmapReader.cc:9
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:10
bool findVertexesAlt(const reco::TrackRefVector &trks, reco::VertexCollection &vertexes, const math::XYZPoint &bs)
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
edm::ParameterSet conf_
float float float z
double dydz() const
dydz slope
Definition: BeamSpot.h:85
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepSym< double, 3 > > AlgebraicSymMatrix33
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94
T sqrt(T t)
Definition: SSEVec.h:48
math::XYZPoint Point
point in the space
Definition: Vertex.h:40
bool findVertexes(const reco::TrackRefVector &trks, reco::VertexCollection &vertexes)
Run the divisive algorithm and return a vector of vertexes for the input track collection.
bool isValid() const
Definition: HandleBase.h:76
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
double dxdz() const
dxdz slope
Definition: BeamSpot.h:83
tuple tracks
Definition: testEve_cfg.py:39
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:13
T const * product() const
Definition: Handle.h:74
DivisiveVertexFinder * dvf_
double y0() const
y coordinate
Definition: BeamSpot.h:67
void push_back(value_type const &ref)
Add a Ref&lt;C, T&gt; to the RefVector.
Definition: RefVector.h:64
size_type size() const
Size of the RefVector.
Definition: RefVector.h:89
const Point & position() const
position
Definition: BeamSpot.h:63
Definition: DDAxes.h:10
Covariance3DMatrix rotatedCovariance3D() const
Definition: BeamSpot.cc:79
double x0() const
x coordinate
Definition: BeamSpot.h:65

Member Data Documentation

edm::ParameterSet PixelVertexProducer::conf_
private

Definition at line 42 of file PixelVertexProducer.h.

Referenced by PixelVertexProducer(), and produce().

DivisiveVertexFinder* PixelVertexProducer::dvf_
private

Definition at line 45 of file PixelVertexProducer.h.

Referenced by PixelVertexProducer(), produce(), and ~PixelVertexProducer().

double PixelVertexProducer::ptMin_
private

Definition at line 47 of file PixelVertexProducer.h.

Referenced by PixelVertexProducer(), and produce().

int PixelVertexProducer::verbose_
private

Definition at line 44 of file PixelVertexProducer.h.

Referenced by PixelVertexProducer(), and produce().