Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
xDataTOM_V_W_XYs.cc File Reference
#include <string.h>
#include "xDataTOM_private.h"

Go to the source code of this file.

Functions

int xDataTOM_V_W_XYs_initialize (statusMessageReporting *smr, xDataTOM_V_W_XYs *V_W_XYs, int length, xDataTOM_axes *axes)
 
int xDataTOM_V_W_XYs_free (xDataTOM_xDataInfo *xDI)
 

Variables

char const * xDataTOM_V_W_XYs_ID = "V_W_XYs"
 

Function Documentation

◆ xDataTOM_V_W_XYs_free()

int xDataTOM_V_W_XYs_free ( xDataTOM_xDataInfo * xDI)

Definition at line 34 of file xDataTOM_V_W_XYs.cc.

34 {
35
36 int i;
37 xDataTOM_V_W_XYs *V_W_XYs;
38
39 if( xDI == NULL ) return( 0 );
40 if( strcmp( xDataTOM_V_W_XYs_ID, xDI->ID ) != 0 ) return( 1 );
41 if( ( V_W_XYs = (xDataTOM_V_W_XYs *) xDI->data ) != NULL ) {
42 for( i = 0; i < V_W_XYs->length; i++ ) xDataTOM_W_XYs_release( &(V_W_XYs->W_XYs[i]) );
43 smr_freeMemory( (void **) &(V_W_XYs->W_XYs) );
44 smr_freeMemory( (void **) &(xDI->data) );
45 }
46 return( 0 );
47}
void * smr_freeMemory(void **p)
xDataTOM_W_XYs * W_XYs
Definition xDataTOM.h:103
const char * ID
Definition xDataTOM.h:151
int xDataTOM_W_XYs_release(xDataTOM_W_XYs *W_XYs)
char const * xDataTOM_V_W_XYs_ID

Referenced by xDataTOM_releaseElement().

◆ xDataTOM_V_W_XYs_initialize()

int xDataTOM_V_W_XYs_initialize ( statusMessageReporting * smr,
xDataTOM_V_W_XYs * V_W_XYs,
int length,
xDataTOM_axes * axes )

Definition at line 19 of file xDataTOM_V_W_XYs.cc.

19 {
20
21 V_W_XYs->W_XYs = NULL;
22 V_W_XYs->length = length;
23 if( ( V_W_XYs->W_XYs = (xDataTOM_W_XYs *) smr_malloc2( smr, length * sizeof( xDataTOM_W_XYs ), 1, "V_W_XYs->W_XYs" ) ) == NULL ) return( 1 );
24 if( xDataTOM_subAxes_initialize( smr, &(V_W_XYs->subAxes), xDataTOM_subAxesType_proxy, 0, axes, NULL ) != 0 ) {
25 smr_freeMemory( (void **) &(V_W_XYs->W_XYs) );
26 return( 1 );
27 }
28
29 return( 0 );
30}
#define smr_malloc2(smr, size, zero, forItem)
xDataTOM_subAxes subAxes
Definition xDataTOM.h:102
@ xDataTOM_subAxesType_proxy
Definition xDataTOM.h:24
int xDataTOM_subAxes_initialize(statusMessageReporting *smr, xDataTOM_subAxes *subAxes, enum xDataTOM_subAxesType type, int offset, xDataTOM_axes *axes, xDataTOM_interpolation *interpolation)

Referenced by xDataXML_V_W_XYsToTOM().

Variable Documentation

◆ xDataTOM_V_W_XYs_ID

char const* xDataTOM_V_W_XYs_ID = "V_W_XYs"