Main Page   Class Hierarchy   Compound List   File List   Compound Members   File Members  

TrackRep.h

Go to the documentation of this file.
00001 //  $Header: /nfs/slac/g/glast/ground/cvs/geomrep/geomrep/TrackRep.h,v 1.3 2001/01/23 01:40:11 burnett Exp $
00002 //   Author: T. Burnett
00003 
00004 #ifndef TRACKREP_H
00005 #define TRACKREP_H
00006 
00007 #include "gui/DisplayRep.h"
00008 #include "geometry/Track.h"
00009 
00010 class TrackRep : public gui::DisplayRep {
00011 public:
00012     TrackRep(const Track& t):m_track(t){}
00013 
00014     void update();
00015 
00016     // govern use of color to distinguish neutral and charged
00017     static bool useColor;   // set to true to use following
00018     static unsigned charged_color_index, // color indeces to use
00019                     neutral_color_index;
00020     static float delta;
00021     // used to determine distance between lines
00022 
00023     static float minStepSize;
00024     // smallest step size allowed in representation
00025 
00026 
00027 private:
00028     const Track& m_track;
00029 
00030 };
00031 #endif // TRACKREP_H
00032 
00033 

Generated at Mon Nov 26 18:18:45 2001 by doxygen1.2.3 written by Dimitri van Heesch, © 1997-2000