ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/VertexFitInterface/interface/HisInterface.h
Revision: 1.5
Committed: Wed Sep 17 04:03:50 2008 UTC (16 years, 7 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.4: +2 -2 lines
Log Message:
Modifications to pick up MVF from MitCommon.

File Contents

# User Rev Content
1 loizides 1.2 //--------------------------------------------------------------------------------------------------
2 loizides 1.5 // $Id: HisInterface.h,v 1.4 2008/09/10 03:28:38 loizides Exp $
3 loizides 1.2 //
4 paus 1.1 // HisInterface class header file
5     //
6 loizides 1.2 // Provide a CMS specific interface for the generic HelixIntersector (His).
7     //
8     // Author: C.Paus
9     //--------------------------------------------------------------------------------------------------
10    
11 loizides 1.4 #ifndef MITEDM_VERTEXFITINTERFACE_HISINTERFACE_H
12     #define MITEDM_VERTEXFITINTERFACE_HISINTERFACE_H
13 paus 1.1
14     #include "DataFormats/TrackReco/interface/Track.h"
15 loizides 1.5 #include "MitCommon/MathTools/interface/HelixIntersector.h"
16 paus 1.1
17     namespace mitedm
18     {
19     class HisInterface
20     {
21 loizides 1.3 public:
22     HisInterface(const reco::Track *trk1, const reco::Track *trk2, const double bField = 3.8);
23     ~HisInterface();
24 loizides 1.2
25 loizides 1.3 const mithep::HelixIntersector *hISector() { return his_; }
26 paus 1.1
27 loizides 1.3 private:
28     mithep::HelixIntersector *his_; // the helix intersector
29 paus 1.1 };
30     }
31     #endif