1 |
loizides |
1.2 |
//--------------------------------------------------------------------------------------------------
|
2 |
paus |
1.5 |
// $Id: ProducerD2SS.h,v 1.4 2008/09/27 05:48:25 loizides Exp $
|
3 |
bendavid |
1.1 |
//
|
4 |
loizides |
1.2 |
// ProducerD2SS
|
5 |
bendavid |
1.1 |
//
|
6 |
paus |
1.5 |
// 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 |
bendavid |
1.1 |
//
|
9 |
loizides |
1.3 |
// Authors: C.Paus
|
10 |
loizides |
1.2 |
//--------------------------------------------------------------------------------------------------
|
11 |
|
|
|
12 |
loizides |
1.4 |
#ifndef MITEDM_PRODUCERS_PRODUCERD2SS_H
|
13 |
|
|
#define MITEDM_PRODUCERS_PRODUCERD2SS_H
|
14 |
bendavid |
1.1 |
|
15 |
loizides |
1.4 |
#include "MitEdm/Producers/interface/BaseCandProducer.h"
|
16 |
bendavid |
1.1 |
|
17 |
|
|
namespace mitedm
|
18 |
|
|
{
|
19 |
loizides |
1.4 |
class ProducerD2SS : public BaseCandProducer
|
20 |
bendavid |
1.1 |
{
|
21 |
|
|
public:
|
22 |
|
|
explicit ProducerD2SS(const edm::ParameterSet&);
|
23 |
|
|
~ProducerD2SS();
|
24 |
|
|
|
25 |
|
|
protected:
|
26 |
loizides |
1.4 |
void produce(edm::Event&, const edm::EventSetup&);
|
27 |
bendavid |
1.1 |
|
28 |
|
|
// Parameters to steer the particularities of this instance
|
29 |
paus |
1.5 |
std::string iStables1_; // input label first stable particle
|
30 |
|
|
std::string iStables2_; // input label second stable particle
|
31 |
bendavid |
1.1 |
};
|
32 |
|
|
}
|
33 |
|
|
#endif
|