Go to the documentation of this file.00001 #ifndef RecoJets_JetProducers_CompoundJetProducer_h
00002 #define RecoJets_JetProducers_CompoundJetProducer_h
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #include "RecoJets/JetProducers/plugins/VirtualJetProducer.h"
00036
00037 #include "RecoJets/JetAlgorithms/interface/CompoundPseudoJet.h"
00038
00039 namespace cms
00040 {
00041 class CompoundJetProducer : public VirtualJetProducer
00042 {
00043 public:
00044
00045 CompoundJetProducer(const edm::ParameterSet& ps);
00046
00047 virtual ~CompoundJetProducer() {}
00048
00049 protected:
00050 std::vector<CompoundPseudoJet> fjCompoundJets_;
00051
00052 protected:
00053
00054
00055
00056 virtual void inputTowers();
00057
00060 virtual void output( edm::Event & iEvent, edm::EventSetup const& iSetup );
00061 template< typename T >
00062 void writeCompoundJets( edm::Event & iEvent, edm::EventSetup const& iSetup);
00063
00064
00065 };
00066
00067
00068
00069
00070 }
00071
00072
00073 #endif