1 |
loizides |
1.2 |
//--------------------------------------------------------------------------------------------------
|
2 |
loizides |
1.3 |
// $Id:$
|
3 |
bendavid |
1.1 |
//
|
4 |
loizides |
1.2 |
// ProducerD2SS
|
5 |
bendavid |
1.1 |
//
|
6 |
|
|
// Commmon two body particle decay reconstruction (e.g J/psi), special implementations using this as
|
7 |
|
|
// a base class exist for V and conversion.
|
8 |
|
|
//
|
9 |
loizides |
1.3 |
// Authors: C.Paus
|
10 |
loizides |
1.2 |
//--------------------------------------------------------------------------------------------------
|
11 |
|
|
|
12 |
bendavid |
1.1 |
#ifndef _PRODUCERS_ProducerD2SS_H_
|
13 |
|
|
#define _PRODUCERS_ProducerD2SS_H_
|
14 |
|
|
|
15 |
|
|
#include "MitEdm/Producers/interface/BaseCandidate.h"
|
16 |
|
|
|
17 |
|
|
namespace mitedm
|
18 |
|
|
{
|
19 |
|
|
class ProducerD2SS : public BaseCandidate
|
20 |
|
|
{
|
21 |
|
|
public:
|
22 |
|
|
explicit ProducerD2SS(const edm::ParameterSet&);
|
23 |
|
|
~ProducerD2SS();
|
24 |
|
|
|
25 |
|
|
protected:
|
26 |
|
|
virtual void beginJob(const edm::EventSetup&);
|
27 |
|
|
virtual void produce(edm::Event&, const edm::EventSetup&);
|
28 |
|
|
virtual void endJob();
|
29 |
|
|
|
30 |
|
|
// Parameters to steer the particularities of this instance
|
31 |
|
|
std::string iStables1_;
|
32 |
|
|
std::string iStables2_;
|
33 |
|
|
};
|
34 |
|
|
}
|
35 |
|
|
#endif
|