ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/HitDropperESProducer.h
Revision: 1.2
Committed: Fri Mar 20 18:01:48 2009 UTC (16 years, 1 month ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_009c, Mit_009b, Mit_009a, Mit_009, Mit_008
Changes since 1.1: +4 -5 lines
Log Message:
Cleanup

File Contents

# User Rev Content
1 bendavid 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.2 // $Id: HitDropperESProducer.h,v 1.1 2008/10/13 10:39:23 bendavid Exp $
3 bendavid 1.1 //
4     // HitDropperESProducer
5     //
6 loizides 1.2 // Produces HitDropper helper class for dropping hits from tracks after vertex fit.
7 bendavid 1.1 //
8     // Authors: J.Bendavid
9     //--------------------------------------------------------------------------------------------------
10    
11     #ifndef MITEDM_PRODUCERS_HITDROPPERESPRODUCER_H
12     #define MITEDM_PRODUCERS_HITDROPPERESPRODUCER_H
13    
14     #include "FWCore/Framework/interface/ESProducer.h"
15     #include "FWCore/ParameterSet/interface/ParameterSet.h"
16    
17    
18     #include "MitEdm/Producers/interface/HitDropperRecord.h"
19     #include "MitEdm/Producers/interface/HitDropper.h"
20    
21     #include <boost/shared_ptr.hpp>
22    
23     namespace mitedm {
24     class HitDropperESProducer: public edm::ESProducer{
25     public:
26     HitDropperESProducer(const edm::ParameterSet & p);
27     virtual ~HitDropperESProducer();
28     boost::shared_ptr<HitDropper> produce(const HitDropperRecord &);
29     private:
30 loizides 1.2 boost::shared_ptr<HitDropper> _dropper; //hit dropper
31     edm::ParameterSet pset_; //pset
32 bendavid 1.1 };
33     }
34     #endif