Multiple region sources in one simulation

Thank you a lot for this source file.
I have one query.

Suppose I want to activate source in two regions. Then how to edit the file.

Should I do like below:
call regionsource ( coordinate_x0, coordinate_y0, coordinate_z0, [region number], [xmin0], [xmax0], [ymin0], [ymax0], [zmin0], [zmax0] )

call regionsource ( coordinate_x1, coordinate_y1, coordinate_z1, [region number], [xmin1], [xmax1], [ymin1], [ymax1], [zmin1], [zmax1] )

Please guide me in this regards.

Dear ArghyaC,

no this would not work.

The variables coordinate_x, coordinate_y and coordinate_z should not be changed. The script passes the values stored in these variables to FLUKA.

Also the second calling the regionsource subroutine will only overwrite the first one.

You should use a random number and an if ... else structure to select one of the regions, similarly to my previous post: Multiple complex source in Fluka - #2 by horvathd

Cheers,
David

Thank you very much for your reply.