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
|