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++) {
196 double meantime = 0.;
200 for(
const auto& tk : *iclus ) {
201 const double time = tk.timeExt();
202 const double inverr = 1.0/tk.dtErrorExt();
203 const double w = inverr*inverr;
205 expv_x2 += time*time*
w;
208 meantime = meantime/normw;
209 expv_x2 = expv_x2/normw;
211 const double time_var = (
f4D ? expv_x2 - meantime*meantime : 0. );
215 if(
algorithm->useBeamConstraint && validBS &&((*iclus).size()>1) ){
217 v =
algorithm->fitter->vertex(*iclus, beamSpot);
222 err(3,3) = time_var/(double)iclus->size();
227 }
else if( !(
algorithm->useBeamConstraint) && ((*iclus).size()>1) ) {
234 err(3,3) = time_var/(double)iclus->size();
248 std::cout <<
" cluster size = " << (*iclus).size() << std::endl;
251 std::cout <<
"Invalid fitted vertex, cluster size=" << (*iclus).size() << std::endl;
257 && (!validBS || (*(
algorithm->vertexSelector))(
v,beamVertexState))
262 std::cout <<
"PrimaryVertexProducerAlgorithm::vertices candidates =" << pvs.size() << std::endl;
266 if (clusters.size()>2 && clusters.size() > 2*pvs.size())
267 edm::LogWarning(
"PrimaryVertexProducer") <<
"more than half of candidate vertices lost " << pvs.size() <<
' ' << clusters.size();
269 if (pvs.empty() && seltks.size()>5)
270 edm::LogWarning(
"PrimaryVertexProducer") <<
"no vertex found with " << seltks.size() <<
" tracks and " << clusters.size() <<
" vertex-candidates";
280 for (std::vector<TransientVertex>::const_iterator iv = pvs.begin();
281 iv != pvs.end(); iv++) {
288 if ( (bse.cxx() <= 0.) ||
290 (bse.czz() <= 0.) ) {
292 we(0,0)=10000; we(1,1)=10000; we(2,2)=10000;
295 std::cout <<
"RecoVertex/PrimaryVertexProducer: " 296 <<
"Beamspot with invalid errors "<<bse.matrix()<<std::endl;
297 std::cout <<
"Will put Vertex derived from dummy-fake BeamSpot into Event.\n";
303 std::cout <<
"RecoVertex/PrimaryVertexProducer: " 304 <<
" will put Vertex derived from BeamSpot into Event.\n";
311 for(reco::VertexCollection::const_iterator
v=vColl.begin();
312 v!=vColl.end(); ++
v){
314 <<
"#trk " << std::setw(3) <<
v->tracksSize()
315 <<
" chi2 " << std::setw(4) <<
v->chi2()
316 <<
" ndof " << std::setw(3) <<
v->ndof()
317 <<
" x " << std::setw(6) <<
v->position().x()
318 <<
" dx " << std::setw(6) <<
v->xError()
319 <<
" y " << std::setw(6) <<
v->position().y()
320 <<
" dy " << std::setw(6) <<
v->yError()
321 <<
" z " << std::setw(6) <<
v->position().z()
322 <<
" dz " << std::setw(6) <<
v->zError();
325 <<
" 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
#define DEFINE_FWK_MODULE(type)
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
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