Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Functions | Variables
tpia_product.cc File Reference
#include <string.h>
#include <ctype.h>
#include <gString.h>
#include <tpia_target.h>
#include <tpia_misc.h>

Go to the source code of this file.

Functions

tpia_producttpia_product_create (statusMessageReporting *smr)
 
int tpia_product_initialize (statusMessageReporting *smr, tpia_product *product)
 
tpia_producttpia_product_createGetFromElement (statusMessageReporting *smr, tpia_channel *channel, tpia_product *parentProduct, xData_element *productElement)
 
tpia_producttpia_product_free (statusMessageReporting *smr, tpia_product *product)
 
int tpia_product_release (statusMessageReporting *smr, tpia_product *product)
 
int tpia_product_getFromElement (statusMessageReporting *smr, tpia_channel *channel, tpia_product *parentProduct, xData_element *productElement, tpia_product *product)
 
int tpia_product_getDecayChannelFromElement (statusMessageReporting *smr, xData_element *parentElement, tpia_channel *channel, tpia_product *parentProduct, tpia_product **priorProductNext)
 
long tpia_product_dataRequired (statusMessageReporting *, tpia_product *product)
 
tpia_producttpia_product_getFirstProduct (tpia_product *product)
 
tpia_producttpia_product_getProductByIndex (statusMessageReporting *, tpia_product *product, int index)
 
int tpia_product_doesDecay (statusMessageReporting *, tpia_product *product)
 
int tpia_product_numberOfProducts (statusMessageReporting *, tpia_product *product)
 
int tpia_product_isDataPresent (statusMessageReporting *, tpia_product *product, int b_data)
 
int tpia_product_sampleMultiplicity (statusMessageReporting *, tpia_product *product, double e_in, double r)
 

Variables

const char * tpia_productGenre_unknown = "unknown"
 
const char * tpia_productGenre_twoBody_angular = "twoBody_angular"
 
const char * tpia_productGenre_twoBody_formFactor = "twoBody_formFactor"
 
const char * tpia_productGenre_NBody_Legendre = "NBody_Legendre"
 
const char * tpia_productGenre_NBody_angular_energy = "NBody_angular_energy"
 
const char * tpia_productGenre_NBody_uncorrelate_Legendre = "NBody_uncorrelate_Legendre"
 
const char * tpia_productGenre_NBody_pairProduction = "NBody_pairProduction"
 

Function Documentation

tpia_product* tpia_product_create ( statusMessageReporting smr)

Definition at line 71 of file tpia_product.cc.

References tpia_product_free(), tpia_product_initialize(), and xData_malloc2.

Referenced by tpia_product_createGetFromElement().

71  {
72 
73  tpia_product *product;
74 
75  //if( ( product = xData_malloc2( smr, sizeof( tpia_product ), 0, "product" ) ) == NULL ) return( NULL );
76  if( ( product = (tpia_product*) xData_malloc2( smr, sizeof( tpia_product ), 0, "product" ) ) == NULL ) return( NULL );
77  if( tpia_product_initialize( smr, product ) ) product = tpia_product_free( smr, product );
78  return( product );
79 }
tpia_product * tpia_product_free(statusMessageReporting *smr, tpia_product *product)
#define xData_malloc2(smr, size, zero, forItem)
Definition: xData.h:313
int tpia_product_initialize(statusMessageReporting *smr, tpia_product *product)
Definition: tpia_product.cc:83
tpia_product* tpia_product_createGetFromElement ( statusMessageReporting smr,
tpia_channel channel,
tpia_product parentProduct,
xData_element productElement 
)

Definition at line 93 of file tpia_product.cc.

References tpia_product_create(), tpia_product_free(), and tpia_product_getFromElement().

Referenced by tpia_product_getDecayChannelFromElement().

