- My blog
- Post new blog entry
- Top bloggers
- Recent posts
Combinatorics Within Jets: First Looks
Updated on Thu, 2007-10-04 14:05. Originally created by ahoffman on 2007-10-04 13:26.
Working Towards a Photon Cross Section
Updated on Tue, 2007-10-02 14:17. Originally created by rcorliss on 2007-10-02 10:06.A schematic view of a cross section is:
Embedding Notes, Sept 28, 2007
Updated on Fri, 2007-09-28 18:15. Originally created by andrewar on 2007-09-28 18:15.Requests #1154003721 and #1154003633 (Upsilon and J/psi into Pythia+pp)
Data-MC comparison: Zgg
Updated on Fri, 2007-09-28 17:34. Originally created by ahoffman on 2007-09-28 17:20.Data Cuts:
L2Gamma Triggered Events
BBC timebin 6 - 9
Pt > 5.2
No Charged Track Association
1 SMD strip good in each plane
BSMD ADC saturation simulation
Updated on Mon, 2007-10-22 13:46. Originally created by kocolosk on 2007-09-24 15:03.There's been quite some discussion about the saturation of the BSMD ADCs around 850. We don't have this feature in the simulator, so here's my attempt to put it in.
Here's a plot of the ADC and energy distributions from the slow simulator in DEV without any reconfiguration. This is the output of testSimulatorMaker.C using 1000 events from photon MC (photon_25_35_10.geant.root):
Note the sharp ADC peaks at 1023 for the SMDs and the PRS. Now if I configure the simulator with the options (not yet in CVS)
emcSim->setMaximumAdc(kBarrelSmdEtaStripId, 850.0);
emcSim->setMaximumAdcSpread(kBarrelSmdEtaStripId, 15.0);
emcSim->setMaximumAdc(kBarrelSmdPhiStripId, 850.0);
emcSim->setMaximumAdcSpread(kBarrelSmdPhiStripId, 15.0);
Update
These changes were checked into CVS on October 08 2007
SMD Energy in 2005 pp
Updated on Mon, 2007-09-24 12:36. Originally created by fsimon on 2007-09-24 12:31.Prompted by the recent discussion of the BSMD energy I looked at some histograms for hits from 2005 data. Currently I don't have individual strip energies, I only have SMD clusters saved.
First pass at a photon cross-section with LDA: to-do list
Updated on Tue, 2007-09-25 13:08. Originally created by wleight on 2007-09-20 14:31.The cross-section requires the following components:
P07ib embedding scheme test
Updated on Mon, 2007-09-17 18:35. Originally created by andrewar on 2007-09-17 18:35.- Jobs finished successfully
- MiniMc was generated (new feature as of Friday)
Diffusion and Delta Electrons in the FGT Simulator
Updated on Wed, 2007-08-29 16:03. Originally created by fsimon on 2007-08-29 16:03.In order to get the most realistic performance possible out of the FGT Slow Simulator, all important physical effects have to be incorporated.
Description of the slow simulator procedures for the BEMC
Updated on Mon, 2007-08-27 08:48. Originally created by kocolosk on 2007-08-27 08:39.BSMD
The SMDs can be simulated in one of two modes. In a rewrite of the slow simulator I call them kTestMode and kSimpleMode. kTestMode doesn't do anything interesting, so let's focus on kSimpleMode. Here are the steps to generate an ADC:
- ADC = energy deposit * sampling fraction(eta) / calib
- ADC += mRandom.Gaus(pedMean, pedRMS)
- ADC *= mRandom.Gaus(1.0 + calibOffset, calibSpread)
- force ADC between 0 and maxADC
The energy is then calculated from this ADC is the usual way: energy = (ADC - pedMean) * calib. Remember the BEMC calibration coefficients are stored as GeV/ADC.
BTOW - BPRS
The simulators for these two detectors have some additional modes (kPrimaryOnlyMode, kPrimarySecondaryFastMode, kPrimarySecondaryFullMode). Here's the setup for the kPrimaryMode:
- photoElectrons = energy deposit * (MIP photo electrons / MIP energy deposit)
- smear using Poisson distribution
- ADC = photoElectrons * sampling fraction(eta) * (MIP energy deposit / MIP photo electrons) / calib
- follow steps 2-4 of simple simulator to add pedestals, smear calibration, and check for valid range
The other two modes also take the secondary photostatistics from the PMT amplification into account. I'll focus on the full mode, as it's slightly easier to understand:
- build a set of secondary electron conversion coefficients (1 / dynode) using the relative voltage distribution among the dynodes and an approximate value for the total PMT amplification.
- Loop through dynodes and at each step
- nElectrons = mRandom.PoissonD( mSecondaryCoeff[i] * nElectrons + mDynodeNoise );
- ADC = nElectrons * mTotalDynodeGain *sampling fraction(eta) * (MIP energy deposit / MIP photo electrons) / calib
- follow steps 2-4 of simple simulator above
The mTotalDynodeGain in step 3 is the inverse of the product of the secondary electron conversion coefficients.