Analysis Software
Documentation for
sPHENIX
simulation software
Home page
Related Pages
Modules
Namespaces
Classes
Files
Examples
External Links
File List
File Members
Analysis Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
acts-fatras
analysis
analysis_tpc_prototype
coresoftware
Doxygen_Assist
g4exampledetector
GenFit
JETSCAPE
blob
main
examples
external_packages
clvisc_wrapper
googletest
gtl
include
GTL
algorithm.h
bellman_ford.h
bfs.h
biconnectivity.h
bid_dijkstra.h
bin_heap.h
components.h
debug.h
dfs.h
dijkstra.h
edge.h
edge_data.h
edge_map.h
embedding.h
fm_partition.h
gml_parser.h
gml_scanner.h
graph.h
GTL.h
maxflow_ff.h
maxflow_pp.h
maxflow_sap.h
min_tree.h
ne_map.h
node.h
node_data.h
node_map.h
planarity.h
pq_node.h
pq_tree.h
ratio_cut_partition.h
st_number.h
symlist.h
topsort.h
version.h
src
tests
hydro_from_external_file
trento
cornelius.cpp
cornelius.h
fjcore.cc
fjcore.hh
gzstream.cc
gzstream.h
sigslot.h
tinyxml2.cc
tinyxml2.h
jail
src
KFParticle
macros
online_distribution
OnlMon
prototype
pythia6
rcdaq
RDBC
tutorials
doxygen_mainpage.h
File Members
Examples
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
node_data.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file node_data.h
1
/* This software is distributed under the GNU Lesser General Public License */
2
//==========================================================================
3
//
4
// node_data.h - Internal header: DO NO USE IT DIRECTLY !!!
5
//
6
//==========================================================================
7
// $Id: node_data.h,v 1.7 2000/01/05 16:32:38 raitner Exp $
8
9
#ifndef GTL_NODE_DATA_H
10
#define GTL_NODE_DATA_H
11
12
#include <
GTL/GTL.h
>
13
#include <
GTL/node.h
>
14
#include <
GTL/edge.h
>
15
16
#include <list>
17
18
__GTL_BEGIN_NAMESPACE
19
20
class
graph
;
21
25
class
GTL_EXTERN
node_data
26
{
27
public
:
28
int
id
;
// internal numbering
29
graph
*
owner
;
// graph containing this node
30
list<node>::iterator
pos
;
// position in the list of all nodes
31
list<edge>
edges
[2];
// edges incident to this node
32
// edges[0] = in_edges, edges[1] = out_edges
33
bool
hidden
;
34
};
35
36
__GTL_END_NAMESPACE
37
38
#endif // GTL_NODE_DATA_H
39
40
//--------------------------------------------------------------------------
41
// end of file
42
//--------------------------------------------------------------------------
JETSCAPE
blob
main
external_packages
gtl
include
GTL
node_data.h
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:18:23
using
1.8.2 with
sPHENIX GitHub integration