94  {
95 
96  tpia_product *product;
97 
98  if( ( product = tpia_product_create( smr ) ) == NULL ) return( NULL );
99  if( tpia_product_getFromElement( smr, channel, parentProduct, productElement, product ) != 0 ) product = tpia_product_free( smr, product );
100  return( product );
101 }
tpia_product * tpia_product_free(statusMessageReporting *smr, tpia_product *product)
tpia_product * tpia_product_create(statusMessageReporting *smr)
Definition: tpia_product.cc:71
int tpia_product_getFromElement(statusMessageReporting *smr, tpia_channel *channel, tpia_product *parentProduct, xData_element *productElement, tpia_product *product)
long tpia_product_dataRequired ( statusMessageReporting ,
tpia_product product 
)

Definition at line 359 of file tpia_product.cc.

References tpia_product_s::b_dataRequired.

359  {
360 
361  return( product->b_dataRequired );
362 }
int tpia_product_doesDecay ( statusMessageReporting ,
tpia_product product 
)

Definition at line 387 of file tpia_product.cc.

References tpia_product_s::decayChannel, and tpia_decayChannel_s::products.

387  {
388 
389  return( product->decayChannel.products != NULL );
390 }
tpia_decayChannel decayChannel
Definition: tpia_target.h:247
tpia_product * products
Definition: tpia_target.h:211
tpia_product* tpia_product_free ( statusMessageReporting smr,
tpia_product product 
)

Definition at line 105 of file tpia_product.cc.

References tpia_product_release(), and xData_free().

Referenced by tpia_channel_release(), tpia_product_create(), tpia_product_createGetFromElement(), and tpia_product_release().

105  {
106 
107  tpia_product_release( smr, product );
108  xData_free( smr, product );
109  return( NULL );
110 }
void * xData_free(statusMessageReporting *smr, void *p)
Definition: xDataMisc.cc:89
int tpia_product_release(statusMessageReporting *smr, tpia_product *product)
int tpia_product_getDecayChannelFromElement ( statusMessageReporting smr,
xData_element parentElement,
tpia_channel channel,
tpia_product parentProduct,
tpia_product **  priorProductNext 
)

Definition at line 268 of file tpia_product.cc.

References tpia_product_s::decayChannel, tpia_channel_s::decayChannel, xData_elementListItem_s::element, tpia_particle_s::fullMass_MeV, xData_elementList_s::items, tpia_decayChannel_s::m1_fullMass_MeV, tpia_decayChannel_s::m2_fullMass_MeV, xData_elementList_s::n, tpia_product_s::next, tpia_decayChannel_s::numberOfProducts, tpia_product_s::productID, tpia_target_heated_s::projectileID, status, tpia_channel_s::target, tpia_target_heated_s::targetID, tpia_product_createGetFromElement(), xData_freeElementList(), and xData_getElementsByTagName().

269  {
270 
271  xData_elementList *list;
272  tpia_product *product;
273  int i, status = 0;
274 
275  list = xData_getElementsByTagName( smr, parentElement, "product" );
276  for( i = 0; i < list->n; i++ ) {
277  if( ( product = tpia_product_createGetFromElement( smr, channel, parentProduct, list->items[i].element ) ) == NULL ) {
278  status = 1;
279  break;
280  }
281  if( parentProduct == NULL ) {
284  channel->decayChannel.numberOfProducts++; }
285  else {
286  channel->decayChannel.m1_fullMass_MeV = parentProduct->productID->fullMass_MeV;
287  channel->decayChannel.m2_fullMass_MeV = 0.;
288  parentProduct->decayChannel.numberOfProducts++;
289  }
290  *priorProductNext = product;
291  priorProductNext = &(product->next);
292  }
293  xData_freeElementList( smr, list );
294  return( status );
295 }
tpia_particle * projectileID
Definition: tpia_target.h:271
tpia_product * next
Definition: tpia_target.h:232
tpia_decayChannel decayChannel
Definition: tpia_target.h:264
tpia_target_heated * target
Definition: tpia_target.h:251
tpia_decayChannel decayChannel
Definition: tpia_target.h:247
tpia_product * tpia_product_createGetFromElement(statusMessageReporting *smr, tpia_channel *channel, tpia_product *parentProduct, xData_element *productElement)
Definition: tpia_product.cc:93
double fullMass_MeV
Definition: tpia_target.h:130
int status
Definition: tracer.cxx:24
void xData_freeElementList(statusMessageReporting *smr, xData_elementList *list)
Definition: xData.cc:832
xData_elementListItem * items
Definition: xData.h:151
xData_elementList * xData_getElementsByTagName(statusMessageReporting *smr, xData_element *element, const char *tagName)
Definition: xData.cc:761
tpia_particle * productID
Definition: tpia_target.h:236
xData_element * element
Definition: xData.h:145
tpia_particle * targetID
Definition: tpia_target.h:272
tpia_product* tpia_product_getFirstProduct ( tpia_product product)

