33 if(trackSelectionAlgorithm==
"filter"){
35 }
else if (trackSelectionAlgorithm==
"filterWithThreshold"){
38 throw VertexException(
"PrimaryVertexProducerAlgorithm: unknown track selection algorithm: " + trackSelectionAlgorithm);
44 if (clusteringAlgorithm==
"gap"){
46 }
else if(clusteringAlgorithm==
"DA"){
50 else if(clusteringAlgorithm ==
"DA_vect") {
52 }
else if( clusteringAlgorithm==
"DA2D_vect" ) {
58 throw VertexException(
"PrimaryVertexProducerAlgorithm: unknown clustering algorithm: " + clusteringAlgorithm);
68 if (conf.
exists(
"vertexCollections")){
71 for( std::vector< edm::ParameterSet >::const_iterator algoconf = vertexCollections.begin(); algoconf != vertexCollections.end(); algoconf++){
75 if (fitterAlgorithm==
"KalmanVertexFitter") {
77 }
else if( fitterAlgorithm==
"AdaptiveVertexFitter") {
80 throw VertexException(
"PrimaryVertexProducerAlgorithm: unknown algorithm: " + fitterAlgorithm);
83 algorithm.
minNdof = algoconf->getParameter<
double>(
"minNdof");
88 produces<reco::VertexCollection>(algorithm.
label);
91 edm::LogWarning(
"MisConfiguration")<<
"this module's configuration has changed, please update to have a vertexCollections=cms.VPSet parameter.";
95 if (fitterAlgorithm==
"KalmanVertexFitter") {
97 }
else if( fitterAlgorithm==
"AdaptiveVertexFitter") {
100 throw VertexException(
"PrimaryVertexProducerAlgorithm: unknown algorithm: " + fitterAlgorithm);
102 algorithm.
label =
"";
109 produces<reco::VertexCollection>(algorithm.
label);
134 if (recoBeamSpotHandle.
isValid()){
135 beamSpot = *recoBeamSpotHandle;
137 edm::LogError(
"UnusableBeamSpot") <<
"No beam spot available from EventSetup";
142 if ( (beamVertexState.
error().
cxx() <= 0.) ||
143 (beamVertexState.
error().
cyy() <= 0.) ||
144 (beamVertexState.
error().
czz() <= 0.) ) {
159 std::vector<reco::TransientTrack> t_tks;
166 t_tks = (*theB).build(tks, beamSpot, *(trackTimesH.
product()), *(trackTimeResosH.
product()));
168 t_tks = (*theB).build(tks, beamSpot);
171 <<
"Found: " << t_tks.size() <<
" reconstructed tracks" <<
"\n";
181 if (
fVerbose){
std::cout <<
" clustering returned "<< clusters.size() <<
" clusters from " << seltks.size() <<
" selected tracks" <<std::endl;}
188 auto result = std::make_unique<reco::VertexCollection>();
192 std::vector<TransientVertex> pvs;
193 for (std::vector< std::vector<reco::TransientTrack> >::const_iterator iclus
194 = clusters.begin(); iclus != clusters.end(); iclus++) {
199 double meantime = 0.;
202 for(
const auto& tk : *iclus ) {
203 const double time = tk.timeExt();
204 const double err = tk.dtErrorExt();
205 const double inverr = err > 0. ? 1.0/err : 0.;
206 const double w = inverr*inverr;
208 sumwt2 += w*time*
time;
211 meantime = sumwt/sumw;
212 double sumsq = sumwt2 - sumwt*sumwt/sumw;
213 double chisq = iclus->size()>1 ? sumsq/double(iclus->size()-1) : sumsq/
double(iclus->size());
214 vartime = chisq/sumw;
218 if(
algorithm->useBeamConstraint && validBS &&((*iclus).size()>1) ){
220 v =
algorithm->fitter->vertex(*iclus, beamSpot);
230 }
else if( !(
algorithm->useBeamConstraint) && ((*iclus).size()>1) ) {
251 std::cout <<
" cluster size = " << (*iclus).size() << std::endl;
254 std::cout <<
"Invalid fitted vertex, cluster size=" << (*iclus).size() << std::endl;
260 && (!validBS || (*(
algorithm->vertexSelector))(
v,beamVertexState))
265 std::cout <<
"PrimaryVertexProducerAlgorithm::vertices candidates =" << pvs.size() << std::endl;
269 if (clusters.size()>2 && clusters.size() > 2*pvs.size())
270 edm::LogWarning(
"PrimaryVertexProducer") <<
"more than half of candidate vertices lost " << pvs.size() <<
' ' << clusters.size();
272 if (pvs.empty() && seltks.size()>5)
273 edm::LogWarning(
"PrimaryVertexProducer") <<
"no vertex found with " << seltks.size() <<
" tracks and " << clusters.size() <<
" vertex-candidates";
283 for (std::vector<TransientVertex>::const_iterator iv = pvs.begin();
284 iv != pvs.end(); iv++) {
291 if ( (bse.cxx() <= 0.) ||
293 (bse.czz() <= 0.) ) {
295 we(0,0)=10000; we(1,1)=10000; we(2,2)=10000;
298 std::cout <<
"RecoVertex/PrimaryVertexProducer: " 299 <<
"Beamspot with invalid errors "<<bse.matrix()<<std::endl;
300 std::cout <<
"Will put Vertex derived from dummy-fake BeamSpot into Event.\n";
306 std::cout <<
"RecoVertex/PrimaryVertexProducer: " 307 <<
" will put Vertex derived from BeamSpot into Event.\n";
314 for(reco::VertexCollection::const_iterator
v=vColl.begin();
315 v!=vColl.end(); ++
v){
317 <<
"#trk " << std::setw(3) <<
v->tracksSize()
318 <<
" chi2 " << std::setw(4) <<
v->chi2()
319 <<
" ndof " << std::setw(3) <<
v->ndof()
320 <<
" x " << std::setw(6) <<
v->position().x()
321 <<
" dx " << std::setw(6) <<
v->xError()
322 <<
" y " << std::setw(6) <<
v->position().y()
323 <<
" dy " << std::setw(6) <<
v->yError()
324 <<
" z " << std::setw(6) <<
v->position().z()
325 <<
" dz " << std::setw(6) <<
v->zError();
328 <<
" dt " << std::setw(6) <<
v->tError();
GlobalError positionError() const
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
vertexCollections
1 cm max separation between clusters
edm::EDGetTokenT< reco::BeamSpot > bsToken
VertexFitter< 5 > * fitter
~PrimaryVertexProducer() override
bool getByToken(EDGetToken token, Handle< PROD > &result) const
const AlgebraicSymMatrix33 matrix() const
float totalChiSquared() const
edm::EDGetTokenT< reco::TrackCollection > trkToken
TrackClusterizerInZ * theTrackClusterizer
bool exists(std::string const ¶meterName) const
checks if a parameter exists
std::vector< Vertex > VertexCollection
collection of Vertex objects
edm::EDGetTokenT< edm::ValueMap< float > > trkTimesToken
const AlgebraicSymMatrix44 & matrix4D() const
#define DEFINE_FWK_MODULE(type)
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepSym< double, 3 > > AlgebraicSymMatrix33
std::vector< reco::TransientTrack > const & originalTracks() const
edm::EDGetTokenT< edm::ValueMap< float > > trkTimeResosToken
float degreesOfFreedom() const
VertexCompatibleWithBeam * vertexSelector
GlobalPoint position() const
TrackFilterForPVFindingBase * theTrackFilter
virtual std::vector< std::vector< reco::TransientTrack > > clusterize(const std::vector< reco::TransientTrack > &tracks) const =0
T const * product() const
std::vector< algo > algorithms
virtual std::vector< reco::TransientTrack > select(const std::vector< reco::TransientTrack > &tracks) const =0
void produce(edm::Event &, const edm::EventSetup &) override
PrimaryVertexProducer(const edm::ParameterSet &)
GlobalError error() const
const Point & position() const
position
Covariance3DMatrix rotatedCovariance3D() const