00001 #ifndef CASTORSIMPLERECONSTRUCTOR_H 00002 #define CASTORSIMPLERECONSTRUCTOR_H 1 00003 00004 #include "FWCore/Framework/interface/EDProducer.h" 00005 #include "DataFormats/Common/interface/EDProduct.h" 00006 #include "FWCore/Framework/interface/Event.h" 00007 #include "DataFormats/Common/interface/Handle.h" 00008 00009 #include "FWCore/Framework/interface/EventSetup.h" 00010 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00011 00012 #include "RecoLocalCalo/CastorReco/interface/CastorSimpleRecAlgo.h" 00013 00014 class CastorSimpleReconstructor : public edm::EDProducer { 00015 public: 00016 explicit CastorSimpleReconstructor(const edm::ParameterSet& ps); 00017 virtual ~CastorSimpleReconstructor(); 00018 virtual void produce(edm::Event& e, const edm::EventSetup& c); 00019 private: 00020 CastorSimpleRecAlgo reco_; 00021 DetId::Detector det_; 00022 int subdet_; 00023 // HcalOtherSubdetector subdetOther_; 00024 edm::InputTag inputLabel_; 00025 }; 00026 00027 #endif