ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/VertexFitInterface/interface/HisInterface.h
Revision: 1.2
Committed: Fri Aug 29 00:27:22 2008 UTC (16 years, 8 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.1: +11 -17 lines
Log Message:
A bit of cleanup.

File Contents

# User Rev Content
1 loizides 1.2 //--------------------------------------------------------------------------------------------------
2     // $Id:$
3     //
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 paus 1.1 #ifndef HISINTERFACE_H
12     #define HISINTERFACE_H
13    
14     #include "DataFormats/TrackReco/interface/Track.h"
15     #include "MitVertex/Helix/interface/HelixIntersector.h"
16    
17     namespace mitedm
18     {
19     class HisInterface
20     {
21     public:
22 loizides 1.2 HisInterface(const reco::Track *trk1, const reco::Track *trk2, const double bField = 3.8);
23 paus 1.1 ~HisInterface();
24 loizides 1.2
25 paus 1.1 const HelixIntersector *hISector() { return his_; }
26    
27     private:
28 loizides 1.2 HelixIntersector *his_; // the helix intersector
29 paus 1.1 };
30     }
31     #endif