#include <iostream>#include <vector>#include "TObject.h"#include "NueAna/NueAnaTools/DCEdge.h"Go to the source code of this file.
Classes | |
| class | DCVertex< T > |
Functions | |
| ClassImpT (DCVertex, T) template< class T > void DCVertex< T > | |
|
||||||||||||
|
Definition at line 62 of file DCVertex.h. References DCEdge< T >::Print(). 00065 {
00066 if (edges == 0){
00067 cout << "vertex ";
00068 GetData()->Print();
00069 cout<< " has no edges" << endl;
00070 }
00071 else {
00072 cout << "vertex ";
00073 GetData()->Print();
00074 cout << " has edges to: " << endl;
00075 edges->Print();
00076 }
00077 }
|
1.3.9.1