-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fortran files #2
Comments
Good. You mean you can build a GiBUU executable and use that to run job cards, correct? More info on this topic is here:
Could you explain what exactly you mean here? Which .f90 files do you want to 'run'? |
Jobcards do not compile. They are used as input for the GiBUU executable. See wiki link above.
The code files are compiled by running
That file is a module. You cannot run it. Normally you would run the |
running make command is ok, I get that. But you are saying that the files in code folder (.f90 files) cannot be run as they are a module. The .f90 files are there so we can run them and obtain the data |
You probably should read up on Fortran 90. Modules are a way to structure code, see e.g. https://web.stanford.edu/class/me200c/tutorial_90/09_modules.html You cannot 'run' them on their own. They are usually part of a bigger code base, like in the case of GiBUU.
Sure, you can modify those files, then recompile the complete code and run the resulting executable. Note that once you modify any files, the results that you get are not those of the original GiBUU code any more. If you want to publish them in any form, you should publish your modifications of the code as well (e.g. by forking GiBUU on github), and state that you are using a modified version of the code. If you're just playing around, that's fine of course ... |
The .job files are running successfully.
But how do I run the Fortran (.f90) files
what commands/libraries do I need to use
The text was updated successfully, but these errors were encountered: