p0 Reconstruction Efforts

Slides:



Advertisements
Similar presentations
Developing Event Reconstruction for CTA R D Parsons (Univ. of Leeds) J Hinton (Univ. of Leicester)
Advertisements

Segmentation. Methods Region Growing Split and Merge Clustering.
Search for B     with SemiExclusive reconstruction C.Cartaro, G. De Nardo, F. Fabozzi, L. Lista Università & INFN - Sezione di Napoli.
Reconstruction in final state Jaewon Park University of Rochester MINERvA/Jupiter Group Meeting, June 13, 2007.
Special Issues on Neutrino Telescopy Apostolos G. Tsirigotis Hellenic Open University School of Science & Technology Particle and Astroparticle Physics.
Photon reconstruction and calorimeter software Mikhail Prokudin.
1 Shower maximum detector (SMD) is a wire proportional counter – strip readout detector using gas amplification. SMD is used to provide a spatial resolution.
Report of the HOU contribution to KM3NeT TDR (WP2) A. G. Tsirigotis In the framework of the KM3NeT Design Study WP2 Meeting - Marseilles, 29June-3 July.
Irakli Chakaberia Final Examination April 28, 2014.
Special Issues on Neutrino Telescopy Apostolos G. Tsirigotis Hellenic Open University School of Science & Technology Particle and Astroparticle Physics.
Report of the HOU contribution to KM3NeT TDR (WP2) A. G. Tsirigotis In the framework of the KM3NeT Design Study WP2 Meeting - Erlangen, May 2009.
A statistical test for point source searches - Aart Heijboer - AWG - Cern june 2002 A statistical test for point source searches Aart Heijboer contents:
NESTOR SIMULATION TOOLS AND METHODS Antonis Leisos Hellenic Open University Vlvnt Workhop.
Tracking, PID and primary vertex reconstruction in the ITS Elisabetta Crescio-INFN Torino.
Calorimeter in front of MUCh Mikhail Prokudin. Overview ► Geometry and acceptance ► Reconstruction procedure  Cluster finder algorithms  Preliminary.
Interactions of hadrons in the SiW ECAL Towards paper Naomi van der Kolk.
Associative Property of Addition
Photon reconstruction and matching Prokudin Mikhail.
June 6, 2006 CALOR 2006 E. Hays University of Chicago / Argonne National Lab VERITAS Imaging Calorimetry at Very High Energies.
Fast Simulation and the Higgs: Parameterisations of photon reconstruction efficiency in H  events Fast Simulation and the Higgs: Parameterisations of.
Search for High-Mass Resonances in e + e - Jia Liu Madelyne Greene, Lana Muniz, Jane Nachtman Goal for the summer Searching for new particle Z’ --- a massive.
04/06/07I.Larin pi0 systematic error 1  0 error budget Completed items (review) Updated and new items (not reported yet) Items to be completed.
1 S, Fedele, Student Presentations, 2004/08/04S Amazing Title Slide Reworking the CES Cluster Reconstruction Algorithm By: Steve Fedele Advisor: Pavel.
1 TPC Meeting Institute of Physics, Academia Sinica Jia-Ye Chen
Aug _5071 Top stop by charm channel analysis using D0 runI data OUTLINE physics process of top to stop Monte Carlo simulation for signal data.
MATHPOWER TM 12, WESTERN EDITION Chapter 9 Probability Distributions
F LIP AND S WAP – F ORWARD J ET P ROXY Josh Perry Iowa State University 1.
Jets in top quark mass measurement Tobias Göttfert IMPRS colloquium 13 th June 2008.
MATH 598: Statistics & Modeling for Teachers June 4, 2014
TrackFixup (overview)
Status of K± p±p0 E. De Lucia.
Top physics during ATLAS commissioning
Using IP Chi-Square Probability
Area of a Rectangle = base x height
Effect of t42 algorithm on jets
Predrag Krstonosic - ILC Valencia
Studies of prompt photon identification and 0 isolation in first p-p collisions at √s=10 TeV May 20, 2009 Meeting Frascati Raphaëlle Ichou.
DCH missing turn analysis
Distributed Clustering for Online Event Reconstruction
Interactions of hadrons in the Si-W ECAL
The h double helicity asymmetry and cross section
Detector Configuration for Simulation (i)
Puzzle A Puzzle B.
KLOE General Meeting - LNF March,
Biomechanics moment of inertia
Individual Particle Reconstruction
FLUCTUATIONS OF MUON ENERGY LOSSES
p0 life time analysis: general method, updates and preliminary result
بسم الله الرحمن الرحيم الموضوع:الوضوء صفته وفرائضه وسننه
I.Larin, PrimEx Analysis meeting
Missing Energy and Tau-Lepton Reconstruction in ATLAS
Angular resolution: Critical for source morphology
مديريت موثر جلسات Running a Meeting that Works
Let A = {image} and B = {image} . Compare A and B.
Sampling Distribution of a Sample Proportion
Hot Topic from Belle : Recent results on quarkonia
Converted photon and π0 discrimination based on H  cut-based analysis Zhen Zhang IHEP
CMS-Bijing weekly meeting
Homework Due Friday & Comprehensive Test on Friday
Homework Due Friday Study Island- Maintenance Sheet 25
Song LIANG CMS-IHEP/Beijing group meeting
Area of combined figures
Study of split-off events in PandaRoot
DARTER: Diffusion Approximation Tools for Extinction Risk Estimation
Approximated Volumetric Reconstruction from Projected Images
Homework Due Friday Study Island- Maintenance Sheet 25
I can show and/or explain how the angle-sum and exterior-angle theorems of a triangle are true. I can identify angle pairs created by parallel lines cut.
Problems in π0 Reconstruction
° status report analysis details: overview; “where we are”; plans: before finalizing result.. I.Larin 02/13/2009.
Presentation transcript:

