ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerV2SS.h
Revision: 1.3
Committed: Wed Sep 10 03:28:38 2008 UTC (16 years, 8 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.2: +5 -5 lines
Log Message:
Cleanup.

File Contents

# User Rev Content
1 loizides 1.2 //--------------------------------------------------------------------------------------------------
2 loizides 1.3 // $Id: ProducerV2SS.h,v 1.2 2008/08/29 00:27:21 loizides Exp $
3 bendavid 1.1 //
4 loizides 1.2 // ProducerV2SS
5 bendavid 1.1 //
6     // V particle reconstruction (long lived particle, decaying to two stables)
7     //
8 loizides 1.2 // Authors: C.Paus
9     //--------------------------------------------------------------------------------------------------
10    
11 loizides 1.3 #ifndef MITEDM__PRODUCERS_ProducerV2SS_H
12     #define MITEDM_PRODUCERS_ProducerV2SS_H
13 bendavid 1.1
14     #include "MitEdm/Producers/interface/D2SS.h"
15    
16     namespace mitedm
17     {
18     class ProducerV2SS : public D2SS
19     {
20     public:
21 loizides 1.3 explicit ProducerV2SS(const edm::ParameterSet &cfg);
22 bendavid 1.1 ~ProducerV2SS();
23    
24     protected:
25     virtual void beginJob(const edm::EventSetup&);
26     virtual void produce (edm::Event&, const edm::EventSetup&);
27 loizides 1.3 virtual void endJob();
28 bendavid 1.1 };
29     }
30     #endif