ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerD2SS.h
Revision: 1.5
Committed: Fri Oct 24 19:57:47 2008 UTC (16 years, 6 months ago) by paus
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_009c, Mit_009b, Mit_009a, Mit_009, Mit_008, Mit_008pre2, Mit_008pre1, Mit_006b, Mit_006a, Mit_006
Changes since 1.4: +5 -5 lines
Log Message:
Beautification.

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: ProducerD2SS.h,v 1.4 2008/09/27 05:48:25 loizides Exp $
3 //
4 // ProducerD2SS
5 //
6 // Commmon two body particle decay reconstruction (e.g J/psi -> mu mu), special implementations
7 // using this as a base class exist for V and conversion.
8 //
9 // Authors: C.Paus
10 //--------------------------------------------------------------------------------------------------
11
12 #ifndef MITEDM_PRODUCERS_PRODUCERD2SS_H
13 #define MITEDM_PRODUCERS_PRODUCERD2SS_H
14
15 #include "MitEdm/Producers/interface/BaseCandProducer.h"
16
17 namespace mitedm
18 {
19 class ProducerD2SS : public BaseCandProducer
20 {
21 public:
22 explicit ProducerD2SS(const edm::ParameterSet&);
23 ~ProducerD2SS();
24
25 protected:
26 void produce(edm::Event&, const edm::EventSetup&);
27
28 // Parameters to steer the particularities of this instance
29 std::string iStables1_; // input label first stable particle
30 std::string iStables2_; // input label second stable particle
31 };
32 }
33 #endif