ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerV2SS.h
Revision: 1.7
Committed: Tue Mar 3 21:31:08 2009 UTC (16 years, 2 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_008pre2, Mit_008pre1
Changes since 1.6: +2 -1 lines
Log Message:
Make V producer runnable in Aod by making HitDropper usage configurable, and changing the nofit python file a bit

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: ProducerV2SS.h,v 1.6 2008/10/03 23:53:50 loizides Exp $
3 //
4 // ProducerV2SS
5 //
6 // V particle reconstruction (long lived particle, decaying to two stables)
7 //
8 // Authors: C.Paus, M.Rudolph
9 //--------------------------------------------------------------------------------------------------
10
11 #ifndef MITEDM_PRODUCERS_PRODUCERV2SS_H
12 #define MITEDM_PRODUCERS_PRODUCERV2SS_H
13
14 #include "MitEdm/Producers/interface/ProducerD2SS.h"
15
16 namespace mitedm
17 {
18 class ProducerV2SS : public ProducerD2SS
19 {
20 public:
21 explicit ProducerV2SS(const edm::ParameterSet &cfg);
22 ~ProducerV2SS();
23
24 protected:
25 virtual void produce (edm::Event&, const edm::EventSetup&);
26
27 double rhoMin_;
28 double massMin_;
29 double massMax_;
30 double dZMax_;
31 bool useHitDropper_;
32 };
33 }
34 #endif