Definition at line 366 of file tpia_product.cc.

References tpia_product_s::decayChannel, and tpia_decayChannel_getFirstProduct().

Referenced by tpia_product_getProductByIndex().

366  {
367 
368  return( tpia_decayChannel_getFirstProduct( &(product->decayChannel) ) );
369 }
tpia_decayChannel decayChannel
Definition: tpia_target.h:247
tpia_product * tpia_decayChannel_getFirstProduct(tpia_decayChannel *decayChannel)
int tpia_product_getFromElement ( statusMessageReporting smr,
tpia_channel channel,
tpia_product parentProduct,
xData_element productElement,
tpia_product product 
)

Definition at line 142 of file tpia_product.cc.

References xData_element_s::attributes, tpia_product_s::attributes, tpia_product_s::b_dataRequired, tpia_product_s::channel, tpia_product_s::genre, tpia_product_s::multiplicity, tpia_product_s::parentProduct, tpia_product_s::productID, smr_isOk(), tpia_misc_pointerToAttributeIfAllOk2, tpia_misc_setMessageError_Element(), tpia_particle_getInternalID(), tpia_productGenre_NBody_angular_energy, tpia_productGenre_NBody_Legendre, tpia_productGenre_NBody_pairProduction, tpia_productGenre_NBody_uncorrelate_Legendre, tpia_productGenre_twoBody_angular, tpia_productGenre_twoBody_formFactor, tpia_productGenre_unknown, xData_addToAccessed(), and xData_copyAttributionList().

Referenced by tpia_product_createGetFromElement().

