Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
xDataTOM_V_W_XYs.cc
Go to the documentation of this file.
1 /*
2 # <<BEGIN-copyright>>
3 # <<END-copyright>>
4 */
5 #include <string.h>
6 
7 #include "xDataTOM_private.h"
8 
9 #if defined __cplusplus
10 namespace GIDI {
11 using namespace GIDI;
12 #endif
13 
14 char const *xDataTOM_V_W_XYs_ID = "V_W_XYs";
15 
16 /*
17 ************************************************************
18 */
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 }
31 /*
32 ************************************************************
33 */
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 }
48 
49 #if defined __cplusplus
50 }
51 #endif
xDataTOM_W_XYs * W_XYs
Definition: xDataTOM.h:103
const char * ID
Definition: xDataTOM.h:151
char const * xDataTOM_V_W_XYs_ID
int xDataTOM_V_W_XYs_initialize(statusMessageReporting *smr, xDataTOM_V_W_XYs *V_W_XYs, int length, xDataTOM_axes *axes)
int xDataTOM_W_XYs_release(xDataTOM_W_XYs *W_XYs)
int xDataTOM_subAxes_initialize(statusMessageReporting *smr, xDataTOM_subAxes *subAxes, enum xDataTOM_subAxesType type, int offset, xDataTOM_axes *axes, xDataTOM_interpolation *interpolation)
#define smr_malloc2(smr, size, zero, forItem)
void * smr_freeMemory(void **p)
int xDataTOM_V_W_XYs_free(xDataTOM_xDataInfo *xDI)
xDataTOM_subAxes subAxes
Definition: xDataTOM.h:102