BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Reconstruction/MdcPatRec/TrkBase/include/TrkBase/TrkEnums.h
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2// File and Version Information:
3// $Id: TrkEnums.h,v 1.2 2007/11/13 07:27:23 codeman Exp $
4//
5// Description:
6// Dummy class (== poor man's namespace) to hold tracking enums. Should
7// move TrkDirection in here as well, but it's not worth the pain.
8//
9// Environment:
10// Software developed for the BaBar Detector at the SLAC B-Factory.
11//
12// Author(s): Steve Schaffner
13//
14//------------------------------------------------------------------------
15
16#ifndef TRKENUMS_H
17#define TRKENUMS_H
18
19namespace TrkEnums {
20
21 enum TrkViewInfo { noView = -1, xyView = 0, zView, bothView };
22 // flag possible instance meanings. Note the range is _extremely_ restricted,
23 // so don't add values lightly.
24 enum PackFlag { KalFit = 0, KalConstraint = 1, maxval = 3 };
25
26} // namespace TrkEnums
27
28#endif