BOSS 7.0.7
BESIII Offline Software System
Loading...
Searching...
No Matches
TrkContextEv.h
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2// File and Version Information:
3// $Id: TrkContextEv.h,v 1.1.1.1 2005/04/21 06:26:56 maqm Exp $
4//
5// Description:
6// Derived class of TrkContext. Adds precisely one feature: the
7// ctor to fill in default values from AbsEvent and AbsEnv.
8//
9// Environment:
10// Software developed for the BaBar Detector at the SLAC B-Factory.
11//
12// Author(s): Steve Schaffner
13//
14//------------------------------------------------------------------------
15#ifndef TRKCONTEXTEV_HH
16#define TRKCONTEXTEV_HH
17#include "TrkBase/TrkContext.h"
18//class AbsEvent;
19
20class BField;
21
22// Class interface //
23class TrkContextEv : public TrkContext {
24
25public:
26 TrkContextEv(const BField *);
27 virtual ~TrkContextEv();
28
29 virtual TrkId getId() const;
30
31
32private:
33 TrkIdManager* _idman;
34
35 TrkIdManager* idManager() const {return _idman;}
36 // Preempt
37 TrkContextEv& operator= (const TrkContextEv&);
39};
40
41#endif
virtual TrkId getId() const
virtual ~TrkContextEv()
Definition: TrkId.h:21