Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

ClusterIsAssoc.h

Go to the documentation of this file.
00001 #ifndef ATLFAST_CLUSTERISASSOCIATED_H
00002 #define ATLFAST_CLUSTERISASSOCIATED_H
00003 
00004 #include "GaudiKernel/SmartRefVector.h"
00005 #include "AtlfastEvent/ReconstructedParticle.h"
00006 
00007 
00008 //--------------------------------------------------------
00009 
00010 namespace Atlfast {
00011   
00012   class Cluster;
00013 
00014   class ClusterIsAssoc {
00015     
00016   public:
00017     
00018     ClusterIsAssoc(){}
00019     
00020     bool operator() ( const Cluster* c ) const { 
00021       const SmartRefVector<ReconstructedParticle> srv = 
00022         c->associations( ReconstructedParticle());
00023       return (srv.size()>0);
00024     }      
00025   };
00026 }  // End namespace
00027 
00028 
00029 
00030 
00031 #endif
00032 
00033 
00034 
00035 
00036 

Generated on Wed May 1 14:11:31 2002 for AtlfastAlgs by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001