66
July 17, 2006 1 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

Embed Size (px)

Citation preview

Page 1: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 1

AliRoot Tutorial

Peter Hristov

CERN, July 17, 2006

Page 2: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 2

ReferencesAliRoot “Primer” http://aliceinfo.cern.ch/Offline/AliRoot/primer.html

Presentation of A.Morsch during the International Workshop on Computing for Heavy Ion Physics (April 26th 2005)

Tutorial prepared by B.Nilsen

Presentations of Yu.Belikov and P.Christakoglou: Alice offline week (March

2006)

Page 3: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 3

Outline

AliRoot installationRoot

Geant3

Fluka

AliRoot

Page 4: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 4

Outline IVersioning systems

Concurrent Versions System (CVS)

Subversion (SVN)

Debugging toolsCompilers

Debuggers

Profilers

Run time and memory management tools

Page 5: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 5

Outline II

SimulationGenerators

Configuration (Config.C)

Reconstruction

AnalysisESD classes

Selectors

Page 6: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 6

AliRoot Installation: Environment Variables

# ROOT export ROOTSYS=/home/mydir/root export PATH=$PATH\:$ROOTSYS/bin export LD_LIBRARY_PATH=$LD_LIBRARY_PATH\:$ROOTSYS/lib

# AliRoot export ALICE=/home/mydir/alice export ALICE_ROOT=$ALICE/AliRoot export ALICE_TARGET=`root-config --arch` export PATH=$PATH\:$ALICE_ROOT/bin/tgt_${ALICE_TARGET} export LD_LIBRARY_PATH=$LD_LIBRARY_PATH\:$ALICE_ROOT/lib/tgt_${ALICE_TARGET}

# GEANT 3 export PLATFORM=`root-config --arch` export LD_LIBRARY_PATH=$LD_LIBRARY_PATH\:$ALICE/geant3/lib/tgt_${ALICE_TARGET}

Page 7: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 7

Installation of AliEn

Download and execute the AliEn installer

wget http://alien.cern.ch/alien-installer

chmod a+x alien-installer

./alien-installer

Install client and gshell

Page 8: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 8

Root Download (CVS)Login to the ROOT CVS repository if you haven't done it yet:

cvs –d :pserver:[email protected]:/user/cvs loginCVS password: cvs

Download (check out) the needed ROOT version (v5-13-02 in the example):

cvs -d :pserver:[email protected]:/user/cvs co -r v5-13-02 root

Page 9: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 9

Root Configuration: Example script #!/bin/sh

ALIEN_ROOT=/opt/alien

./configure \ --with-pythia6-uscore=SINGLE \ --enable-cern --enable-rfio \ --enable-mathmore --enable-mathcore --enable-roofit \ --enable-asimage --enable-minuit2 \ --enable-alien \ --with-alien-incdir=${ALIEN_ROOT}/api/include \ --with-alien-libdir=${ALIEN_ROOT}/api/lib

Page 10: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 10

Root: Compilation, TestsAfter the configuration optionally edit

MyConfig.mk. For example add there OPT += -g

Do “make; make map”

Do “cd test; make”

Optionally add “.” (dot) to LD_LIBRARY_PATH

Run “stress”, ”stressGeom”, ”stressLinear”,

“stressVector”, etc.

Now you have fully operational Root

Page 11: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 11

Installation of Geant3

Geant3 compiles with minimal problems. Needs Root to make TGeant3 interfaceGeant3 must be accessible from $ALICE/geant3

cd $ALICEcvs -d :pserver:[email protected]:/user/cvs co -r v1-6 geant3cd geant3make

Page 12: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 12

Fluka

Register and get the Fluka library from http://www.fluka.org

Unpack the library in $ALICE/fluka

Page 13: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 13

AliRootLogin to the AliRoot CVS repository if you haven't done it yet:

cvs –d :pserver:[email protected]:/soft/cvsroot loginCVS password: cvs

cd $ALICE

Download (check out) the needed AliRoot version (v4-04-Release in

the example):cvs -d :pserver:[email protected]:/soft/cvsroot co -r v4-04-Release AliRoot

cd AliRoot; make

Page 14: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 14

