#include "RangeLookupTable.h"Go to the source code of this file.
Functions | |
| double | GetMomFromRange (double range) |
|
|
Definition at line 12 of file GetMomFromRange.cxx. References RangeLookupTable::Interpolate(). Referenced by AlgTrackSR::RunAlg(), AlgTrackCam::RunAlg(), AlgFitTrackSR::RunAlg(), AlgFitTrack3::RunAlg(), and AlgFitTrackCam::SpectrometerSwim(). 00012 {
00013
00014 double momentum;
00015 // Now using the CSDA range tables in the database
00016 RangeLookupTable fFeRangeTable("RANGE_MU_FE_CSDA");
00017 momentum=fFeRangeTable.Interpolate(range);
00018
00019 return momentum;
00020 }
|
1.3.9.1