ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/IPHCalignment2/TrackingTools/PatternTools/interface/TSCBLBuilderNoMaterial.h
Revision: 1.1
Committed: Fri Nov 25 16:38:23 2011 UTC (13 years, 5 months ago) by econte
Content type: text/plain
Branch: MAIN
CVS Tags: TBD2011, TBD_2011, HEAD
Log Message:
new IPHC alignment

File Contents

# User Rev Content
1 econte 1.1 #ifndef TSCBLBuilderNoMaterial_H
2     #define TSCBLBuilderNoMaterial_H
3    
4     #include "TrackingTools/PatternTools/interface/TrajectoryStateClosestToBeamLineBuilder.h"
5    
6     /**
7     * This class builds a TrajectoryStateClosestToBeamLine given an original
8     * FreeTrajectoryState. This new state is then
9     * defined at the point of closest approach to the beam line.
10     * It is to be used when there is no material between the state and the BeamLine
11     */
12    
13     class TSCBLBuilderNoMaterial : public TrajectoryStateClosestToBeamLineBuilder
14     {
15     public:
16    
17     virtual TrajectoryStateClosestToBeamLine operator()
18     (const FTS& originalFTS, const reco::BeamSpot & beamSpot) const;
19    
20     };
21     #endif