BOSS 7.1.0
BESIII Offline Software System
Loading...
Searching...
No Matches
TrkContext.cxx
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2// File and Version Information:
3// $Id: TrkContext.cxx,v 1.1.1.1 2005/04/21 06:01:42 zhangy 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 "BaBar/BaBar.hh"
15#include "TrkBase/TrkContext.h"
16
17//------------------------------------------------------------------------
19//------------------------------------------------------------------------
20 _bf = bf;
21}
22
23//------------------------------------------------------------------------
25//------------------------------------------------------------------------
26 _bf = rhs._bf;
27}
28
29//------------------------------------------------------------------------
32//------------------------------------------------------------------------
33 if (&rhs == this) return *this;
34 _bf = rhs._bf;
35 return *this;
36}
37
38//------------------------------------------------------------------------
40//------------------------------------------------------------------------
41}
42
43//------------------------------------------------------------------------
44void
46//------------------------------------------------------------------------
47 _bf = bf;
48}
49
50//------------------------------------------------------------------------
51bool
53//------------------------------------------------------------------------
54 return (_bf == rhs._bf);
55}
bool operator==(const TrkContext &) const
Definition: TrkContext.cxx:52
virtual ~TrkContext()
Definition: TrkContext.cxx:39
void setBField(const BField *bf)
Definition: TrkContext.cxx:45
TrkContext & operator=(const TrkContext &)
Definition: TrkContext.cxx:31
TrkContext(const BField *)
Definition: TrkContext.cxx:18