29 if (trackSelectionAlgorithm ==
"filter") {
31 }
else if (trackSelectionAlgorithm ==
"filterWithThreshold") {
34 throw VertexException(
"PrimaryVertexProducer: unknown track selection algorithm: " + trackSelectionAlgorithm);
40 if (clusteringAlgorithm ==
"gap") {
43 }
else if (clusteringAlgorithm ==
"DA") {
48 else if (clusteringAlgorithm ==
"DA_vect") {
51 }
else if (clusteringAlgorithm ==
"DA2D_vect") {
58 throw VertexException(
"PrimaryVertexProducer: unknown clustering algorithm: " + clusteringAlgorithm);
67 if (conf.
exists(
"vertexCollections")) {
69 conf.
getParameter<std::vector<edm::ParameterSet> >(
"vertexCollections");
71 for (std::vector<edm::ParameterSet>::const_iterator algoconf =
vertexCollections.begin();
76 if (fitterAlgorithm ==
"KalmanVertexFitter") {
78 }
else if (fitterAlgorithm ==
"AdaptiveVertexFitter") {
81 throw VertexException(
"PrimaryVertexProducer: unknown algorithm: " + fitterAlgorithm);
84 algorithm.minNdof = algoconf->getParameter<
double>(
"minNdof");
85 algorithm.useBeamConstraint = algoconf->getParameter<
bool>(
"useBeamConstraint");
90 produces<reco::VertexCollection>(
algorithm.label);
94 <<
"this module's configuration has changed, please update to have a vertexCollections=cms.VPSet parameter.";
98 if (fitterAlgorithm ==
"KalmanVertexFitter") {
100 }
else if (fitterAlgorithm ==
"AdaptiveVertexFitter") {
103 throw VertexException(
"PrimaryVertexProducerAlgorithm: unknown algorithm: " + fitterAlgorithm);
114 produces<reco::VertexCollection>(
algorithm.label);
121 throw VertexException(
"PrimaryVertexProducer: No algorithm specified. ");
124 "PrimaryVertexProducer: Running in Recovery mode and more than one algorithm specified. Please "
125 "only one algorithm.");
149 if (recoBeamSpotHandle.
isValid()) {
152 edm::LogError(
"UnusableBeamSpot") <<
"No beam spot available from EventSetup";
157 if ((beamVertexState.
error().
cxx() <= 0.) || (beamVertexState.
error().
cyy() <= 0.) ||
158 (beamVertexState.
error().
czz() <= 0.)) {
167 for (
auto const& old : oldVertices) {
168 if (!(old.isFake())) {
171 auto result = std::make_unique<reco::VertexCollection>();
186 std::vector<reco::TransientTrack> t_tks;
195 t_tks = (*theB).build(tks,
beamSpot);
198 std::cout <<
"RecoVertex/PrimaryVertexProducer"
199 <<
"Found: " << t_tks.size() <<
" reconstructed tracks"
210 std::cout <<
" clustering returned " <<
clusters.size() <<
" clusters from " << seltks.size()
211 <<
" selected tracks" << std::endl;
216 auto result = std::make_unique<reco::VertexCollection>();
219 std::vector<TransientVertex>
pvs;
220 for (
std::vector<std::vector<reco::TransientTrack> >::const_iterator iclus =
clusters.begin();
226 double meantime = 0.;
229 for (
const auto& tk : *iclus) {
230 const double time = tk.timeExt();
231 const double err = tk.dtErrorExt();
232 const double inverr =
err > 0. ? 1.0 /
err : 0.;
233 const double w = inverr * inverr;
238 meantime = sumwt / sumw;
239 double sumsq = sumwt2 - sumwt * sumwt / sumw;
240 double chisq = iclus->size() > 1 ? sumsq / double(iclus->size() - 1) : sumsq /
double(iclus->size());
241 vartime = chisq / sumw;
245 if (
algorithm->useBeamConstraint && validBS && ((*iclus).size() > 1)) {
250 auto err =
v.positionError().matrix4D();
251 auto trkweightMap3d =
v.weightMap();
254 v.weightMap(trkweightMap3d);
258 }
else if (!(
algorithm->useBeamConstraint) && ((*iclus).size() > 1)) {
263 auto err =
v.positionError().matrix4D();
276 std::cout <<
"=" <<
v.position().x() <<
" " <<
v.position().y() <<
" " <<
v.position().z();
279 std::cout <<
" cluster size = " << (*iclus).size() << std::endl;
281 std::cout <<
"Invalid fitted vertex, cluster size=" << (*iclus).size() << std::endl;
285 if (
v.isValid() && (
v.degreesOfFreedom() >=
algorithm->minNdof) &&
286 (!validBS || (*(
algorithm->vertexSelector))(
v, beamVertexState)))
291 std::cout <<
"PrimaryVertexProducerAlgorithm::vertices candidates =" <<
pvs.size() << std::endl;
296 <<
"more than half of candidate vertices lost " <<
pvs.size() <<
' ' <<
clusters.size();
298 if (
pvs.empty() && seltks.size() > 5)
300 <<
"no vertex found with " << seltks.size() <<
" tracks and " <<
clusters.size() <<
" vertex-candidates";
303 if (
pvs.size() > 1) {
308 for (std::vector<TransientVertex>::const_iterator
iv =
pvs.begin();
iv !=
pvs.end();
iv++) {
315 if ((bse.cxx() <= 0.) || (bse.cyy() <= 0.) || (bse.czz() <= 0.)) {
322 std::cout <<
"RecoVertex/PrimaryVertexProducer: "
323 <<
"Beamspot with invalid errors " << bse.matrix() << std::endl;
324 std::cout <<
"Will put Vertex derived from dummy-fake BeamSpot into Event.\n";
329 std::cout <<
"RecoVertex/PrimaryVertexProducer: "
330 <<
" will put Vertex derived from BeamSpot into Event.\n";
337 for (reco::VertexCollection::const_iterator
v = vColl.begin();
v != vColl.end(); ++
v) {
338 std::cout <<
"recvtx " << ivtx++ <<
"#trk " << std::setw(3) <<
v->tracksSize() <<
" chi2 " << std::setw(4)
339 <<
v->chi2() <<
" ndof " << std::setw(3) <<
v->ndof() <<
" x " << std::setw(6) <<
v->position().x()
340 <<
" dx " << std::setw(6) <<
v->xError() <<
" y " << std::setw(6) <<
v->position().y() <<
" dy "
341 << std::setw(6) <<
v->yError() <<
" z " << std::setw(6) <<
v->position().z() <<
" dz " << std::setw(6)
344 std::cout <<
" t " << std::setw(6) <<
v->t() <<
" dt " << std::setw(6) <<
v->tError();
359 vpsd1.
add<
double>(
"maxDistanceToBeam", 1.0);
361 vpsd1.
add<
bool>(
"useBeamConstraint",
false);
363 vpsd1.
add<
double>(
"chi2cutoff", 2.5);
364 vpsd1.
add<
double>(
"minNdof", 0.0);
365 std::vector<edm::ParameterSet> temp1;
375 temp1.push_back(temp2);
385 temp1.push_back(temp2);
387 desc.addVPSet(
"vertexCollections", vpsd1, temp1);
389 desc.addUntracked<
bool>(
"verbose",
false);
393 psd0.
add<
int>(
"numTracksThreshold", 0);
416 desc.add<
bool>(
"isRecoveryIteration",
false);
419 descriptions.
add(
"primaryVertexProducer",
desc);