p0 Reconstruction Efforts Rob Kroeger Sept 13, 2006

To reconstruct single photon: Xt_Fitter the_Xt_Fitter(myGamCluster); if(the_Xt_Fitter.valid_photon) {E0 = the_Xt_Fitter.Photon_E[0]/1000.; position0 = the_Xt_Fitter.Photon_pos[1]; To reconstruct 2-bump cluster: Xt_Fitter the_Xt_Fitter(theIndexedPi0Bumps); if(the_Xt_Fitter.valid_Pi0) { E0 = the_Xt_Fitter.Photon_E[0]/1000.; E1 = the_Xt_Fitter.Photon_E[1]/1000.; position0 = the_Xt_Fitter.Photon_pos[0]; position1 = the_Xt_Fitter.Photon_pos[1]; double myCalibEnergy0 = myCalibrator->energyOf(E0,position0); double myCalibEnergy1 = myCalibrator->energyOf(E1,position1); June 14, 2006 Pi0 Reconstruction

To split one bump: theIndexedBump.insert(std::map<TwoCoordIndex*, EmcBump BbrPtrLess>::value_type (theCurrMaximaTCI, currBump)); bool split_one_bump =true; Xt_Fitter this_Xt_Fitter(theIndexedBump, split_one_bump); if (this_Xt_Fitter.valid_Pi0) { double E0 = this_Xt_Fitter.Photon_E[0]/1000.; double E1 = this_Xt_Fitter.Photon_E[1]/1000.; HepPoint position0 = this_Xt_Fitter.Photon_pos[0]; HepPoint position1 = this_Xt_Fitter.Photon_pos[1]; double myCalibEnergy0 = myGamCalibrator->energyOf(E0,position0); double myCalibEnergy1 = myGamCalibrator->energyOf(E1,position1); } June 14, 2006 Pi0 Reconstruction

The GFLASH parameterization was used: June 14, 2006 Pi0 Reconstruction

WHY?: June 14, 2006 Pi0 Reconstruction

2 fit to Grindhammer form Sum over slices in longitude. June 14, 2006 Pi0 Reconstruction

Each trapazoidally shaped pad devided into eight right-triangles June 14, 2006 Pi0 Reconstruction

Bogus Fast Shower Parameterization, D. Bernard BABAR Note 476 Transverse distribution approximated by sum of Grindhammer terms: June 14, 2006

Photon Reconstruction Angular Reconstruction Error 1 reco compared to prod code June 14, 2006 Pi0 Reconstruction

Run 4 June 14, 2006 Pi0 Reconstruction

Run 4 June 14, 2006 Pi0 Reconstruction

Run 4 June 14, 2006 Pi0 Reconstruction

Splitting p0 merged to one bump: Attempt to estimate axis of decay: June 14, 2006 Pi0 Reconstruction

One Bump merged Pi0 candidates in MergedPi0Tight Pi0 Reconstruction