1-hello |
2-mod |
3-pack |
4-pythia |
5-ATLFAST |
6-aodread |
7-sim |
8-dig |
9-rec |
10-aod |
Assuming you already have the options file RecExCommon_topOptions.py,
you need to create a file such as myAODOptions.py with appropriate input and output files:
##########################################
AllAlgs = False
DetDescrVersion='ATLAS-CSC-02-01-00'
doWriteESD=False
readESD = True
doWriteAOD = True
doWriteTAG = False
doCBNT = False
doHist = False
EvtMax = -1
PoolESDInput = [ "esd10.pool.root" ]
PoolAODOutput = "aod10.pool.root"
#############################################
> athena.py myAODOptions.py RecExCommon_topOptions.py > athena_aod.out
-rw-r--r-- 1 kondo zp 0 May 14 17:17 cdb.log
-rw-r--r-- 1 kondo zp 362 May 14 17:17 OKS_streamTAG_current.py
-rw-r--r-- 1 kondo zp 362 May 14 17:17 OKS_streamRDO_current.py
-rw-r--r-- 1 kondo zp 362 May 14 17:17 OKS_streamESD_current.py
-rw-r--r-- 1 kondo zp 413 May 14 17:17 OKS_streamAOD_current.py
-rw-r--r-- 1 kondo zp 478 May 14 17:18 GeoModelStatistics
-rw-r--r-- 1 kondo zp 1231 May 14 17:18 PoolFileCatalog.xml.BAK
-rw-r--r-- 1 kondo zp 1231 May 14 17:18 PoolFileCatalog.xml
-rw-r--r-- 1 kondo zp 22610 May 14 17:18 aod10.pool.root
-rw-r--r-- 1 kondo zp 640006 May 14 17:18 athena_aod10.out
> athena.py AnalysisSkeleton_topOptions.py > athena_analysis10.out
としたらメモリー侵害でダウン。outから
EventSelector ERROR Unable to open: aod10.pool.root
ServiceManager ERROR Unable to initialize service "EventSelector"
が発生していた。もとに戻ってESD作るときの同時にAODも作ることにする。
前のページWBStudy-9-recへ。できた!今度は大きいな
-rw-r--r-- 1 kondo zp 2406666 May 14 18:25 aod10.pool.root
> athena.py AnalysisSkeleton_topOptions.py > athena_analysis10b.out
1231 May 14 18:34 PoolFileCatalog.xml.BAK
11885 May 14 18:34 athena_analysis10b.out
12673 May 14 18:34 AnalysisSkeleton.aan.root
AnalysisSkeleton.aan.rootをパソコンにscpえ移してみたら成功。
You should have a file of AOD (this was 10 Z0->e+e- events):
-rw-r--r-- 1 lloyd hep 1239599 Jan 19 16:21 aod.pool.root
-rw-r--r-- 1 lloyd hep 7568333 Jan 19 16:15 esd.pool.root
-rw-r--r-- 1 lloyd hep 24351001 Jan 19 15:58 g4digi.pool.root
-rw-r--r-- 1 lloyd hep 8881964 Jan 19 15:52 g4hits.pool.root
-rw-r--r-- 1 lloyd hep 358735 Jan 19 13:49 pythia.pool.root
In order to check that everything is alright
you can run a standard analysis on the AOD as described in WorkBookReadingAOD.
Previous Releases