.rootrcDefines ROOT/AliRoot default settingMake a copy of file found in $ALICE_ROOT and put it in your $HOME directoryAdd to “Unix.*.Root.MacroPath:” $ALICE_ROOT/macros and any other directory (like ITS) where you might want to use macros from.Add “Unix.*.Root.IncludePath:” with directories where include files you want are keptOtherwise personalize it to your tastes.

Page 15: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 15

AliRoot’s make optionsmake module

Default no module give, check dependencies and compile everything that might have changedCheck dependencies in give module and then compile everything that has changedhtmldoc, alilibs, aliroot, makedistr, profile, depend, TFluka, Flugg

make cleanclean-all clean up everything including cern librariesclean-module ITS,TPC,… just that subdirectoryclean-modules clean all modules (not cern libraries)clean-libs clean all libraries (not object files)clean-aliroot clean up all aliroot librariesdistclean clean as if fresh install

Page 16: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 16

Concurrent Versions System (CVS)http://www.cvshome.org/ CVS facilitates parallel/concurrent code developmentEasy support and simple accessPossibility to establish group permissions (for example only detector experts and CVS administrators can commit code to given detector module)Rich set of commandsA lot of visualization/logging/control tools

Page 17: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 17

Main CVS Commandsexport CVSROOT=:pserver:[email protected]:/soft/cvsroot

login stores password in .cvspass

checkout retrieves the source files

cvs co -r v4-04-Release AliRoot

update retrieves modifications from the repository and merges them to the local ones

cvs -q update -AdP STEER

diff shows differences between the local and repository versions

cvs -q diff STEER

Page 18: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 18

Main CVS Commandsadd adds files or directories to the repository

cvs add AliTPCseed.*remove removes old files or directories from the repository

cvs remove -f CASTORcommit checks in the local modifications to the repository and increments the version

cvs commit -m “Coding convention” STEER

Page 19: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 19

Main CVS Commands

tag creates new tags and/or branchescvs tag -b v4-04-Release .

status returns the actual status of a

file: revision, sticky tag, dates,

options, and local modificationscvs status Makefile

logout removes the stored password

Page 20: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 20

CVS Visualization/Logging/Control ToolsTkCVS

http://www.twobarleycorns.net/tkcvs.html

CVSWebhttp://www.freebsd.org/projects/cvsweb.html

Cervisia: KDE distributionhttp://www.kde.org/apps/cervisia/

cvs2cl.pl: Producing ChangeLoghttp://www.red-bean.com/cvs2cl/

Page 21: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 21

TkCVS Tool

Page 22: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 22

CVSWeb

Page 23: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 23

CVS Repositoryalisoft.cern.chalicvs01: main serveralicvs02: mirror

ADMS backup

aliceinfo.cern.chViewCVS access

Page 24: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 24

Subversionhttp://subversion.tigris.org/

Most CVS features

Directory versioning

Meta data

Atomic commits

Branching and tagging are cheap

Designed for the network

Better binary file handling

Layered library design

Apache network serve with WebDAV/DeltaV protocol, standalone server option

Versioning of symbolic links

DB or plain file repository implementation

Seems interesting!

Page 25: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 25

Code Maintenance

Supported platforms:Linux (Pentium, Itanium, and Opteron with gcc and icc compilers)

Sun: SPARC, x86 (Solaris with CC compiler)

Alpha (was OSF with cxx compiler, now Linux with gcc)

MAC (Darwin with gcc and icc compilers, xlc obsolete)

Page 26: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 26

CompilersLinux:

gcc (versions 3.2 - 3.4.6). GNU license, free source distribution. Not very strict or ANSI compliant by default.icc (Intel) versions 7.0 – 9.0. Free for non-commercial use, high performance compiler. Gives 20-30% improvement during the execution of AliRoot/Root. More difficult to debug.

Sun CC: extensive warnings, capable to detect non-initialized variables, etc. Integrated in Forte with debugger, profiler, and memory checker.Alpha cxx: strict compiler (relatively old), finds come problems not indicated by any other compilerMac: very sensitive to circular library dependences, initialization of global static variables, etc.

Page 27: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 27

DebuggingErrors during the execution.

Floating point exceptions due to illegal operations: division by zero, sqrt from negative argument, assignment of NaN, etc.

