-
Notifications
You must be signed in to change notification settings - Fork 20
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
Update CINDER data support for different group structures #16
Comments
From Hesham Khater (LLNL): I edited the FEINDLib.C and Consts.h files and changed the number of groups from 63 to 175. But now I get a different error regarding the format. Sorry I am an old fossil who can only handle fortran! I am attaching the new library and hopefully a simple change is needed. I also had to get help from a colleague to get alara to recompile. The new compiler had trouble with the 15 years old code and she added few lines to get it to work. I am listing the changes below. Changes needed:Several places had use of C functions without declaring them. Used to be Had to add to alara.h:
to get strcmp declared.Several messsages about atoi & atof not declared. Files changed for this reason are in:
Original files were saved.
if g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../../src -g -O2 -MT input.o cd src/Util input.C has on line 80: char *tokenType = strstr(tokenList,token); have to change to: const char *tokenType = strstr(tokenList,token); |
A user has contributed some comments about code changes to allow 175-group CINDER support
The text was updated successfully, but these errors were encountered: