Difference between revisions of "Producing Woutuple from AOD"

From Atlas Wiki
Jump to navigation Jump to search
Line 30: Line 30:
  
 
<b><font color="red">Note:</font></b>
 
<b><font color="red">Note:</font></b>
CMT expects that in this top directory where the package is located is in your CMTPATH. Make sure this is the case:
+
CMT expects that in this top directory where the package is located is in your CMTPATH.  
<tt>setenv CMTPATH `pwd`:${CMTPATH}</tt>
+
 
 +
Make sure this is the case: <tt>setenv CMTPATH `pwd`:${CMTPATH}</tt>
  
 
== Setp 4: Running the package (an Ntuple from an AOD) ==
 
== Setp 4: Running the package (an Ntuple from an AOD) ==

Revision as of 16:56, 20 September 2005

Producing an Ntuple from an AOD

The Ntuple that is produced from the AOD is a dump of most information contained in the AOD. The package that produces an Ntuple from the AOD contains:

  • a clone of UserAnalysis/AnalysisSkeleton and
  • a clone of AnalysisExamples/ttbar
  • the simpleTTbar class that dumps a (nearly) complete ntuple with all AOD information needed for a ttbar analysis on full simulation Monte Carlo

Step 1: Set up ATLAS release 10.0.2 software environment

Make link to Wouter's page

Step 2: Get the code

Go to the directory where you want to install the package and get the code: TTBarAnalysis.tgz

Step 3: Setting up the package

  1. Go to the directory where you want to install the package and unpack the code:
tar -xzvf TTBarAnalysis.tgz

The package will appear in a subdirectory named TTBarAnalysis of the chosen directory.

  1. Go to the cmt directory: cd TTBarAnalysis/cmt
  2. Execute cmt config
  3. Execute source setup.csh
  4. Build the library: gmake

Note: CMT expects that in this top directory where the package is located is in your CMTPATH.

Make sure this is the case: setenv CMTPATH `pwd`:${CMTPATH}

Setp 4: Running the package (an Ntuple from an AOD)

The athena job requires as input the AOD files (also registered in the poolfilecatalogue), the names of the ParticleContainers in the AOD and the name of the output Ntuple. To process a single file called rome.004100.recov10.T1_McAtNLO_top._00001.myaod.pool.root in the directory /data/atlas/public/Rome/T1/AOD/AOD_Eric/0000/ follow the following steps:

1) If not already done before, go to the cmt directory and execute source setup.csh

2) Go to the run directory: cd /TTBarAnalysis/run

3) The set of AOD files is rather and rather than copying them to the run directory it is easier to create a link to the directory containing them AODs from the run directory. For us at NIKHEF:

 ln -s /data/atlas/public/Rome/T1/AOD/AOD_Eric/ AOD
  

4) Insert the files into the pool file catalog: pool_insertFileToCatalog AOD/0000/rome.004100.recov10.T1_McAtNLO_top._00001.myaod.pool.root

5) Before launching the athena job, edit the joboptions file (simpleTTbar_joboptions.py):

  • Set the Type of simulation (SimType, see example in joboptions file for details)
  • List your AOD file as the input AOD-file (EventSelector.InputCollections)
  • Enter the filename of the Ntuple that will be produced (NtupleSvc.Output)

6) Execute: athena.py simpleTTbar_jobOptions.py

An Ntuple called Ntuple_file1.root is produced that can be analysed using the Analysis Skeleton.

Step 6: Extra's

Note 1:

All POOL files processed by Athena should be registered in the PoolFile Catalog. Easiest is to register ALL your AODs into the catalog: pool_insertFileToCatalog AOD/*/*AOD.pool.root


Note 2:

Check out the other wiki pages at NIKHEF on how to: Analyse the Ntuple using the AnalysisSkeleton and the Ntuple content.