Workflow 1958, Stage 1
Priority | 50 |
Processors | 1 |
Wall seconds | 80000 |
RSS bytes | 2097152000 (2000 MiB) |
Max distance for inputs | 100.0 |
Enabled input RSEs |
|
Enabled output RSEs |
|
Enabled sites |
|
Scope | usertests |
Events for this stage |
Output patterns
| Destination | Pattern | Lifetime | For next stage |
---|
0 | https://fndcadoor.fnal.gov:2880/dune/scratch/users/lavaut/01958/1 | *evts*.root | | |
Environment variables
Name | Value |
---|
ENERGY | 4000 |
INPUT_TAR_DIR_LOCAL | /cvmfs/fifeuser1.opensciencegrid.org/sw/dune/e7acac3942bdb968a6ac6ebcb82ce15dc9f3dbd1 |
NUM_EVENTS | 500 |
File states
Total files | Finding | Unallocated | Allocated | Outputting | Processed | Not found | Failed |
---|
|
1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Job states
Total | Submitted | Started | Processing | Outputting | Finished | Notused | Aborted | Stalled | Jobscript error | Outputting failed | None processed |
---|
12 | 0 | 0 | 0 | 0 | 6 | 0 | 0 | 6 | 0 | 0 | 0 |
RSEs used
Name | Inputs | Outputs |
---|
MONTECARLO | 6 | 0 |
Stats of processed input files as CSV or JSON, and of uploaded output files as CSV or JSON (up to 10000 files included)
File reset events, by site
Site | Allocated | Outputting |
---|
NL_NIKHEF | 3 | 0 |
CERN | 1 | 0 |
UK_Oxford | 1 | 0 |
Jobscript
echo 'gen-g4-det-reco of electron at ${ENERGY} keV in PDVD'
#!/bin/bash
# fcl file and DUNE software version/qualifier to be used
FCL_GEN=${INPUT_TAR_DIR_LOCAL}/gen_protodunevd_electron_${ENERGY}keV.fcl
FCL_REC=${INPUT_TAR_DIR_LOCAL}/protodunevd_reco.fcl
FCL_G41=${INPUT_TAR_DIR_LOCAL}/protodunevd_refactored_g4_stage1.fcl
FCL_G42=${INPUT_TAR_DIR_LOCAL}/protodunevd_refactored_g4_stage2.fcl
FCL_DET=${INPUT_TAR_DIR_LOCAL}/protodunevd_refactored_detsim.fcl
DUNE_VERSION=${DUNE_VERSION:-v09_89_01d00}
DUNE_QUALIFIER=${DUNE_QUALIFIER:-e26:prof}
# number of events to process from the input file
if [ "$NUM_EVENTS" != "" ] ; then
events_option="-n $NUM_EVENTS"
fi
# First get an unprocessed file from this stage
did_pfn_rse=`$JUSTIN_PATH/justin-get-file`
if [ "$did_pfn_rse" = "" ] ; then
echo "Nothing to process - exit jobscript"
exit 0
fi
# Setup DUNE environment
source /cvmfs/dune.opensciencegrid.org/products/dune/setup_dune.sh
# the xroot lib for streaming non-root files is in testproducts,
# so add it to the start of the path
export PRODUCTS=/cvmfs/dune.opensciencegrid.org/products/dune/testproducts:${PRODUCTS}
setup dunesw "$DUNE_VERSION" -q "$DUNE_QUALIFIER"
export OMP_NUM_THREADS=${JUSTIN_PROCESSORS}
# Construct outFile
DEC="protodunevd"
TYPE="electron"
ROI="111"
outFile_gen=${DEC}_${TYPE}_${ENERGY}keV_${NUM_EVENTS}evts_gen.root
outFile_g41=${DEC}_${TYPE}_${ENERGY}keV_${NUM_EVENTS}evts_g41.root
outFile_g42=${DEC}_${TYPE}_${ENERGY}keV_${NUM_EVENTS}evts_g42.root
outFile_det=${DEC}_${TYPE}_${ENERGY}keV_${NUM_EVENTS}evts_det.root
outFile_rec=${DEC}_${TYPE}_${ENERGY}keV_${NUM_EVENTS}evts_rec_ROI${ROI}.root
## THE PROCESS
lar -c $FCL_GEN $events_option -o $outFile_gen
lar -c $FCL_G41 $outFile_gen -o $outFile_g41
lar -c $FCL_G42 $outFile_g41 -o $outFile_g42
lar -c $FCL_DET $outFile_g42 -o $outFile_det
lar -c $FCL_REC $outFile_det -o $outFile_rec
echo 'WORK DONE !'