ATLAS Offline Software
Loading...
Searching...
No Matches
ExtNode Class Reference

#include <BooleanProcessor.h>

Collaboration diagram for ExtNode:

Public Member Functions

 ExtNode (HVPoint3D vertex=HVPoint3D(), int status=0)
 ~ExtNode ()
 ExtNode (const ExtNode &node)
ExtNodeoperator= (const ExtNode &node)

Public Attributes

HVPoint3D v
int s

Detailed Description

Definition at line 147 of file BooleanProcessor.h.

Constructor & Destructor Documentation

◆ ExtNode() [1/2]

ExtNode::ExtNode ( HVPoint3D vertex = HVPoint3D(),
int status = 0 )
inline

Definition at line 153 of file BooleanProcessor.h.

154 : v(vertex), s(status) {}
HVPoint3D v

◆ ~ExtNode()

ExtNode::~ExtNode ( )
inline

Definition at line 155 of file BooleanProcessor.h.

155{}

◆ ExtNode() [2/2]

ExtNode::ExtNode ( const ExtNode & node)
inline

Definition at line 157 of file BooleanProcessor.h.

157: v(node.v), s(node.s) {}

Member Function Documentation

◆ operator=()

ExtNode & ExtNode::operator= ( const ExtNode & node)
inline

Definition at line 159 of file BooleanProcessor.h.

159 {
160 if (&node == this) return *this;
161 v = node.v;
162 s = node.s;
163 return *this;
164 }

Member Data Documentation

◆ s

int ExtNode::s

Definition at line 150 of file BooleanProcessor.h.

◆ v

HVPoint3D ExtNode::v

Definition at line 149 of file BooleanProcessor.h.


The documentation for this class was generated from the following file: