Difference between revisions of "Monte Carlo code"

From GlueXWiki
Jump to: navigation, search
Line 6: Line 6:
 
For the GEANT code you will need to modify the  
 
For the GEANT code you will need to modify the  
 
analysis.gmk file to include the lines
 
analysis.gmk file to include the lines
CPPFLAGS +=$(shell root-config --cflags)
+
* CPPFLAGS +=$(shell root-config --cflags)
ROOTLIBS = $(shell root-config --nonew --libs)
+
* ROOTLIBS = $(shell root-config --nonew --libs)
EXTRALIBS  += $(ROOTLIBS)
+
* EXTRALIBS  += $(ROOTLIBS)

Revision as of 12:12, 16 January 2013

Mami MC code

Prerequisites

To install and run the Monte Carlo you will need to have installed:

  • ROOT
  • GEANT

For the GEANT code you will need to modify the analysis.gmk file to include the lines

  • CPPFLAGS +=$(shell root-config --cflags)
  • ROOTLIBS = $(shell root-config --nonew --libs)
  • EXTRALIBS += $(ROOTLIBS)