BOSS 7.0.2
BESIII Offline Software System
Loading...
Searching...
No Matches
TrkGeomTraj.cxx
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2// File and Version Information:
3// $Id: TrkGeomTraj.cxx,v 1.1.1.1 2005/07/18 05:51:56 codeman Exp $
4//
5// Description:
6//
7//
8// Environment:
9// Software developed for the BaBar Detector at the SLAC B-Factory.
10//
11// Author(s): Steve Schaffner
12//
13//------------------------------------------------------------------------
14#include "MdcGeom/TrkGeomTraj.h"
15#include <iostream>
16using namespace std;
17TrkGeomTraj::TrkGeomTraj(double lowlim, double hilim) :
18 Trajectory(lowlim, hilim)
19{
20}
21
23{
24}
25
26void
28{
29 cout <<"ErrMsg(warning)" <<
30 "TrkGeomTraj: accept() invoked for derived class that has\n"
31 << "not overridden it. No action taken." << endl;
32}
virtual void accept(TrkGeomTrajVisitor &) const
Definition: TrkGeomTraj.cxx:27
virtual ~TrkGeomTraj()
Definition: TrkGeomTraj.cxx:22
TrkGeomTraj(double lowlim, double hilim)
Definition: TrkGeomTraj.cxx:17