15 #define MAX_SPECIES 15
16 #define MAX_REACTIONS 30
20 reaction_t react_photo = {
TRUE, 0, 0, {0}, {0}, {
""}, {
""}, NULL, NULL, NULL, 0.0, NULL};
77 printf(
"Example : %s\n\n", filename);
79 fprintf(stdout,
"No ' program name' setting in configuration file.\n");
97 printf(
"Species '%10s' has mass %10.1e and charge %10.1e\n",
100 spec_index[i]->charge);
111 printf(
"# seed = %i\n",
no_seed);
118 temp_se->
value = 0.0;
127 seed_index[i]=temp_se;
128 printf(
"Found a seed of species %s and type %s\n",
129 seed_index[i]->kind_species,
130 seed_index[i]->kind_type);
131 printf(
"It has value %10.1e, z-position %10.1e and y-sigma %10.1e\n",
132 seed_index[i]->value,
134 seed_index[i]->sigma_y);
159 reaction_index[i]=temp_r;
168 printf(
"Reaction #%i has %i input-species, %i output-species.\n",
169 cnt,reaction_index[cnt]->nin,reaction_index[cnt]->nout);
170 printf(
"The rates are defined in %s\n",
171 reaction_index[cnt]->tablefile);
172 printf(
"Input species are:\t");
173 for (cnt2 = 0; cnt2 < reaction_index[cnt]->
nin; cnt2++) {
175 reaction_index[cnt]->input[cnt2],
176 reaction_index[cnt]->inname[cnt2]);
178 printf(
"\nOutput species are:\t");
179 for (cnt2 = 0; cnt2 < reaction_index[cnt]->
nout; cnt2++) {
180 printf(
"(%i) %s\t",reaction_index[cnt]->output[cnt2],
181 reaction_index[cnt]->outname[cnt2]);