32 if(trackSelectionAlgorithm==
"filter"){
34 }
else if (trackSelectionAlgorithm==
"filterWithThreshold"){
37 throw VertexException(
"PrimaryVertexProducerAlgorithm: unknown track selection algorithm: " + trackSelectionAlgorithm);
43 if (clusteringAlgorithm==
"gap"){
45 }
else if(clusteringAlgorithm==
"DA"){
49 else if(clusteringAlgorithm ==
"DA_vect") {
52 else if( clusteringAlgorithm==
"DA2D" ) {
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 meantime += time*inverr;
204 expv_x2 += time*time*inverr;
207 meantime = meantime/normw;
208 expv_x2 = expv_x2/normw;
210 const double time_var = (
f4D ? expv_x2 - meantime*meantime : 0. );
214 if(
algorithm->useBeamConstraint && validBS &&((*iclus).size()>1) ){
216 v =
algorithm->fitter->vertex(*iclus, beamSpot);
221 err(3,3) = time_var/(double)iclus->size();
226 }
else if( !(
algorithm->useBeamConstraint) && ((*iclus).size()>1) ) {
233 err(3,3) = time_var/(double)iclus->size();
249 else std::cout <<
"Invalid fitted vertex\n";
254 && (!validBS || (*(
algorithm->vertexSelector))(
v,beamVertexState))
259 std::cout <<
"PrimaryVertexProducerAlgorithm::vertices candidates =" << pvs.size() << std::endl;
263 if (clusters.size()>2 && clusters.size() > 2*pvs.size())
264 edm::LogWarning(
"PrimaryVertexProducer") <<
"more than half of candidate vertices lost " << pvs.size() <<
' ' << clusters.size();
266 if (pvs.empty() && seltks.size()>5)
267 edm::LogWarning(
"PrimaryVertexProducer") <<
"no vertex found with " << seltks.size() <<
" tracks and " << clusters.size() <<
" vertex-candidates";
277 for (std::vector<TransientVertex>::const_iterator iv = pvs.begin();
278 iv != pvs.end(); iv++) {
285 if ( (bse.cxx() <= 0.) ||
287 (bse.czz() <= 0.) ) {
289 we(0,0)=10000; we(1,1)=10000; we(2,2)=10000;
292 std::cout <<
"RecoVertex/PrimaryVertexProducer: "
293 <<
"Beamspot with invalid errors "<<bse.matrix()<<std::endl;
294 std::cout <<
"Will put Vertex derived from dummy-fake BeamSpot into Event.\n";
300 std::cout <<
"RecoVertex/PrimaryVertexProducer: "
301 <<
" will put Vertex derived from BeamSpot into Event.\n";
308 for(reco::VertexCollection::const_iterator
v=vColl.begin();
309 v!=vColl.end(); ++
v){
311 <<
"#trk " << std::setw(3) <<
v->tracksSize()
312 <<
" chi2 " << std::setw(4) <<
v->chi2()
313 <<
" ndof " << std::setw(3) <<
v->ndof()
314 <<
" x " << std::setw(6) <<
v->position().x()
315 <<
" dx " << std::setw(6) <<
v->xError()
316 <<
" y " << std::setw(6) <<
v->position().y()
317 <<
" dy " << std::setw(6) <<
v->yError()
318 <<
" z " << std::setw(6) <<
v->position().z()
319 <<
" dz " << std::setw(6) <<
v->zError();
322 <<
" 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.
edm::EDGetTokenT< reco::BeamSpot > bsToken
VertexFitter< 5 > * fitter
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
virtual std::vector< std::vector< reco::TransientTrack > > clusterize(const std::vector< reco::TransientTrack > &tracks) const =0
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< reco::TransientTrack > select(const std::vector< reco::TransientTrack > &tracks) const =0
virtual void produce(edm::Event &, const edm::EventSetup &)
T const * product() const
std::vector< algo > algorithms
PrimaryVertexProducer(const edm::ParameterSet &)
GlobalError error() const
const Point & position() const
position
Covariance3DMatrix rotatedCovariance3D() const