CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_8_patch3/src/DataFormats/ParticleFlowReco/interface/PFMultilinksTC.h

Go to the documentation of this file.
00001 #ifndef __PFMultilinksTC__
00002 #define __PFMultilinksTC__
00003 
00004 // Done by Glowinski & Gouzevitch                                                                                                                                                   
00005 
00006 #include <vector>
00007 
00008 namespace reco {
00009 
00013   typedef std::vector<std::pair<double, double> > PFMultilinksType;
00014   class PFMultiLinksTC
00015   {
00016   public:
00017     bool                                        isValid;
00018     PFMultilinksType                            linkedClusters;
00019 
00020   public:
00021     PFMultiLinksTC(bool isvalid = false) : isValid(isvalid)
00022       {}
00023   };
00024 }
00025 
00026 
00027 #endif