ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerConversions.h
Revision: 1.7
Committed: Fri Dec 11 17:46:23 2009 UTC (15 years, 5 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_012h, Mit_012g, Mit_012f, Mit_012e
Changes since 1.6: +1 -3 lines
Log Message:
Remove track quality cuts, which do not really belong here

File Contents

# User Rev Content
1 bendavid 1.1 //--------------------------------------------------------------------------------------------------
2 bendavid 1.7 // $Id: ProducerConversions.h,v 1.6 2009/12/08 17:40:04 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 bendavid 1.3 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 loizides 1.5 bool useHitDropper_; //=true if hit dropper is to be used
35 bendavid 1.6 bool applyChargeConstraint_; //require opposite charged tracks
36 bendavid 1.1 };
37     }
38     #endif