1 |
bendavid |
1.1 |
//--------------------------------------------------------------------------------------------------
|
2 |
loizides |
1.2 |
// $Id: ProducerConversions.h,v 1.1 2008/09/17 12:49:47 bendavid Exp $
|
3 |
bendavid |
1.1 |
//
|
4 |
|
|
// ProducerConversions
|
5 |
|
|
//
|
6 |
loizides |
1.2 |
// Conversion reconstruction using tracks and MultiVertexFitter.
|
7 |
bendavid |
1.1 |
//
|
8 |
loizides |
1.2 |
// Authors: J.Bendavid
|
9 |
bendavid |
1.1 |
//--------------------------------------------------------------------------------------------------
|
10 |
|
|
|
11 |
loizides |
1.2 |
#ifndef MITEDM_PRODUCERS_PRODUCERCONVERSIONS_H
|
12 |
|
|
#define MITEDM_PRODUCERS_PRODUCERCONVERSIONS_H
|
13 |
bendavid |
1.1 |
|
14 |
loizides |
1.2 |
#include "MitEdm/Producers/interface/BaseCandProducer.h"
|
15 |
bendavid |
1.1 |
|
16 |
|
|
namespace mitedm
|
17 |
|
|
{
|
18 |
loizides |
1.2 |
class ProducerConversions : public BaseCandProducer
|
19 |
bendavid |
1.1 |
{
|
20 |
loizides |
1.2 |
public:
|
21 |
|
|
explicit ProducerConversions(const edm::ParameterSet&);
|
22 |
|
|
~ProducerConversions();
|
23 |
bendavid |
1.1 |
|
24 |
loizides |
1.2 |
protected:
|
25 |
|
|
void produce(edm::Event&, const edm::EventSetup&);
|
26 |
|
|
|
27 |
|
|
std::string iStables1_; //input label first stable particle
|
28 |
|
|
std::string iStables2_; //input label second stable particle
|
29 |
|
|
bool convConstraint_; //todo
|
30 |
|
|
bool convConstraint3D_; //todo
|
31 |
|
|
double rhoMin_; //todo
|
32 |
bendavid |
1.1 |
};
|
33 |
|
|
}
|
34 |
|
|
#endif
|