17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from...

17

Transcript of 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from...

Page 1: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 2: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 3: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 4: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 5: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 6: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 7: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 8: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 9: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 10: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 11: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.

ATLFClusterMaker *clust=new ATLFClusterMaker("clust","Make clust");ATLFElectronMaker *ele=new ATLFElectronMaker("electron","Make electron");ATLFMuonMaker *muo=new ATLFMuonMaker("muon","Make muon");ATLFPhotonMaker *pho=new ATLFPhotonMaker("photon","Make photon");ATLFJetMaker *jet=new ATLFJetMaker("jet","Make jet");ATLFMiscMaker *misc=new ATLFMiscMaker("misc","Make misc");Pythia *mypythia=new Pythia;testobjy *dbWriter=new testobjy("AtlasProd");

...int main(){...for (ii = 1; ii <= mypythia->nevt ; ++ii) { mypythia->Make();// create event AtlasEvent *evt=new AtlasEvent(ii); evt->Event(); dbWriter->readEvent(evt);// create cluster clust->Make(evt);

dbWriter->addClusters(clust);// create electron ele->Make(evt,clust);

dbWriter->addElectrons(ele);// create muon muo->Make(evt,clust); dbWriter->addMuons(muo);// create photon pho->Make(evt,clust); dbWriter->addPhotons(pho);

...

Page 12: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 13: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 14: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.

EVENT

list of particles

list of clusters

list of electrons

list of muons

list of photon

list of jets

id,ks,kf,mum,secondmum,firstchild,lastchild,px,py,pz,energy,mass,

vx,vy,vz,time

Kfcode,Ncells,Nparticles,Eta0,Phi0,Eta,Phi,Et

Kfcode,Mcparticle,Kfmother,Eta,Phi,Pt

Kfcode,Mcparticle,Kfmother,Isolated,Eta,Phi,Pt

Kfcode,Mcparticle,Kfmother,Eta,Phi,Pt

Kfcode,Ncells,Nparticles,Part,Eta0,Phi0,Eta,Phi,Pt

Page 15: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.

TAG

idrunidevent

npart

nmuos_isonmuos_noiso

nelenphoton

njet

njetb

njetc

njettau

pxmiss

pymiss

pxnu

pynu

Page 16: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.
Page 17: 17 December 1998Silvia Resconi ATLFast++ into LHC++: a first exercise The aim of the exercise: from generation to analysis using ATLFast++ algorithms into.