Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Here is a sample xml file for upload to Gino:

Code Block
xml
xml
{include:ReconTask.xml}<?xml version="1.0" encoding="UTF-8"?>
<pipeline
	xmlns="http://glast-ground.slac.stanford.edu/pipeline"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://glast-ground.slac.stanford.edu/pipeline http://glast-ground.slac.stanford.edu/pipeline/pipeline.xsd">

	<name>allGamma-GR-v4r6-test1</name>
	<type>SimReconDigi</type>
	<base-path>/nfs/farm/g/glast/u13/DC2/PipelineTest/allGamma/</base-path>
	<run-log-path>/temp/</run-log-path>

	<executable name="GleamWrapper" version="v1r0">
      /afs/slac/u/ey/richard/GLAST/Pipeline/allGamma/GleamWrapper.pl
    </executable>

	<batch-job-configuration name="long-job" queue="long">
		<working-directory>log/$(RUN_NAME)/</working-directory>
		<log-file-path>rootData/$(RUN_NAME)/</log-file-path>
	</batch-job-configuration>

	<file name="digi" type="DIGI" file-type="root">rootData/$(RUN_NAME)/</file>
	<file name="merit" type="merit" file-type="root">rootData/$(RUN_NAME)/</file>
	<file name="recon" type="RECON" file-type="root">rootData/$(RUN_NAME)/</file>
	<file name="mc" type="MC" file-type="root">rootData/$(RUN_NAME)/</file>

	<processing-step name="gleam" executable="GleamWrapper" batch-job-configuration="long-job">
		<output-file name="mc"/>
		<output-file name="merit"/>
		<output-file name="recon"/>
		<output-file name="script"/>
	</processing-step>
</pipeline>

In addition there are two files that the pipeline uses to run Gleam:

...