ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerConversions.h
Revision: 1.5
Committed: Wed Jul 15 20:38:24 2009 UTC (15 years, 9 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_012d, Mit_012c, Mit_012b, Mit_012a, Mit_012, Mit_011a, Mit_011, Mit_010a, Mit_010
Changes since 1.4: +2 -2 lines
Log Message:
Cleanup

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: ProducerConversions.h,v 1.4 2009/07/12 20:53:43 bendavid Exp $
3 //
4 // ProducerConversions
5 //
6 // Conversion reconstruction using tracks and MultiVertexFitter.
7 //
8 // Authors: J.Bendavid
9 //--------------------------------------------------------------------------------------------------
10
11 #ifndef MITEDM_PRODUCERS_PRODUCERCONVERSIONS_H
12 #define MITEDM_PRODUCERS_PRODUCERCONVERSIONS_H
13
14 #include "MitEdm/Producers/interface/BaseCandProducer.h"
15
16 namespace mitedm
17 {
18 class ProducerConversions : public BaseCandProducer
19 {
20 public:
21 explicit ProducerConversions(const edm::ParameterSet&);
22 ~ProducerConversions();
23
24 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 std::string iPVertexes_; //input label for primary vertex collection
30 bool usePVertex_; //compute decay parameters with respect to primary vertex
31 bool convConstraint_; //use 2d conversion constraint for fit
32 bool convConstraint3D_; //use 3d conversion constraint for fit
33 double rhoMin_; //minimum conversion radius
34 bool useHitDropper_; //=true if hit dropper is to be used
35 };
36 }
37 #endif