Report problems to ATLAS LXR Team (with time and IP address indicated)

The LXR Cross Referencer

source navigation ]
diff markup ]
identifier search ]
general search ]
 
 
Architecture: linux ]
Version: head ] [ nightly ] [ GaudiDev ]
  Links to LXR source navigation pages for stable releases [ 12.*.* ]   [ 13.*.* ]   [ 14.*.* ]   [ 15.*.* ] 

001 #ifndef ABSTRACTGRID_H
002 #define ABSTRACTGRID_H
003 
004 #include "IGrid.h"
005 
006 #include <vector>
007 
008 #include <TList.h>
009 #include <TObject.h>
010 #include <TPad.h>
011 
012 class AbstractGrid : public IGrid
013 {
014 public:
015         virtual ~AbstractGrid(void);
016         virtual void draw();
017         virtual void remove();
018 
019 private:
020         //std::vector<TLine*> m_vGridLines;

021         TList m_lObjects;
022         bool m_bIsDrawn;
023         TPad* m_pPad;
024 
025 protected:
026         AbstractGrid(void);
027         void addObject(TObject* newObject);
028 };
029 
030 #endif

source navigation ] diff markup ] identifier search ] general search ]

Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems
This page was automatically generated by the LXR engine. Valid HTML 4.01!