rave is hosted by Hepforge, IPPP Durham
close Warning:
  • Error with navigation contributor "BrowserModule"
  • Failed to sync with repository "(default)": instance.__dict__ not accessible in restricted mode; repository information may be out of date. Look in the Trac log for more information including mitigation strategies.

Version 2 (modified by anonymous, 18 years ago) (diff)

--

Using Rave

Compiling against rave:

 pkg-config rave --libs --cflags

Using rave for vertexing:

/* create factory with your own implementation of MagneticField,
  * and Propagator. Default reconstruction method is "method",
  * verbosity level is "verbosity".
  */
  rave::VertexFactory factory ( MyMagneticField(), MyPropagator(), method, verbosity );
 

 /* from "tracks" ( std::vector < rave::Track > ) create "vertices",
  * using the method defined in the constructor of the factory.
  */
  std::vector < rave::Vertex > vertices = factory.create( tracks );

Using rave for flavor tagging:

FIXME not yet