143  {
144 
145  char const *productGenre;
146  char *name, *multiplicity, *e;
147 
148  xData_addToAccessed( smr, productElement, 1 );
149  product->channel = channel;
150  product->parentProduct = parentProduct;
151  if( xData_copyAttributionList( smr, &(product->attributes), &(productElement->attributes) ) != 0 ) return( 0 );
152  name = tpia_misc_pointerToAttributeIfAllOk2( smr, productElement, 1, &(product->attributes), "particle" );
153  if( name != NULL ) {
154  product->productID = tpia_particle_getInternalID( smr, name );
155  multiplicity = tpia_misc_pointerToAttributeIfAllOk2( smr, productElement, 1, &(product->attributes), "multiplicity" );
156  if( multiplicity != NULL ) {
157  if( strcmp( multiplicity, "energyDependent" ) && strcmp( multiplicity, "partialProduction" ) ) { /* Must be an integer. */
158  product->multiplicity = strtol( multiplicity, &e, 10 );
159  while( isspace( *e ) ) e++;
160  if( *e != 0 ) tpia_misc_setMessageError_Element( smr, NULL, productElement, __FILE__, __LINE__, 1, "bad multiplicity = %s", multiplicity );
161  }
162  }
163  }
164  if( ( productGenre = tpia_misc_pointerToAttributeIfAllOk2( smr, productElement, 1, &(product->attributes), "genre" ) ) != NULL ) {
165  if( strcmp( productGenre, tpia_productGenre_unknown ) == 0 ) {
166  product->b_dataRequired = 0;
167  product->genre = tpia_productGenre_unknown; }
168  else if( strcmp( productGenre, tpia_productGenre_twoBody_angular ) == 0 ) {
169  product->b_dataRequired = tpia_b_twoBody_angular;
171  else if( strcmp( productGenre, tpia_productGenre_twoBody_formFactor ) == 0 ) {
172  product->b_dataRequired = tpia_b_twoBody_formFactor;
174  else if( strcmp( productGenre, tpia_productGenre_NBody_Legendre ) == 0 ) {
175  product->b_dataRequired = tpia_b_NBody_Legendre;
177  else if( strcmp( productGenre, tpia_productGenre_NBody_angular_energy ) == 0 ) {
178  product->b_dataRequired = tpia_b_NBody_angular_energy;
180  else if( strcmp( productGenre, tpia_productGenre_NBody_uncorrelate_Legendre ) == 0 ) {
181  product->b_dataRequired = tpia_b_NBody_uncorrelate_Legendre;
183  else if( strcmp( productGenre, tpia_productGenre_NBody_pairProduction ) == 0 ) {
184  product->b_dataRequired = tpia_b_NBody_pairProduction;
186  else {
187  tpia_misc_setMessageError_Element( smr, NULL, productElement, __FILE__, __LINE__, 1, "unsupported product genre = %s", productGenre );
188  }
189  if( smr_isOk( smr ) ) _tpia_product_getProductOutgoingData( smr, productElement, product );
190  }
191  return( !smr_isOk( smr ) );
192 }
const char * tpia_productGenre_NBody_angular_energy
Definition: tpia_product.cc:60
tpia_product * parentProduct
Definition: tpia_target.h:234
const char * tpia_productGenre_twoBody_formFactor
Definition: tpia_product.cc:58
const char * tpia_productGenre_NBody_Legendre
Definition: tpia_product.cc:59
int xData_copyAttributionList(statusMessageReporting *smr, xData_attributionList *dest, xData_attributionList *src)
Definition: xData.cc:564
const char * tpia_productGenre_twoBody_angular
Definition: tpia_product.cc:57
const XML_Char * name
const char * tpia_productGenre_unknown
Definition: tpia_product.cc:56
xData_attributionList attributes
Definition: tpia_target.h:235
#define tpia_misc_pointerToAttributeIfAllOk2(smr, element, required, attributes, name)
Definition: tpia_misc.h:42
int tpia_misc_setMessageError_Element(statusMessageReporting *smr, void *userInterface, xData_element *element, const char *file, int line, int code, const char *fmt,...)
Definition: tpia_misc.cc:183
tpia_particle * tpia_particle_getInternalID(statusMessageReporting *smr, const char *const name)
int smr_isOk(statusMessageReporting *smr)
const char * tpia_productGenre_NBody_uncorrelate_Legendre
Definition: tpia_product.cc:61
int xData_addToAccessed(statusMessageReporting *smr, xData_element *element, int increment)
Definition: xData.cc:1078
char const * genre
Definition: tpia_target.h:237
xData_attributionList attributes
Definition: xData.h:186
tpia_channel * channel
Definition: tpia_target.h:233
tpia_particle * productID
Definition: tpia_target.h:236
const char * tpia_productGenre_NBody_pairProduction
Definition: tpia_product.cc:62
tpia_product* tpia_product_getProductByIndex ( statusMessageReporting ,
tpia_product product,
int  index 
)

Definition at line 374 of file tpia_product.cc.

References tpia_decayChannel_getNextProduct(), and tpia_product_getFirstProduct().

374  {
375 
376  int i = 0;
377  tpia_product *p;
378 
379  if( index < 0 ) return( NULL );
380  for( p = tpia_product_getFirstProduct( product ); ( p != NULL ) && ( i < index ); p = tpia_decayChannel_getNextProduct( p ), i++ ) ;
381  return( p );
382 }
const char * p
Definition: xmltok.h:285
tpia_product * tpia_product_getFirstProduct(tpia_product *product)
tpia_product * tpia_decayChannel_getNextProduct(tpia_product *product)
int tpia_product_initialize ( statusMessageReporting smr,
tpia_product product 
)

Definition at line 83 of file tpia_product.cc.

References tpia_product_s::angular, tpia_product_s::Legendre, tpia_angular_initialize(), and tpia_Legendre_initialize().

Referenced by tpia_product_create().

83  {
84 
85  memset( product, 0, sizeof( tpia_product ) );
86  if( tpia_angular_initialize( smr, &(product->angular) ) ) return( 1 );
87  if( tpia_Legendre_initialize( smr, &(product->Legendre) ) ) return( 1 );
88  return( 0 );
89 }
tpia_Legendre Legendre
Definition: tpia_target.h:245
int tpia_angular_initialize(statusMessageReporting *smr, tpia_angular *angular)
Definition: tpia_angular.cc:49
int tpia_Legendre_initialize(statusMessageReporting *smr, tpia_Legendre *Legendre)
tpia_angular angular
Definition: tpia_target.h:244
int tpia_product_isDataPresent ( statusMessageReporting ,
tpia_product product,
int  b_data 
)

Definition at line 403 of file tpia_product.cc.

References tpia_product_s::b_dataPresent.

403  {
404 
405  return( product->b_dataPresent && b_data );
406 }
int tpia_product_numberOfProducts ( statusMessageReporting ,
tpia_product product 
)

Definition at line 395 of file tpia_product.cc.

References tpia_product_s::decayChannel, and tpia_decayChannel_s::numberOfProducts.

395  {
396 
397  return( product->decayChannel.numberOfProducts );
398 }
tpia_decayChannel decayChannel
Definition: tpia_target.h:247
int tpia_product_release ( statusMessageReporting smr,
tpia_product product 
)

Definition at line 114 of file tpia_product.cc.

References tpia_product_s::angular, tpia_product_s::angularEnergy, tpia_product_s::attributes, tpia_1dData_s::data, tpia_product_s::decayChannel, tpia_product_s::delayedNeutronMultiplicityVsEnergy, tpia_product_s::depositionEnergyGrouped, tpia_product_s::Legendre, tpia_product_s::multiplicityVsEnergy, tpia_multiplicity_s::next, tpia_product_s::next, tpia_decayChannel_s::numberOfProducts, tpia_decayChannel_s::products, tpia_angular_release(), tpia_angularEnergy_release(), tpia_Legendre_release(), tpia_multiplicity_free(), tpia_product_free(), xData_free(), and xData_releaseAttributionList().

Referenced by tpia_product_free().

114  {
115 
116  tpia_multiplicity *multiplicity, *multiplicity_next;
117  tpia_product *decayProduct, *nextProduct;
118 
119  xData_releaseAttributionList( smr, &(product->attributes) );
120  //product->depositionEnergyGrouped.data = xData_free( smr, product->depositionEnergyGrouped.data );
121  product->depositionEnergyGrouped.data = (double*) xData_free( smr, product->depositionEnergyGrouped.data );
122 
123  if( product->multiplicityVsEnergy != NULL ) tpia_multiplicity_free( smr, product->multiplicityVsEnergy );
124  for( multiplicity = product->delayedNeutronMultiplicityVsEnergy; multiplicity != NULL; multiplicity = multiplicity_next ) {
125  multiplicity_next = multiplicity->next;
126  tpia_multiplicity_free( smr, multiplicity );
127  }
128  tpia_angular_release( smr, &(product->angular) );
129  tpia_Legendre_release( smr, &(product->Legendre ) );
130  tpia_angularEnergy_release( smr, &(product->angularEnergy) );
131  for( decayProduct = product->decayChannel.products; decayProduct != NULL; decayProduct = nextProduct ) {
132  nextProduct = decayProduct->next;
133  tpia_product_free( smr, decayProduct );
134  }
135  product->decayChannel.numberOfProducts = 0;
136  product->decayChannel.products = NULL;
137  return( 0 );
138 }
tpia_product * tpia_product_free(statusMessageReporting *smr, tpia_product *product)
tpia_product * next
Definition: tpia_target.h:232
int tpia_Legendre_release(statusMessageReporting *smr, tpia_Legendre *Legendre)
int tpia_angularEnergy_release(statusMessageReporting *smr, tpia_angularEnergy *angularEnergy)
tpia_decayChannel decayChannel
Definition: tpia_target.h:247
void * xData_free(statusMessageReporting *smr, void *p)
Definition: xDataMisc.cc:89
tpia_product * products
Definition: tpia_target.h:211
xData_attributionList attributes
Definition: tpia_target.h:235
int xData_releaseAttributionList(statusMessageReporting *smr, xData_attributionList *attributes)
Definition: xData.cc:611
tpia_Legendre Legendre
Definition: tpia_target.h:245
double * data
Definition: tpia_target.h:145
tpia_1dData depositionEnergyGrouped
Definition: tpia_target.h:240
int tpia_angular_release(statusMessageReporting *smr, tpia_angular *angular)
Definition: tpia_angular.cc:60
tpia_multiplicity * next
Definition: tpia_target.h:174
tpia_angularEnergy angularEnergy
Definition: tpia_target.h:246
tpia_multiplicity * multiplicityVsEnergy
Definition: tpia_target.h:242
tpia_multiplicity * delayedNeutronMultiplicityVsEnergy
Definition: tpia_target.h:243
tpia_multiplicity * tpia_multiplicity_free(statusMessageReporting *smr, tpia_multiplicity *multiplicity)
tpia_angular angular
Definition: tpia_target.h:244
int tpia_product_sampleMultiplicity ( statusMessageReporting ,
tpia_product product,
double  e_in,
double  r 
)

Definition at line 411 of file tpia_product.cc.

References int(), tpia_product_s::multiplicityVsEnergy, tpia_multiplicity_s::numberOfPointwise, and tpia_multiplicity_s::pointwise.

Referenced by tpia_decayChannel_sampleProductsAtE().

411  {
412 
413  int i, multiplicity;
414  tpia_multiplicity *multiplicityVsEnergy = product->multiplicityVsEnergy;
415  double *p = multiplicityVsEnergy->pointwise, dMult;
416 
417  if( e_in <= p[0] ) {
418  dMult = p[1]; }
419  else if( e_in >= p[2 * ( multiplicityVsEnergy->numberOfPointwise - 1 )] ) {
420  dMult = p[2 * multiplicityVsEnergy->numberOfPointwise - 1]; }
421  else {
422  for( i = 0; i < multiplicityVsEnergy->numberOfPointwise - 1; i++, p += 2 ) if( e_in < p[2] ) break;
423  dMult = ( e_in - p[0] ) / ( p[2] - p[0] );
424  dMult = dMult * p[3] + ( 1. - dMult ) * p[1];
425  }
426  multiplicity = (int) dMult;
427  if( r < ( dMult - multiplicity ) ) multiplicity++;
428 
429  return( multiplicity );
430 }
typedef int(XMLCALL *XML_NotStandaloneHandler)(void *userData)
const char * p
Definition: xmltok.h:285
xData_Int numberOfPointwise
Definition: tpia_target.h:177
tpia_multiplicity * multiplicityVsEnergy
Definition: tpia_target.h:242

Variable Documentation

const char * tpia_productGenre_NBody_angular_energy = "NBody_angular_energy"

Definition at line 60 of file tpia_product.cc.

Referenced by tpia_product_getFromElement().

const char * tpia_productGenre_NBody_Legendre = "NBody_Legendre"

Definition at line 59 of file tpia_product.cc.

Referenced by tpia_product_getFromElement().

const char * tpia_productGenre_NBody_pairProduction = "NBody_pairProduction"

Definition at line 62 of file tpia_product.cc.

Referenced by tpia_product_getFromElement().

const char * tpia_productGenre_NBody_uncorrelate_Legendre = "NBody_uncorrelate_Legendre"

Definition at line 61 of file tpia_product.cc.

Referenced by tpia_product_getFromElement().

const char * tpia_productGenre_twoBody_angular = "twoBody_angular"

Definition at line 57 of file tpia_product.cc.

Referenced by tpia_product_getFromElement().

const char * tpia_productGenre_twoBody_formFactor = "twoBody_formFactor"

Definition at line 58 of file tpia_product.cc.

Referenced by tpia_product_getFromElement().

const char* tpia_productGenre_unknown = "unknown"

Definition at line 56 of file tpia_product.cc.

Referenced by tpia_product_getFromElement().