ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerV2SS.h
Revision: 1.6
Committed: Fri Oct 3 23:53:50 2008 UTC (16 years, 7 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_006b, Mit_006a, Mit_006, Mit_005
Changes since 1.5: +2 -4 lines
Log Message:
Cosmetics and coding conventions.

File Contents

# User Rev Content
1 loizides 1.2 //--------------------------------------------------------------------------------------------------
2 loizides 1.6 // $Id: ProducerV2SS.h,v 1.5 2008/09/30 08:51:29 mrudolph 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.6 // Authors: C.Paus, M.Rudolph
9 loizides 1.2 //--------------------------------------------------------------------------------------------------
10    
11 loizides 1.4 #ifndef MITEDM_PRODUCERS_PRODUCERV2SS_H
12     #define MITEDM_PRODUCERS_PRODUCERV2SS_H
13 mrudolph 1.5
14     #include "MitEdm/Producers/interface/ProducerD2SS.h"
15    
16     namespace mitedm
17     {
18     class ProducerV2SS : public ProducerD2SS
19     {
20     public:
21     explicit ProducerV2SS(const edm::ParameterSet &cfg);
22     ~ProducerV2SS();
23    
24     protected:
25     virtual void produce (edm::Event&, const edm::EventSetup&);
26    
27     double rhoMin_;
28     double massMin_;
29     double massMax_;
30     double dZMax_;
31     };
32     }
33 bendavid 1.1 #endif