Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:07

0001 #ifndef MultiVertexStateCombiner_H
0002 #define MultiVertexStateCombiner_H
0003 
0004 #include "RecoVertex/VertexPrimitives/interface/VertexState.h"
0005 
0006 #include <vector>
0007 
0008 /**
0009    * Class to collapse (combine) a Gaussian mixture of VertexStates
0010    * into one.
0011    * (c.f. R. Fruewirth et.al., Comp.Phys.Comm 100 (1997) 1
0012    */
0013 
0014 class MultiVertexStateCombiner {
0015 public:
0016   typedef std::vector<VertexState> VSC;
0017 
0018   VertexState combine(const VSC& theMixture) const;
0019 };
0020 
0021 #endif