Segmentation violations/faults: attempt to access a memory location that is not allowed to access, or in a way which is not allowed.

Bus error: attempt to access memory that the computer cannot address.

Page 28: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 28

DebuggingUsing printf(...) and assert(...)

Often the only easy way to find the problem

assert(...) aborts the program execution if the argument is FALSE. Is is a macro from assert.h, you can remove its action by compiling with -DNDEBUG

Using gdbNeeds compilation with -g option. Sometimes -O -g prevents from exact tracing

One can use it directly (gdb aliroot) or attach it to a process (gdb aliroot 12345)

Page 29: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 29

Main GDB Commandsrun starts the execution of the program

where prints the program stack

quit exits the gdb session

break sets break pointbreak AliLoader.cxx:100

break 'AliLoader::AliLoader()'

cont continues the run

watch sets watchpoint: watch *fData (slow execution)

list shows the source code

help for the rest of the commands...

Page 30: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 30

ProfilingLinux

Gprof: compilation with -pg option, static librariesOprofile: uses kernel moduleVTune: instruments shared libraries

SunSun workshop (Forte agent): needs compilation with profiling option (-pg)

AlphaPixie profiler: instruments shared libraries for profiling

Page 31: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 31

VTune Profiling ToolAvailable from Intel Web site, free for non-commercial use on Linux

Possibility for call-graph and sampling profiling

Instruments shared libraries, needs only -g option

Example sessionvtl activity stress -c callgraph -app $ROOTSYS/test/stress -moi $ROOTSYS/test/stress

vtl run stress

vtl show

vtl view stress::r1 -gui

Page 32: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 32

VTune

Page 33: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 33

Valgrind: detection of run time errorshttp://www.valgrind.org/

Set of tools

Memcheck for memory management problems

Addrcheck: lightweight memory checker

Cachegrind: cache profiler

Massif: heap profiler

Hellgrind: thread debugger

Callgrind: extended version of Cachegrind

Page 34: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 34

Valgrind: MemcheckMemcheck can detect:

Use of non-initialised memory

Reading/writing memory after it has been free'd

Reading/writing off the end of malloc'd blocks

Reading/writing inappropriate areas on the stack

Memory leaks -- where pointers to malloc'd blocks are lost forever

Mismatched use of malloc/new/new [] vs free/delete/delete []

Overlapping src and dst pointers in memcpy() and related functions

Some misuses of the POSIX pthreads API

Page 35: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 35

Valgrind Examplevalgrind --tool=addrcheck --error-limit=no aliroot -b -

q sim.C

Page 36: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 36

Root Memory CheckerDetection of memory leaks, statistics of memory usage

Fast, easy to use:Link with -lNew

Add ”Root.MemCheck: 1” in .rootrc

Run the program: aliroot -b -q sim.C

Run “memprobe -e aliroot”

Check *.info files

Page 37: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 37

Code Checking and Reverse Engineering Tool

General description:

http://aliceinfo.cern.ch/Offline/AliRoot/Coding-

Conventions.html

Installation: unpack the tarball from /afs/cern.ch/alice/library/local/IRSTCodeAnalysisTool.tgz, in

the directory $ALICE/local/IRST

Do “make check-all” in $ALICE_ROOT

Do “make reveng-all” in $ALICE_ROOT

Do “make revdisp-all” in $ALICE_ROOT

Page 38: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 38

Release Policy: ExampleThe code compiles on all the platforms.Extensive tests on Linux (Pentium, Itanium, Opteron; gcc and icc)Root memory checker: no significant memory leaksTag (no branch): monthlyValgrind: fixes for run-time errorsProfiling: gprof and VTune. Fixes for abnormal algorithms.Tag with branch => release every 6 months

Page 39: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 39

AliRoot: General Layout

General- Base classes- Steering- IO control

Simulation- Interface classes- Event generators- Geometry & Materials

Reconstruction- Clusterization- Tracking- PID

Analysis- ESD classes- HBT- Charm, jets, etc.

AliRoot classes

GeneralSTEEREVGENANALYSIS

DetectorsITSTPCTRD

GeneratorsHIJINGPYTHIA6HERWIG

"On-line"HLTRAWMONITOR

