00001 #ifndef VIS_RECO_JETS_VIS_CANDIDATE_TWIG_H 00002 # define VIS_RECO_JETS_VIS_CANDIDATE_TWIG_H 00003 00004 //<<<<<< INCLUDES >>>>>> 00005 00006 # include "VisFramework/VisFrameworkBase/interface/VisQueuedTwig.h" 00007 # include "VisFramework/VisFrameworkBase/interface/VisCaloAnnotation.h" 00008 # include "VisFramework/VisFrameworkBase/interface/VisCaloEnergyScale.h" 00009 # include "VisFramework/VisFrameworkBase/interface/VisEnergyCut.h" 00010 # include "VisFramework/VisFrameworkBase/interface/VisLegoScale.h" 00011 00012 //<<<<<< PUBLIC DEFINES >>>>>> 00013 //<<<<<< PUBLIC CONSTANTS >>>>>> 00014 //<<<<<< PUBLIC TYPES >>>>>> 00015 00016 namespace reco 00017 { 00018 class Candidate; 00019 } 00020 00021 //<<<<<< PUBLIC VARIABLES >>>>>> 00022 //<<<<<< PUBLIC FUNCTIONS >>>>>> 00023 //<<<<<< CLASS DECLARATIONS >>>>>> 00024 00025 class VisCandidateTwig : public VisQueuedTwig 00026 { 00027 public: 00028 VisCandidateTwig (IgState *state, IgTwig *parent, const std::string &name = "", 00029 const std::string &friendlyName = "", 00030 const std::string &moduleLabel = "", 00031 const std::string &instanceName = "", 00032 const std::string &processName = ""); 00033 00034 // implicit copy constructor 00035 // implicit assignment operator 00036 // implicit destructor 00037 00038 virtual void onNewEvent (const edm::Event &event, 00039 const edm::EventSetup &eventSetup); 00040 00041 using VisQueuedTwig::update; 00042 virtual void update (IgTextRep *rep); 00043 virtual void update (Ig3DRep *rep); 00044 virtual void update (IgLegoRep *rep); 00045 virtual void update (IgRPhiRep *rep); 00046 virtual void update (IgRZRep *rep); 00047 virtual void scaleChanged (void); 00048 00049 private: 00050 std::string m_text; 00051 const std::string m_friendlyName; 00052 const std::string m_moduleLabel; 00053 const std::string m_instanceName; 00054 const std::string m_processName; 00055 std::vector<const reco::Candidate *> m_candidates; 00056 VisLegoScale m_scale; 00057 VisEnergyCut m_cut; 00058 VisCaloEnergyScale m_escale; 00059 VisCaloAnnotation m_annotation; 00060 }; 00061 00062 //<<<<<< INLINE PUBLIC FUNCTIONS >>>>>> 00063 //<<<<<< INLINE MEMBER FUNCTIONS >>>>>> 00064 00065 #endif // VIS_RECO_JETS_VIS_CANDIDATE_TWIG_H