|
||||
File indexing completed on 2024-04-06 12:31:29
0001 #include <memory> 0002 0003 #include "TrackingTools/GeomPropagators/interface/Propagator.h" 0004 0005 std::unique_ptr<Propagator> SetPropagationDirection(Propagator const& iprop, PropagationDirection dir) { 0006 std::unique_ptr<Propagator> p(iprop.clone()); 0007 p->setPropagationDirection(dir); 0008 0009 return p; 0010 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |