1 |
bendavid |
1.1 |
//==================================================================================================
|
2 |
|
|
// $Id $
|
3 |
|
|
//
|
4 |
|
|
// Description: class ProducerV2SS
|
5 |
|
|
//
|
6 |
|
|
// V particle reconstruction (long lived particle, decaying to two stables)
|
7 |
|
|
//
|
8 |
|
|
// Original Author: Christoph Paus
|
9 |
|
|
// Created: Mon Jul 21 14:42:57 CEST 2008
|
10 |
|
|
//==================================================================================================
|
11 |
|
|
#ifndef _PRODUCERS_ProducerV2SS_H_
|
12 |
|
|
#define _PRODUCERS_ProducerV2SS_H_
|
13 |
|
|
|
14 |
|
|
#include "MitEdm/Producers/interface/D2SS.h"
|
15 |
|
|
|
16 |
|
|
namespace mitedm
|
17 |
|
|
{
|
18 |
|
|
class ProducerV2SS : public D2SS
|
19 |
|
|
{
|
20 |
|
|
public:
|
21 |
|
|
explicit ProducerV2SS(const edm::ParameterSet&);
|
22 |
|
|
~ProducerV2SS();
|
23 |
|
|
|
24 |
|
|
protected:
|
25 |
|
|
virtual void beginJob(const edm::EventSetup&);
|
26 |
|
|
virtual void produce (edm::Event&, const edm::EventSetup&);
|
27 |
|
|
virtual void endJob ();
|
28 |
|
|
};
|
29 |
|
|
}
|
30 |
|
|
#endif
|