1 |
loizides |
1.2 |
//--------------------------------------------------------------------------------------------------
|
2 |
bendavid |
1.11 |
// $Id: ProducerV2SS.h,v 1.10 2009/12/07 22:50:39 loizides Exp $
|
3 |
bendavid |
1.1 |
//
|
4 |
loizides |
1.2 |
// ProducerV2SS
|
5 |
bendavid |
1.1 |
//
|
6 |
loizides |
1.9 |
// Producer for V particle reconstruction (long lived particle, decaying to two stable particles).
|
7 |
bendavid |
1.1 |
//
|
8 |
loizides |
1.6 |
// Authors: C.Paus, M.Rudolph
|
9 |
loizides |
1.2 |
//--------------------------------------------------------------------------------------------------
|
10 |
|
|
|
11 |
loizides |
1.4 |
#ifndef MITEDM_PRODUCERS_PRODUCERV2SS_H
|
12 |
|
|
#define MITEDM_PRODUCERS_PRODUCERV2SS_H
|
13 |
mrudolph |
1.5 |
|
14 |
|
|
#include "MitEdm/Producers/interface/ProducerD2SS.h"
|
15 |
|
|
|
16 |
|
|
namespace mitedm
|
17 |
|
|
{
|
18 |
|
|
class ProducerV2SS : public ProducerD2SS
|
19 |
|
|
{
|
20 |
loizides |
1.10 |
public:
|
21 |
|
|
explicit ProducerV2SS(const edm::ParameterSet &cfg);
|
22 |
|
|
~ProducerV2SS();
|
23 |
mrudolph |
1.5 |
|
24 |
loizides |
1.10 |
protected:
|
25 |
|
|
virtual void produce (edm::Event&, const edm::EventSetup&);
|
26 |
mrudolph |
1.5 |
|
27 |
bendavid |
1.11 |
double rhoMin_; //minimum conversion radius
|
28 |
|
|
double massMin_; //minimum mass
|
29 |
|
|
double massMax_; //maximum mass
|
30 |
|
|
double dZMax_; //maximum dZ0
|
31 |
|
|
bool useHitDropper_; //=true if hit dropper is to be used
|
32 |
|
|
bool applyChargeConstraint_; //require opposite charged tracks
|
33 |
|
|
bool applyMinTrackProb_;
|
34 |
|
|
double minTrackProb_;
|
35 |
mrudolph |
1.5 |
};
|
36 |
|
|
}
|
37 |
bendavid |
1.1 |
#endif
|