-
Notifications
You must be signed in to change notification settings - Fork 3
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
Troubled gcm_quickplot.csh #78
Comments
I think this is one place CVS and Git just differ. There are a few places if you compare Git and CVS that things like this have different code due to the difference in GNU Make to CMake. In Git land (even in the ADAS tag), you'll see in
In CVS land, this is:
Now, in Git's
and
(I probably could have/should have cleaned this up, but at the time I was looking at the smallest changes to My guess is whatever bits of the ADAS do the templating of the
would need to point to the install directory, a la:
My guess is @bena-nasa and I never got to the point where plots were made in the GEOSadas as we just run Joe's test suites (which probably don't plot??) so we never hit this. I know in
to:
so that:
would work. (Though maybe |
The root of the problem is not in fvsetup or any of the main DAS scripts. The problem is in the monthly_means.pl scripts that job developed for wrapping Larry's implementation. And indeed, it is as you say, if you don't run the plot opts via Joe's scripts you'll not see the issue. The best person to get this to work is Joe - your tips about are helpful to allow for a fix to be put in place. |
Ricardo, I see the problem. I will have an update for you soon. |
Fixed GEOSUTIL in gcm_plot.tmpl to point to the install directory ins…
We talked about this a long time ago: the GEOSUtil/plot programs cannot point to the src, they must be installed.
Presently, the program gcm_quickplot.csh that falls under the monthly_plots directory has the following command line for quickplot:
$GEOSUTIL/plots/quickplot $PLOT_COMMAND
where the peanut gcm_plotX.j jobs define GEOSUTIL as
setenv GEOSUTIL /discover/nobackup/projects/gmao/advda/rtodling/4OPS/dasGit5271p2/GEOSadas/src
The above seems to be an incorrect definition of GEOSUTIL
in this context the correct path would be:
setenv GEOSUTIL /discover/nobackup/projects/gmao/advda/rtodling/4OPS/dasGit5271p2/GEOSadas/install/plots
but this would break in a CVS checkout version of ADAS.
There is some entanglement here that I think the model group may already have stumbled and have fixes for ...
The text was updated successfully, but these errors were encountered: