Revision: | 1.1 |
Committed: | Wed Jun 23 13:12:55 2010 UTC (14 years, 10 months ago) by bendavid |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | Mit_032, Mit_031, Mit_025c_branch2, Mit_025c_branch1, Mit_030, Mit_029c, Mit_029b, Mit_030_pre1, Mit_029a, Mit_029, Mit_029_pre1, Mit_028a, Mit_025c_branch0, Mit_028, Mit_027a, Mit_027, Mit_026, Mit_025e, Mit_025d, Mit_025c, Mit_025b, Mit_025a, Mit_025, Mit_025pre2, Mit_024b, Mit_025pre1, Mit_024a, Mit_024, Mit_023, Mit_022a, Mit_022, Mit_020d, TMit_020d, Mit_020c, Mit_021, Mit_021pre2, Mit_021pre1, Mit_020b, Mit_020a, Mit_020, Mit_020pre1, Mit_018, Mit_017, Mit_017pre3, Mit_017pre2, Mit_017pre1, V07-05-00, Mit_016, Mit_015b, Mit_015a, Mit_015, Mit_014e, Mit_014d, Mit_014c, Mit_014b, HEAD |
Branch point for: | Mit_025c_branch |
Log Message: | Kinematic conversion producer |
# | Content |
---|---|
1 | //-------------------------------------------------------------------------------------------------- |
2 | // $Id: ProducerConversionsKinematic.h,v 1.8 2010/01/18 14:41:33 bendavid Exp $ |
3 | // |
4 | // ProducerConversionsKinematic |
5 | // |
6 | // Conversion reconstruction using tracks and MultiVertexFitter. |
7 | // |
8 | // Authors: J.Bendavid |
9 | //-------------------------------------------------------------------------------------------------- |
10 | |
11 | #ifndef MITEDM_PRODUCERS_PRODUCERCONVERSIONSKINEMATIC_H |
12 | #define MITEDM_PRODUCERS_PRODUCERCONVERSIONSKINEMATIC_H |
13 | |
14 | #include "MitEdm/Producers/interface/BaseCandProducer.h" |
15 | |
16 | namespace mitedm |
17 | { |
18 | class ProducerConversionsKinematic : public BaseCandProducer |
19 | { |
20 | public: |
21 | explicit ProducerConversionsKinematic(const edm::ParameterSet&); |
22 | ~ProducerConversionsKinematic(); |
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 useRhoMin_; //apply radius preselection |
35 | bool useHitDropper_; //=true if hit dropper is to be used |
36 | bool applyChargeConstraint_; //require opposite charged tracks |
37 | }; |
38 | } |
39 | #endif |