|
[Rivet-svn] r2958 - in trunk: . src/Analysesblackhole at projects.hepforge.org blackhole at projects.hepforge.orgTue Feb 22 23:45:13 GMT 2011
Author: buckley Date: Tue Feb 22 23:45:12 2011 New Revision: 2958 Log: Add the RivetPreliminary analysis library Modified: trunk/configure.ac trunk/src/Analyses/Makefile.am Modified: trunk/configure.ac ============================================================================== --- trunk/configure.ac Tue Feb 22 23:43:11 2011 (r2957) +++ trunk/configure.ac Tue Feb 22 23:45:12 2011 (r2958) @@ -167,6 +167,18 @@ AM_CONDITIONAL(ENABLE_UNVALIDATED, [test x$enable_unvalidated = xyes]) +## Disable build/install of validated-but-preliminary analyses +AC_ARG_ENABLE([preliminary], + [AC_HELP_STRING(--disable-preliminary, [build and install validated-but-preliminary analyses])], + [], [enable_preliminary-yes]) +if test x$enable_preliminary = xyes; then + AC_MSG_NOTICE([Building preliminary Rivet analyses]) +else + AC_MSG_NOTICE([Not building preliminary Rivet analyses, by request]) +fi +AM_CONDITIONAL(ENABLE_PRELIMINARY, [test x$enable_preliminary = xyes]) + + ## Build LaTeX docs if possible... AC_PATH_PROG(PDFLATEX, pdflatex) AM_CONDITIONAL(WITH_PDFLATEX, [test x$PDFLATEX != x]) Modified: trunk/src/Analyses/Makefile.am ============================================================================== --- trunk/src/Analyses/Makefile.am Tue Feb 22 23:43:11 2011 (r2957) +++ trunk/src/Analyses/Makefile.am Tue Feb 22 23:45:12 2011 (r2958) @@ -42,6 +42,24 @@ endif +## Preliminary analyses: validated analyses whose experimental paper has not +## been fully accepted for publication should go here. Analyses in this group +## are considered safe to use but the reference data may yet change. In +## progressing from the preliminary analyses library to a permanent published +## analyses collection, the analysis name is likely to change, so you should +## ensure that any Rivet-using scripts are not broken by such name changes +## when upgrading between Rivet versions. These analyses will not be available +## if Rivet is built with the --disable-preliminary configure flag. +if ENABLE_PRELIMINARY +lib_LTLIBRARIES += RivetPreliminary.la +RivetPreliminary_la_SOURCES = \ + CDF_2008_LEADINGJETS.cc \ + CDF_2008_NOTE_9351.cc \ + CDF_2009_NOTE_9936.cc \ + STAR_2009_UE_HELEN.cc +endif + + lib_LTLIBRARIES += RivetALICEAnalyses.la RivetALICEAnalyses_la_SOURCES = \ ALICE_2010_S8706239.cc \ @@ -60,10 +78,12 @@ ATLAS_2011_S8924791.cc \ ATLAS_2011_S8971293.cc + lib_LTLIBRARIES += RivetCMSAnalyses.la RivetCMSAnalyses_la_SOURCES = \ CMS_2011_S8957746.cc + lib_LTLIBRARIES += RivetCDFAnalyses.la RivetCDFAnalyses_la_SOURCES = \ CDF_1988_S1865951.cc \ @@ -83,14 +103,11 @@ CDF_2006_S6450792.cc \ CDF_2006_S6653332.cc \ CDF_2007_S7057202.cc \ - CDF_2008_LEADINGJETS.cc \ - CDF_2008_NOTE_9351.cc \ CDF_2008_S7540469.cc \ CDF_2008_S7828950.cc \ CDF_2008_S8093652.cc \ CDF_2008_S8095620.cc \ CDF_2009_S8233977.cc \ - CDF_2009_NOTE_9936.cc \ CDF_2009_S8383952.cc \ CDF_2009_S8436959.cc \ CDF_2010_S8591881_DY.cc \ @@ -143,8 +160,7 @@ RivetRHICAnalyses_la_SOURCES = \ STAR_2006_S6500200.cc \ STAR_2006_S6860818.cc \ - STAR_2006_S6870392.cc \ - STAR_2009_UE_HELEN.cc + STAR_2006_S6870392.cc lib_LTLIBRARIES += RivetSPSAnalyses.la
More information about the Rivet-svn mailing list |