CMS 3D CMS Logo

List of all members | Public Member Functions
DummyVertexSmoother< N > Class Template Reference

#include <DummyVertexSmoother.h>

Inheritance diagram for DummyVertexSmoother< N >:
VertexSmoother< N >

Public Member Functions

DummyVertexSmootherclone () const override
 
CachingVertex< Nsmooth (const CachingVertex< N > &) const override
 
- Public Member Functions inherited from VertexSmoother< N >
 VertexSmoother ()
 
virtual ~VertexSmoother ()
 

Detailed Description

template<unsigned int N>
class DummyVertexSmoother< N >

A dummy vertex smoother. Input = Output.

Definition at line 11 of file DummyVertexSmoother.h.

Member Function Documentation

◆ clone()

template<unsigned int N>
DummyVertexSmoother< N > * DummyVertexSmoother< N >::clone ( ) const
overridevirtual

Clone method

Implements VertexSmoother< N >.

Definition at line 9 of file DummyVertexSmoother.cc.

9  {
10  return new DummyVertexSmoother(*this);
11 }

◆ smooth()

template<unsigned int N>
CachingVertex< N > DummyVertexSmoother< N >::smooth ( const CachingVertex< N > &  vertex) const
overridevirtual

Smoothing method

Implements VertexSmoother< N >.

Definition at line 4 of file DummyVertexSmoother.cc.

References bphysicsOniaDQM_cfi::vertex.

4  {
5  return vertex;
6 }