SND@LHC Software
Loading...
Searching...
No Matches
GFRavePropagator.h
Go to the documentation of this file.
1/* Copyright 2008-2010, Technische Universitaet Muenchen,
2 Authors: Christian Hoeppner & Sebastian Neubert & Johannes Rauch
3
4 This file is part of GENFIT.
5
6 GENFIT is free software: you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 GENFIT is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with GENFIT. If not, see <http://www.gnu.org/licenses/>.
18*/
19
29#ifndef GFRAVEPROPAGATOR_H
30#define GFRAVEPROPAGATOR_H
31
32#include "GFRaveVertexFactory.h"
33#include "AbsTrackRep.h"
34
35#include <rave/Propagator.h>
36#include <rave/Track.h>
37#include <rave/Plane.h>
38#include <rave/Cylinder.h>
39
40#include <map>
41
42
43namespace genfit {
44
55class GFRavePropagator : public rave::Propagator
56{
57 public:
59 virtual GFRavePropagator* copy() const;
60 virtual rave::Track closestTo ( const rave::Track &,
61 const rave::Point3D &, bool transverse ) const;
62 virtual std::pair < rave::Track, double > to ( const rave::Track & orig,
63 const ravesurf::Plane & ) const;
64 virtual std::pair < rave::Track, double > to ( const rave::Track & orig,
65 const ravesurf::Cylinder & ) const;
66
67 virtual ~GFRavePropagator();
68
69 void setIdGFTrackStateMap(std::map < int, genfit::trackAndState > * map);
70
71 private:
72
73 // data members
74 std::map < int, genfit::trackAndState > * IdGFTrackStateMap_; // pointers to genfit::tracks and measuredStateOnPlanes via rave track ID
75};
76
77} /* End of namespace genfit */
80#endif // GFRAVEPROPAGATOR_H
GFRavePropagator class.
std::map< int, genfit::trackAndState > * IdGFTrackStateMap_
virtual rave::Track closestTo(const rave::Track &, const rave::Point3D &, bool transverse) const
virtual std::pair< rave::Track, double > to(const rave::Track &orig, const ravesurf::Plane &) const
virtual GFRavePropagator * copy() const
void setIdGFTrackStateMap(std::map< int, genfit::trackAndState > *map)
Matrix inversion tools.
Definition AbsBField.h:29