AliRoot modules

Page 40: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 40

AliRoot Layout

ROOT

CINT HIST GRAPH TREES CONT IO MATH …

ALIEN

GRID ITS TPC TRD TOF PHOS EMCAL RICH MUON

FMD

PMD

START

VZERO

ZDC

CRT STRUCT

STEERAliSimulation

AliReconstructionESD classes

G3 G4 Fluka

Virtual MC

HIJING

PYTHIA6

DPMJET

ISAJET

PDF

EVGEN

Analysis

HLT

RAW Monit

HBTAN JETAN

Page 41: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 41

AliRoot: Execution Flow

InitializationEvent

GenerationParticle

TransportHits

SummableDigits

Event merging

Digits/Raw digits

Clusters

Tracking PID ESD Analysis

AliSimulationAliReconstruction

Page 42: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 42

Config.C: Steering the Simulation

Sets random seed

Creates transporter

Creates RunLoader

Replaces geant3 particle decay model by Pythia6

Set up transporter

Creates and sets up event simulator

Defines ALICE Magnetic Field

Defines All materials and geometries/detectors

Void Config(){

gRandom->SetSeed(123456789);

new TGeant3TGeo(“Transporter”);

AliRunLoader *rl = AliRunLoader::Open( “galice.root”,defaultFileNames,”recreate”);

gAlice->SetRunLoader(rl);

TVirtualMCDecayer *dec = AliDecayerPythia();

dec->Init();

gMC->SetExternalDecayer(dec);

gMC->SetCut(“CUTGAM”,1.e-3);

AliGenHIJINGpara *gen = new AliGenHIJINGpara(100);

gen->Init(); // Registers its self to gAlice

gAlice_>SetField(new AliMagFMaps(…);

AliBody *BODY = new AliBODY(“BODY”,”Alice envelope”);

// Registers its self to gAlice

Page 43: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 43

External Generators: HIJINGHIJING

HIJING (Heavy Ion Jet INteraction Generator) combines

• A QCD-inspired model of jet production with the Lund model for jet fragmentation.

• Hard or semi-hard parton scatterings with transverse momenta of a few GeV are expected to dominate high energy heavy ion collisions.

• The HIJING model has been developed with special emphasis on the role of mini jets in pp, pA and AA reactions at collider energies.

Page 44: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 44

HIJINGHijing used as

Underlying event • Realistic fluctuations (N,E) from mini-jets• Pessimistic multiplicity (dN/dy ~ 6000)

Particle Correlation studies• Inclusive • And in reconstructed jets

Nuclear effects• Shadowing• Quenching (parton energy loss)

Page 45: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 45

Other External GeneratorsDPMJET

DPMJET is an implementation of the two-component Dual Parton Model for the description of interactions involving nuclei based on the Glauber-Gribov approach.DPMJET treats soft and hard scattering processes in an unified way The fragmentation of parton configurations is treated by the Lund model PYTHIA.

SFM (String Fusion Model)The soft interactions are described by the Gribov-Regge theory of multipomeron exchange. The hard part of the interaction is simulated by PYTHIA and the strings formed by gluon splitting are fragmented with JETSET. Fusion of soft strings is included.

Page 46: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 46

Ultra-peripheral Collisions

K. Hencken et al.

TPHIC

Massive particle production described in Equivalent Photon Approximation

TEPEM

Electron positron pair production in UPC

AA AA AA X

AA AA e+e-

AA AA AA X

AA AA e+e-

Page 47: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 47

pp

Minimum BiasPythia, Herwig, ISAJET

Pythia with ATLAS Tuning

Hard ProbesPythia tuned to NLO (MNR)

• NLO topology

Modification of nuclear structure functions via EKS in PDFlib

Page 48: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 48

PYTHIA preconfigured processesHeavy Flavors (open)

kPyCharm, kPyBeautykPyCharmUnforced, kPyBeautyUnforced

kPyCharmPbPbMNR, kPyD0PbPbMNR, kPyDPlusPbPbMNR, kPyBeautyPbPbMNR, kPyCharmpPbMNR, kPyD0pPbMNR, kPyDPluspPbMNR, kPyBeautypPbMNR, kPyCharmppMNR, kPyD0ppMNR, kPyDPlusppMNR, kPyBeautyppMNRHeavy Flavor (resonances)

kPyJpsi, kPyJpsiChi

Minimum BiaskPyMb, kPyMbNonDiffr

Jets and high-pT gammaskPyJets, kPyDirectGamma,

W kPyW

Page 49: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 49

Event Generator Interfaces:Parameteriations

Interface to parametrisations and decayer

Page 50: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 50

Example: MUON Library

Parameterisations:kPhi, kOmega, kEta, kJpsi, kJpsiFamily, kPsiP, kJpsiFromB,kUpsilon, kUpsilonFamily, kUpsilonPP, kCharm, kBeauty,kPion, kKaon

Page 51: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 51

Event Generator InterfacesCocktail class to assemble events, for example:

Underlying event + hard process

Different muon sources

pA + slow nucleons

Page 52: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 52

AliSimulation & AliReconstructionUnderlying event in directory ./und (Config.C)

Simulation (full chain up to Digits)

AliSimulation sim;

sim.Run(2);

ReconstructionAliReconstruction rec;

rec.Run();

Signal events in directory ./sig/ (another Config.C)

Simulation (with event merging)

AliSimulation sim;

sim.MergeWith(“./und/galice.root”,3);

sim.Run(6);

ReconstructionAliReconstruction rec;

rec.Run();

Page 53: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 53

Visualization

New module EVE

Usage:alieve

.x alieve_init.C

Use then the macros in the TBrowser

Page 54: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 54

Run MC: Particle TransportationParticles are transported though geometryAt each step, a call to StepManager of the class whose volume the particle is.AliITSvPPRasymmFMD::StepManager

If not sensitive volume return.If not charged return

Record Hit, particle Position (start & end of this step), Momentum, Energy lost during last step, Sub-detector in, Time of Flight, Status, Charge, and Track NumberIn the ITS, hits can also be “merged”

Hits are typically are deleted after SDigitization

Page 55: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 55

Simulation: Summable Digits

Some detectors use

hits as SDigits, PHOS,

EMCAL hits are already

summed, RICH saves

rings/photons

Apply maximal detector

response which will still

allow for 100% Good

digits when merged.

Page 56: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 56

DigitizationAdds noise

Random for SPD, SSD.Correlated for SDD

Applies thresholdSimple Threshold for SPD,SSD2 level Threshold for SDD

Applies ADC-ing10 bit for SDD, SSD108 conversion for SDD

Zero Suppressed2 Integer coordinates, 1 integer signal.Simulation + info by detector type

Page 57: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 57

ReconstructionInputs

Date data file, DDLRAW date fileRAW rootified fileMC/Digit files.

Local/Detector reconstruction (Files Det.RecPoint.root)CalibrationClusterizationCluster splitting…

Vertex finder (Fills ESD)Primary vertex found in SPD, and/or T0.

Tracking (HLT and/or Barrel, Fills ESD)Gives final vertex from tracks and secondary vertecies.HLT uses Conformal mapping (or similar) or a fast KalmanFinal tracking is a full Kalman. (2{TPC→ITS} →{TOF →TRD →EMCAL} or HMPID), MUON.

Combined PID (Fills ESD)

Page 58: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 58

ESD classes, ESD shared library

AliESD AliExternalTrackParam AliESDtrack AliESDMuonTrack AliESDPmdTrack AliESDHLTtrackAliESDVertex AliESDv0 AliESDV0MI AliESDcascade AliESDkinkAliESDpid AliPID

AliKalmanTrack AliHelix AliESDV0MIParams AliTracker AliCluster AliTrackPointArray (reconstruction classes)AliRunTag AliLHCTag AliDetectorTag AliEventTag AliTagCreator AliTagAnalysis AliEventTagCutsAliLog

Currently, the ESD library contains:

Ideally: user@host> root.exe ……………………… root[0] gSystem->Load(“libESD”) root[1] .x AnyAnalysisMacro.C

Page 59: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 59

The AliESD and AliESDtrack classes

Serves for the accumulation and exchange of the tracking information between the barrel detectorsContained by the ESD event and so is used by the physical analysis

Class AliESDtrack : public AliExternalTrackParam

/* final params */

//reconstruction status flags //length, time, combined PID

//final constrained params //impact parameters + their cov.matrix

//params at the outer TPC wall //params at the inner TPC wall …………… //single detector specific info (chi2, num.of clusters, PID…)

Page 60: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 60

ESD Example: Loop on the tracks

AliESD *event=…; //The reconstructed events areTTree *esdTree = …; //stored in TTrees (and so can be “chained”)

Int_t i=0;while (esdTree->GetEvent(i++)) { //loop over the reconstructed events … //select run, event number etc… if (event->GetTrigger() != … ) continue; //select the trigger AliESDvertex *primary=event->GetVertex(); if (/* some cuts on the primary vertex */) continue;

Int_t ntracks=event->GetNumberOfTracks(); for (i=0; i<ntracks; i++) { //loop over ESD tracks (the same for kinks, V0s etc) AliESDtrack *track=event->GetTrack(i); if (track->GetStatus()==…) //select tracks with the proper status if (/* any other selection (quality) criteria */) { … //do whatever you want with the selected tracks } } … AliESDv0 *v0=event->GetV0(13); //retrieve the 13th V0 Int_t ip=v0->GetPositiveIndex(), in=v0->GetNegativeIndex(); //together with its AliESDtrack *ptrack=event->GetTrack(ip); //positive daughter track AliESDtrack *ntrack=event->GetTrack(in); //and negative daughter track …

Page 61: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 61

ESD Example: PIDAliESD *event=…; //The reconstructed events areTTree *esdTree = …; //stored in TTrees (and so can be “chained”)Int_t i=0;while (esdTree->GetEvent(i++) { //loop over the reconstructed events … //event selection…

Double_t priors[AliPID::kSPECIES]={…} //A set of a priori probabilities AliPID::SetPriors(priors);

Int_t ntracks=event->GetNumberOfTracks(); for (i=0; i<ntracks; i++) { //loop over ESD tracks (the same for kinks, V0s etc) AliESDtrack *track=event->GetTrack(i); ULong _t status=AliESDtrack::kTPCpid | AliESDtrack::kTOFpid; if ((track->GetStatus()&status) != status) continue; //select tracks with the proper status if ( … ) continue; //some other selection (quality) criteria

Double_t probDensity[AliPID::kSPECIES]; track->GetESDpid(); AliPID pid(probDensity); Double_t pp=pid.GetProbablity(AliPID::kProton); // probability to be a proton Double_t pk=pid.GetProbability(AliPID::kKaon); // probability to be a kaon … if (pp > 1./AliPID::kSPECIES) { /* this is a proton */} }}

Page 62: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 62

Analysis with SelectorsCreate a selector:

TFile *fESD = TFile::Open(“AliESDs.root”);

TTree *tESD = (TTree *)fESD->Get(“esdTree”);

tESD->MakeSelector();

Modify the selector accordingly.

Use an existing example and modify it

accordingly.

For further information on selectors:Check the analysis user guide provided by Andreas.

Presentation of M.Biskup at the Root workshop 2005

Page 63: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 63

Basics of Selectors

Preprocessing and initialization

Processing each event

Post processing and clean-up

Entries are processed in an arbitrary order

Selectors contain functions important for processing

Only the needed data is

read

Skeleton can be

generated from a Tree

Page 64: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 64

Selectors

TSelector::SlaveBegin();TSelector::SlaveTerminate();

TSelector::Init(TTree*)

TList* fInput, fOutput;

But life is more complicated:

•Many computers to initialize and clean-

up

•Many trees in a chain

•Input and output results should be

transparently sent over network

InputList OutputList

resultsinput data

InputList OutputList

PROOF

network network

Page 65: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 65

PROOF and Selectors

No user’s control on the order

Many Trees are being processed

Initialize each slave

The same code works also without

PROOF (of course!)

Client

Client

Slaves

Slaves

Slaves

Slaves

Page 66: July 17, 20061 AliRoot Tutorial Peter Hristov CERN, July 17, 2006

July 17, 2006 P.Hristov 66

Selectors - summary

Skeletons generated from a tree

Only methods need to be filled

Simplify programs' structure

Can be used for parallel processing as well as for local analysis

More about the selectors during the PROOF tutorial