Analysis
Particle Identification Quality Checks
EG1 run database
run summary
polarization info
split it up into separate pages
Particle Identification
Cherenkov
Cherenkov Theory
When the velocity of a charged particle is greater than the local phase velocity of light or when it enters a medium with different optical properties the charged particle will emit photons. The Cherenkov light is emitted under a constant angle
where
The number of photons produced per unit path length of a particle with charge ze and per unit energy interval of the photons is proportional to the sine of the Cherenkov angle[1]
after deriving the Taylor expansion of our function and considering only the first two terms, we get
The gas used in the CLAS Cerenkov counter is perfluorobutane
with index of refraction equal to 1.00153.
Electrons
The calculation of the number of photoelectrons emitted by electrons is shown below.
Electron mass
The Hall B cherenkov detector is m thick radiator. We assume the PMTs used to collect light have a constant quantum efficiency of 8% for photons with wavelength between 300 and 600 nm.
=
- For the number of photoelectrons we have the following
That means the number of photoelectrons should be about 13.
Used file dst27095_05.B00 energy=5.7GeV and torus=2250(B>0). Target NH3
Pions( )
The threshold energy for pions is ~2.5 GeV and for electrons 9 MeV.
- Example for
where
The Hall B cherenkov detector is
m thick radiator. We assume the PMTs used to collect light have a constant quantum efficiency of 8% for photons with wavelength between 300 and 600 nm.
=
- For the number of photons we have the following(for pions)
Used file dst27095_05.B00 energy=5.7GeV and torus=2250(B>0). Target NH3
CLAS Cherenkov signal
Electrons
The cherenkov signal measured in CLAS for particles identified as electrons by the tracking algorithm is shown below. There are two distributions present. One distribution is centered around 1.5 PEs and the second distribution is at 8 PEs when two gaussians and a Landau distribution are combined and fit to the spectrum. As we will show below, the first peak is due to the misidentification of a negative pion as an electron.
- PE Fit equation
File:Gaussian fitting function.pdf
C.Lanczos, SIAM Journal of Numerical Analysis B1 (1964), 86. File:C.Lanczos SIAM Journal of Numerical Analysis B1 1964 86.pdf
//__[2] [3] ____________________________________________________________________________ Double_t TMath::Landau(Double_t x, Double_t mpv, Double_t sigma, Bool_t norm) { // The LANDAU function with mpv(most probable value) and sigma. // This function has been adapted from the CERNLIB routine G110 denlan. // If norm=kTRUE (default is kFALSE) the result is divided by sigma static Double_t p1[5] = {0.4259894875,-0.1249762550, 0.03984243700, -0.006298287635, 0.001511162253}; static Double_t q1[5] = {1.0 ,-0.3388260629, 0.09594393323, -0.01608042283, 0.003778942063}; static Double_t p2[5] = {0.1788541609, 0.1173957403, 0.01488850518, -0.001394989411, 0.0001283617211}; static Double_t q2[5] = {1.0 , 0.7428795082, 0.3153932961, 0.06694219548, 0.008790609714}; static Double_t p3[5] = {0.1788544503, 0.09359161662,0.006325387654, 0.00006611667319,-0.000002031049101}; static Double_t q3[5] = {1.0 , 0.6097809921, 0.2560616665, 0.04746722384, 0.006957301675}; static Double_t p4[5] = {0.9874054407, 118.6723273, 849.2794360, -743.7792444, 427.0262186}; static Double_t q4[5] = {1.0 , 106.8615961, 337.6496214, 2016.712389, 1597.063511}; static Double_t p5[5] = {1.003675074, 167.5702434, 4789.711289, 21217.86767, -22324.94910}; static Double_t q5[5] = {1.0 , 156.9424537, 3745.310488, 9834.698876, 66924.28357}; static Double_t p6[5] = {1.000827619, 664.9143136, 62972.92665, 475554.6998, -5743609.109}; static Double_t q6[5] = {1.0 , 651.4101098, 56974.73333, 165917.4725, -2815759.939}; static Double_t a1[3] = {0.04166666667,-0.01996527778, 0.02709538966}; static Double_t a2[2] = {-1.845568670,-4.284640743}; if (sigma <= 0) return 0; Double_t v = (x-mpv)/sigma; Double_t u, ue, us, den; if (v < -5.5) { u = TMath::Exp(v+1.0); if (u < 1e-10) return 0.0; ue = TMath::Exp(-1/u); us = TMath::Sqrt(u); den = 0.3989422803*(ue/us)*(1+(a1[0]+(a1[1]+a1[2]*u)*u)*u); } else if(v < -1) { u = TMath::Exp(-v-1); den = TMath::Exp(-u)*TMath::Sqrt(u)* (p1[0]+(p1[1]+(p1[2]+(p1[3]+p1[4]*v)*v)*v)*v)/ (q1[0]+(q1[1]+(q1[2]+(q1[3]+q1[4]*v)*v)*v)*v); } else if(v < 1) { den = (p2[0]+(p2[1]+(p2[2]+(p2[3]+p2[4]*v)*v)*v)*v)/ (q2[0]+(q2[1]+(q2[2]+(q2[3]+q2[4]*v)*v)*v)*v); } else if(v < 5) { den = (p3[0]+(p3[1]+(p3[2]+(p3[3]+p3[4]*v)*v)*v)*v)/ (q3[0]+(q3[1]+(q3[2]+(q3[3]+q3[4]*v)*v)*v)*v); } else if(v < 12) { u = 1/v; den = u*u*(p4[0]+(p4[1]+(p4[2]+(p4[3]+p4[4]*u)*u)*u)*u)/ (q4[0]+(q4[1]+(q4[2]+(q4[3]+q4[4]*u)*u)*u)*u); } else if(v < 50) { u = 1/v; den = u*u*(p5[0]+(p5[1]+(p5[2]+(p5[3]+p5[4]*u)*u)*u)*u)/ (q5[0]+(q5[1]+(q5[2]+(q5[3]+q5[4]*u)*u)*u)*u); } else if(v < 300) { u = 1/v; den = u*u*(p6[0]+(p6[1]+(p6[2]+(p6[3]+p6[4]*u)*u)*u)*u)/ (q6[0]+(q6[1]+(q6[2]+(q6[3]+q6[4]*u)*u)*u)*u); } else { u = 1/(v-v*TMath::Log(v)/(v+1)); den = u*u*(1+(a2[0]+a2[1]*u)*u); } if (!norm) return den; return den/sigma; }
Fitting the Histograms
root [13] e_numb_of_photoelectrons->Draw();
root [2] g3= new TF1("g3","gaus(0)+landau(3)+gaus(6)",0,20);
To get fit parameters for g3 we should fit individually each of them(gaus(0),landau(3),gaus(6))
root [3] g3->SetParameters(2.3e3,8,8.1,8.6e+3,8.6e-1,1.6,8.6e+3,8.6e-1,1.6,8.6e3)
root [11] e_numb_of_photoelectrons->Fit("g3","R+");
- e_Momentum_vs_Number_of_Photoelectrons
The flag cut applied on the number of photoelectrons means that in CLAS detector instead of 5 superlayers were used 6 of them in track fit. As one can see from the histograms of the Number of photoelectrons, the cut on flag does not have effect on the peak around 1.5phe and decreases the number of entries by 37.17 %. The peak is due to a high energy pions(>2.5GeV), which have enough momentum to emit Cherenkov light and also because of the bad collection of light, there are a particular polar and azimuthal combination of angles where The Cherencov Detector cannot receive emitted light. .
- Number of photoelectrons
Data | |||
---|---|---|---|
Table: Cherenkov fit values
Distributions | amplitude | mean | width | amplitude | mean | width |
---|---|---|---|---|---|---|
without cuts | with cut(flag>10) | |||||
gauss(0) | p0=2144+/-44.0 | p1=5.342+/-0.343 | p2=7.761+/-0.188 | p0=1580+/-8.1 | p1=3.75+/-0.06 | p2=8.486+/-0.042 |
landau(3) | p3=4.349e+04+/-2894 | p4=1.049+/-0.026 | p5=0.2197+/-0.0257 | p3=8600+/-3648.7 | p4=-3.861+/-1.414 | p5=-4.88+/-1.41 |
gauss(6) | p6=4960+/-270.6 | p7=0.7345+/-0.0983 | p8=0.8885+/-0.0594 | p6=6219+/-54.2 | p7=1.088+/-0.006 | p8=0.6037+/-0.0052 |
When flag cut(flag>10 cut means that 6 superlayers were used in track fit) was applied the number of entries decreased by 37.17 % and the mean value for the number of photoelectrons is about 7-8. After 5<nphe<15 cut, the number of entries decreased by 66.63 %.The mean value of the nphe is ~9 which agrees with theory(mean value ~13).
Experiment | B>0 | without cuts | flag>10 | 5<nphe<15 | 5<nphe<15 and flag>10 |
---|---|---|---|---|---|
Pions( )
- _Momentum_vs_Number_of_Photons
After e_flag>10 cut, the number of entries decreased by 30.45 % and the mean value for the number of photons is ~9
Experiment | B>0 | without cuts | e_flag>10 | 0<e_nphe<5 | 0<nphe<5 and e_flag>10 |
---|---|---|---|---|---|
Calorimeter
Electron-pion contamination
Osipenko's CLAS Note 2004-20 File:CLAS Note-2004-020.pdf
- EC_tot/P_vs_Number_of_Photoelectrons and EC_inner/P_vs_Number_of_Photoelectrons
Two types of cuts were applied on the distributions below, one on the energy deposited to the inner calorimeter
without cut | _vs_nphe( ) | _vs_nphe ( ) | _vs_nphe( ) |
---|---|---|---|
_vs_nphe( ) | _vs_nphe( and ) | _vs_nphe ( and ) |
---|---|---|
From the EC_tot/P_vs_Number_of_Photoelectrons histogram one can see that the released energy fraction( ) at ~1.5 nphe peak is much smaller than it should be for electrons. In conclusion, the ~1.5 nphe peak is produced by the tail of negatively charged particles(pions). To eliminate negatively charged pions cut is applied on Calorimeter. After the cut was applied the number of entries decreased by ~33.47%.
Plot to 25 PEs. Have a histogram with total sum of three distributions. Use the fits from the cherenkov spectrum to estimate
how many pions are stil in the electron sample after the E/P cut.
Pion contamination in the electron sample (without cuts) =
with cut( | )with cut( | )with cuts( | and )|
---|---|---|---|
Distributions | amplitude | mean | width | amplitude | mean | width | amplitude | mean | width |
---|---|---|---|---|---|---|---|---|---|
with cut( | )with cut( | )with cuts( | and )|||||||
gauss(0) | p0=1919+/-17.8 | p1=3.593+/-0.233 | p2=8.269+/-0.134 | p0=2025+/-9.4 | p1=3.44+/-0.05 | p2=8.442+/-0.037 | p0=1732+/-8.4 | p1=3.886+/-0.050 | p2=8.069+/-0.037 |
landau(3) | p3=8600+/-1.4 | p4=-3.063+/-1.414 | p5=-7.138+/-0.000 | p3=8600+/-3648.7 | p4=-3.092+/-1.414 | p5=-10.91+/-0.000 | p3=8600+/-5160.0 | p4=-2.821+/-1.414 | p5=-7.986+/-1.414 |
gauss(6) | p6=5568+/-69.1 | p7=1.164+/-0.006 | p8=0.543+/-0.008 | p6=5773+/-76.6 | p7=1.162+/-0.008 | p8=0.5562+/-0.0052 | p6=4301+/51.3 | p7=1.189+/-0.008 | p8=0.5299+/-0.0059 |
e_numb_of_photoelectrons with the following cuts
, . To eliminate the photons produced by the negatively charged pions was used the cut on the momentum e_momentum<3 GeV. Because the high energy pions are able to produce photons, which are misidentified with photoelectrons.Electron
Cuts
Calorimeter based cuts
The distributions below represent two types of cuts applied to improve the electron particle identification (PID) using a 4 GeV electron beam incident on an NH3 target. The electron calorimeter is segmented into an inner
and an outer region. The total energy absorbed by the calorimeter system is recorded in the variable . The momentum ( ) is calculated using the reconstructed track and the known torus magnetic field. The distributions of and are shown below where both have been divided by the electron momentum and no cuts have been applied.
Without any cuts we have 181018 entries. After using the following cut
After the cut on the energy deposited into inner part of electron calorimeter, number of entries decreases by 22%.
Both cuts and
In case of using the cuts of the total deposited energy and the energy deposited into inner calorimeter number of entries decreases ~36%
summary table
The "# of triggers" columns represents the number of events which generated a signal above threshold in the calorimeter and the scintillator. The expected # of events column represents the number of reconstructed events with tracks that also make it through the cuts defined in the table.
The semi-inclusive analysis will focus on the 4 GeV and 6 GeV data which have both inbending and outbending torus settings. Specifically runs 28074 - 28579 ( 4 GeV) and Runs 27356 - 27499 and 26874 - 27198 (6 GeV)
Beam Energy | Torus Current | Begin Run | End Run | file used | cuts | # trig( | )expected # evts( | )p<3, | , (%)p>3, | , (%)||
---|---|---|---|---|---|---|---|---|---|---|---|
and | |||||||||||
1606 | 1500 | 25488 | 25559 | dst25504_02.B00 | 64% | 49.5% | 78% | 60 | 3.2 | ||
1606 | 1946 | 25560 | 25605 | 44 | |||||||
1606 | 1500 | 25669 | 25732 | dst25669_02.B00 | 64% | 49% | 78% | 226 | 10 | ||
1606 | 1500 | 25742 | 26221 | dst25754_02.B00 | 21% | 11% | 24% | 3154 | 13.3 | ||
1606 | -1500 | 26222 | 26359 | dst26224_02.B00 | 4.6% | 3% | 6.6% | 703 | 13.1 | ||
1724 | -1500 | 27644 | 27798 | dst27649_02.B00 | 4.8% | 2.2% | 5.9% | 211 | 20 | ||
1724 | 1500 | 28512 | 28526 | 159 | |||||||
1724 | -1500 | 28527 | 28532 | 93 | |||||||
2288 | 1500 | 27205 | 27351 | dst27225_02.B00 | 20.2% | 13% | 25.6% | 1647 | 16.1 | ||
2562 | -1500 | 27799 | 27924 | dst27809_02.B00 | 5.7% | 4.6% | 8.6% | 1441 | 13.1 | ||
2562 | -1500 | 27942 | 27995 | dst27942_02.B00 | 6.1% | 4.4% | 8.9% | 841 | 32.3 | ||
2562 | 1500 | 28001 | 28069 | dst28002_02.B00 | 27.8% | 13% | 29.6% | 1013 | 30.7 | ||
2792 | -1500 | 27936 | 27941 | dst27937_02.B00 | 6.7% | 5% | 9.9% | 69 | 20.6 | ||
3210 | -2250 | 28549 | 28570 | 436 | |||||||
4239 | 2250 | 28074 | 28277 | dst28075_02.B00 | 35.3% | 23.9% | 40.5% | 2278 | 19.6 | ||
4239 | -2250 | 28280 | 28479 | dst28281_02.B00 | 9.1% | 9.4% | 13.6% | 2620 | 15.2 | ||
4239 | 2250 | 28482 | 28494 | 7 | |||||||
4239 | -2250 | 28500 | 28505 | 107 | |||||||
4239 | 2250 | 28506 | 28510 | dst28509_02.B00 | 29.5% | 22% | 36% | 75 | 18.1 | ||
5627 | 2250 | 27356 | 27364 | dst27358_02.B00 | 33.2% | 27.8% | 41.3% | 56 | 19.4 | 44.6 | 40.1 |
5627 | -2250 | 27366 | 27380 | dst27368_02.B00 | 12.6% | 14.8% | 19.5% | 130 | 13.6 | 25.3 | 8.8 |
5627 | 2250 | 27386 | 27499 | dst27388_02.B00 | 33.4% | 27.8% | 41.4% | 1210 | 20.2 | 44.8 | 40.1 |
5627 | 965 | 27502 | 27617 | 493 | |||||||
5735 | -2250 | 26874 | 27068 | dst26904_02.B00 | 13% | 15% | 20% | 1709 | 19.9 | 25.6 | 9.1 |
5735 | 2250 | 27069 | 27198 | dst27070_02.B00 | 33.3% | 28.8% | 42.2% | 1509 | 15 | 46 | 40.2 |
5764 | -2250 | 26468 | 26722 | dst26489_02.B00 | 12.2% | 14.4% | 19.1% | 1189 | 10 | 24.6 | 9.3 |
5764 | 0 | 26723 | 26775 | 268 | |||||||
5764 | -2250 | 26776 | 26851 | dst26779_02.B00 | 13.5% | 15.5% | 20.5% | 662 | 15.9 | 26.4 | 9.2 |
Cut on the number of photoelectrons
In this case is used a cut on the number of photoelectrons, which is
Used cuts and
Used file dst28181_03(energy 4.2GeV). In this case was applied cuts on the polar angle(
Plot of vs
In this case is used file dst27070(Energy 5.735 GeV and Torus 2250) and are applied the following EC cuts: For ECtotal -
P<3
After using above cuts the number of entries decreases ~46%
0.5<P<1
The number of entries decreased by ~51.8%
1<P<1.5
The number of entries decreased approximately by 47.8%
1.5<P<2
In this case the number of entries decreased by 46.1%
2<P<2.5
In this case the number of entries decreased by 38%
P>3
Used file dst27070(Energy 5.735 GeV and Torus 2250) and are applied the following EC cuts: For ECtotal -
The number of entries decreased by~40.2%
Plot of EC_tot/P vs nphe for Electrons
Used file dst27070(Energy 5.735 GeV and Torus 2250)
p<3 GeV
The graphs below represents all electron candidates having a momentum smaller than 3 GeV. Negatively charged pions are the most likely particle to be misidentified as an electrons by the tracking software. A negatively charged pion having a momentum of 3 GeV would generate less than ?? photons in the cerenkov counter. As a result the electron candidates which
- chi_sqr for pions
Used file:27095_05.B00(energy=5.735GeV and torus=2250), everything is done for
p<3 GeV and
p<3 GeV, and
p<3 GeV, , and nphe>2.5
Plot of EC_total vs EC_inner
In this case file dst28181_03.B00 was used(Energy 4.2 GeV and Torus +2250).
The following cuts were applied: , , ec_chi_sqr<0.1 and nphe>3.
Raster and vertex correction
A raster calibration and a cut on the vertex distribution was made in order to select electrons from the polarized target, also the ones scattered from other materials in the beam path. A plot of the uncorrected vertex distribution is presented below for dst27070_02.B00 file(energy=5.7GeV Torus=2250)
Pion
Summary Table
Beam Energy | Torus Current | Begin Run | End Run | file used | # trig( | )expected # evts( | )p>3, | , (%)p<3, | , (%)
---|---|---|---|---|---|---|---|---|
1606 | 1500 | 25488 | 25559 | dst25504_02.B00 | 60 | 3.2 | ||
1606 | 1500 | 25669 | 25732 | dst25669_02.B00 | 226 | 10 | ||
1606 | 1500 | 25742 | 26221 | dst25754_02.B00 | 3154 | 13.3 | ||
1606 | -1500 | 26222 | 26359 | dst26224_02.B00 | 703 | 13.1 | ||
1724 | -1500 | 27644 | 27798 | dst27649_02.B00 | 211 | 20 | ||
2288 | 1500 | 27205 | 27351 | dst27225_02.B00 | 1647 | 16.1 | ||
2562 | -1500 | 27799 | 27924 | dst27809_02.B00 | 1441 | 13.1 | ||
2562 | -1500 | 27942 | 27995 | dst27942_02.B00 | 841 | 32.3 | ||
2562 | 1500 | 28001 | 28069 | dst28002_02.B00 | 1013 | 30.7 | ||
2792 | -1500 | 27936 | 27941 | dst27937_02.B00 | 69 | 20.6 | ||
4239 | 2250 | 28074 | 28277 | dst28075_02.B00 | 2278 | 19.6 | ||
4239 | -2250 | 28280 | 28479 | dst28281_02.B00 | 2620 | 15.2 | ||
4239 | 2250 | 28506 | 28510 | dst28509_02.B00 | 75 | 18.1 | ||
5627 | 2250 | 27356 | 27364 | dst27358_02.B00 | 56 | 19.4 | 36.1 | 31.5 |
5627 | -2250 | 27366 | 27380 | dst27368_02.B00 | 130 | 13.6 | 25 | 43.8 |
5627 | 2250 | 27386 | 27499 | dst27388_02.B00 | 1210 | 20.2 | 39.8 | 32.4 |
5735 | -2250 | 26874 | 27068 | dst26904_02.B00 | 1709 | 19.9 | 22.5 | 46.4 |
5735 | 2250 | 27069 | 27198 | dst27070_02.B00 | 1509 | 15 | 34.6 | 32.9 |
5764 | -2250 | 26468 | 26722 | dst26489_02.B00 | 1189 | 10 | 25.2 | 44.3 |
5764 | -2250 | 26776 | 26851 | dst26779_02.B00 | 662 | 15.9 | 21.3 | 44 |
Table for Pions
I used the pion id code(both subroutines):
Beam Energy | Torus Current | Begin Run | End Run | file used | events remaining after cuts | # trig( | )expected # evts( | )|
---|---|---|---|---|---|---|---|---|
first(%) | second(%) | |||||||
1606 | 1500 | 25488 | 25559 | dst25504_02.B00 | 96.8 | 99 | 60 | 3.2 |
1606 | 1500 | 25669 | 25732 | dst25669_02.B00 | 98.1 | 98.9 | 226 | 10 |
1606 | 1500 | 25742 | 26221 | dst25754_02.B00 | 13.4 | 22.8 | 3154 | 13.3 |
1606 | -1500 | 26222 | 26359 | dst26224_02.B00 | 11.3 | 15.3 | 703 | 13.1 |
1724 | -1500 | 27644 | 27798 | dst27649_02.B00 | 15.3 | 18.7 | 211 | 20 |
2288 | 1500 | 27205 | 27351 | dst27225_02.B00 | 16.4 | 18.9 | 1647 | 16.1 |
2562 | -1500 | 27799 | 27924 | dst27809_02.B00 | 11.1 | 14.2 | 1441 | 13.1 |
2562 | -1500 | 27942 | 27995 | dst27942_02.B00 | 11.1 | 14.2 | 841 | 32.3 |
2562 | 1500 | 28001 | 28069 | dst28002_02.B00 | 22.4 | 23.1 | 1013 | 30.7 |
2792 | -1500 | 27936 | 27941 | dst27937_02.B00 | 12.3 | 15.4 | 69 | 20.6 |
4239 | 2250 | 28074 | 28277 | dst28075_02.B00 | 16.7 | 14.3 | 2278 | 19.6 |
4239 | -2250 | 28280 | 28479 | dst28281_02.B00 | 10.4 | 12.6 | 2620 | 15.2 |
4239 | 2250 | 28506 | 28510 | dst28509_02.B00 | % | % | 75 | 18.1 |
5627 | 2250 | 27356 | 27364 | dst27358_02.B00 | 40.5 | 40.8 | 56 | 19.4 |
5627 | -2250 | 27366 | 27380 | dst27368_02.B00 | 9.7 | 12.7 | 130 | 13.6 |
5627 | 2250 | 27386 | 27499 | dst27388_02.B00 | 14.1 | 15.5 | 1210 | 20.2 |
5735 | -2250 | 26874 | 27068 | dst26904_02.B00 | 12.1 | 14.5 | 1709 | 19.9 |
5735 | 2250 | 27069 | 27198 | dst27070_02.B00 | 19.5 | 22.9 | 1509 | 15 |
5764 | -2250 | 26468 | 26722 | dst26489_02.B00 | 9.6 | 13.3 | 1189 | 10 |
5764 | -2250 | 26776 | 26851 | dst26779_02.B00 | 10.3 | 13.9 | 662 | 15.9 |
Plot of EC_tot/P vs nphe for Pions
Quality Checks
Run Summary Table
The table below uses a characteristic DST file to try and estimate the sample size for a semi-inclusive analysis of pion electroproduction. The column marked "cuts" below indicates the number of events kept when the standard EC based electron identification cuts, described above, are used:
. The next step will be to compare unpolarized pion production rates in order to evaluate the CLAS detectors efficiencies for measuring charged pions with different torus polarities. The question is whether you get the same rates for negatively charged pions in one torus polarity to positively charged pions using the opposite torus polarity.
Beam Energy | Torus Current | Target | Begin Run | End Run | file used | # trig( | )events remaining after | cuts(%)expected # evts( | )events remaining after | and cuts(%)expected # evts( | )events remaining after | and cuts(%)expected # evts( | )
---|---|---|---|---|---|---|---|---|---|---|---|---|
4239 | 2250 | NH3 | 28205 | 28277 | /cache/mss/home/nguler/dst/dst28205_05.B00 | 1108.72 | 60.8 | 674.1 | 8.3 | 92.02 | 3.24 | 35.92 |
ND3 | 28074 | 28190 | /cache/mss/home/nguler/dst/dst28187_05.B00 | 1117.87 | 59.6 | 666.25 | 7.99 | 89.32 | 3.3 | 36.9 | ||
-2250 | NH3 | 28407 | 28479 | /cache/mss/home/nguler/dst/dst28409_05.B00 | 1013.57 | 24.2 | 245.28 | 0.12 | 1.22 | 0 | 0 | |
ND3 | 28278 | 28403 | /cache/mss/home/nguler/dst/dst28400_05.B00 | 1556.04 | 23.9 | 371.89 | 0.02 | 0.31 | 0.05 | 0.51 | ||
5735 | 2250 | NH3 | 27074 | 27195 | /cache/mss/home/nguler/dst/dst27095_05.B00 | 1442.25 | 57.7 | 832.18 | 9.3 | 134.13 | 3.8 | 59.13 |
ND3 | 27116 | 27170 | /cache/mss/home/nguler/dst/dst27141_05.B00 | 624.55 | 59.1 | 369.10 | 9.53 | 59.52 | 3.9 | 24.36 | ||
-2250 | NH3 | 26911 | 27015 | /cache/mss/home/nguler/dst/dst26988.B00 | 900.93 | 80.7 | 727.05 | 7.14 | 64.33 | 9.9 | 89.19 | |
ND3 | 27022 | 27068 | /cache/mss/home/nguler/dst/dst27055_05.B00 | 711.53 | 80 | 569.22 | 6.97 | 49.59 | 10.1 | 71.86 |
Rates
Unpolarized Pion electroproduction
Rates from other experiments in our Kinematic range
Center of Mass Frame Transformation
We have proton and electron. In the Lab frame electron is moving along the x-axis with momentum ;
- Lab Frame
- CM Frame
- :
- Find
Using the last two equations we will get the following for x component:
Example of the Missing Mass Calculation for the following reaction
- : electron mass is neglibible
- : Mass of a proton
- Electron
- Proton
- Missing Mass
- Conservation of the 4-momentum gives us following
- Solving it for the final proton state
- In our case 4-vectors for particles are
- Plug and chug
] [ + - -
Example of the Missing Mass Calculation for the following reaction
Used file dst27095_05.B00. Target
- : electron mass is negligible
- : Mass of a proton
- : Mass of a neutron
- Electron
- Neutron
- Missing Mass Calculation
- Below is the conservation of the 4-momentum
- Solving it for the final neutron state
- The 4-vectors for the particles in this event
] [ + - -
transformation from LAB frame to CM frame
Used file dst27095_05, event_number=3106861
- Calculation of
- Calculation of
- Calculation of
Missing_Mass(experimental data)
The mean value of the missing mass is around 2.056 GeV.
angle
angle for electrons and pions ( ) in lab frame ,
Used file is dst27095_05.B00.Target material is
For Electrons | with cuts (e_p<3, , , nphe>2.5 and sc_paddle=7)For Pions( | ) with cuts for sc_paddle=7
---|---|
For Electrons with cuts (e_p<3, | , , nphe>2.5 and sc_paddle=7)||
---|---|---|
SECTOR 1 | SECTOR 2 | SECTOR 3 |
SECTOR 4 | SECTOR 5 | SECTOR 6 |
For pions( | ) with cuts for sc_paddle=7||
---|---|---|
SECTOR 1 | SECTOR 2 | SECTOR 3 |
SECTOR 4 | SECTOR 5 | SECTOR 6 |
The plots below show what happens when you require the nphe from electron to be > 2.5 and you only look for pions in scintillator paddle 7.
Why is there a big gap for
?
Take a look at theta -vs- phi plots for each sector. Do the dead spots impact difference?
Write equation for
in terms of Lab frame Momentum and energy.Graph
for Pions hitting paddle #7. The y-axis should be pion counting rate in units of pions per nanCoulomb.
angle in the Center of Mass Frame
The variables below are in Lab Frame:
From the above picture we can write down the momentum x,y and z components for pion in terms of angle and total momentum.
where
- Target Nucleon 4-momentum
- Scattered electron 4-momentum
- Hadron final state 4-momentum
- Meson final state 4-momentum
In Inclusive
Then The Missing Mass
In Exclusive
Then Missing Mass
Conservation of 4-momentum gives
- 4-momentum of the exchanged virtual photon( )
First the coordinate system is rotated around z-axis by
= Phi rate =
Why does theangle only go out to 80 degrees?
Add FC histogram, Add plot from paper, start calculating cross -section, Find luminosity of NH3 target used
The rotation matrix, that rotates the coordinate system around y axis by angle is given
Now, the x, y and z components of the momentum can be written in terms of the momentums of the rotated system.
where
Conservation of Momentum :
Conservation of Energy
:
The
angle is in degrees
Pion Rates -vs- Paddle for opposite sign Torus fields
- using all events in which the first particle (the one which caused the trigger) is defined as an electrons and passes the
sc_paddle vs X_bjorken 5.7 GeV Beam Energy
no cuts | cuts | no cuts | cuts |
---|---|---|---|
Electrons | B > 0 | B<0 | |
B > 0 | B<0 | ||
B > 0 | B<0 | ||
sc_paddle vs X_bjorken with cuts 5.7 GeV Beam Energy(number of events=2)
B>0 | B<0 |
B>0 | B<0 |
sc_paddle vs Momentum 5.7 GeV Beam Energy
There is a curvature problem. When B > 0 then I expect the high momentum electrons to hit the lower paddle numbers (inbending). I can see this when I look at the B>0 plot for electrons with cuts. When B < 0 then the electrons are bending outwards which makes me expect the the higher momentum electrons will high the higher numbered paddles. I do not see this for B>0 with electron cuts.
no cuts | cuts | no cuts | cuts |
---|---|---|---|
Electons | B > 0 | B<0 | |
B > 0 | B<0 | ||
B > 0 | B<0 | ||
sc_paddle vs Momentum with cuts 5.7 GeV Beam Energy(number of events=2)
B>0 | B<0 |
B>0 | B<0 |
Used file dst26988_05.B00(Energy=5.7GeV and Torus=-2250)
Paddle 7 Rates and statistics
The number of events per trigger is measured for the respective DST file above and then the Total number events in the data set is estimated from that.
(B>0) | (B<0) | |||
---|---|---|---|---|
Total Number Events | Number events per | triggersTotal Number Events | Number events per | trigger|
0.1 | 5.1 | 71 | 24.6 | 547 |
0.2 | 6.9 | 96 | 13.7 | 305 |
0.3 | 3.7 | 51 | 6.2 | 137 |
0.4 | 3.3 | 45 | 2.7 | 60 |
0.5 | 0.9 | 13 | 0.99 | 22 |
Paddle 17 Rates and statistics
(B<0) | (B>0) | |||
---|---|---|---|---|
Total Number Events | Number events per | triggerTotal Number Events | Number events per | trigger|
0.1 | 6.2 | 137 | 4.6 | 64 |
0.2 | 3.5 | 79 | 4.9 | 67 |
0.3 | 1.7 | 39 | 2.6 | 36 |
0.4 | 0.3 | 7 | 2.1 | 29 |
0.5 | 0.1 | 2 | 0.6 | 8 |
Paddle 5 and 8 Rates and statistics for electrons
sc_paddle=5 (B>0) | sc_paddle=8 (B<0) | |||
---|---|---|---|---|
Total Number Events | Number events per | triggerTotal Number Events | Number events per | trigger|
0.1 | 384.9 | 5.314 | 1665.2 | 3.706 |
0.2 | 382.5 | 5.282 | 977.8 | 2.176 |
0.3 | 264.9 | 3.657 | 567.1 | 1.262 |
0.4 | 159.5 | 2.202 | 328.6 | 0.7313 |
0.5 | 99 | 1.367 | 218.2 | 0.4856 |
Histograms for 5.7 GeV Beam Energy
Electron energy/momentum | Electron Theta ( | )Electron Qsqrd | Electron X_bjorken |
---|---|---|---|
B>0 and sc_paddle=5 | |||
B<0 and sc_paddle=8 | |||
Normalized X_bjorken for electrons
B>0 and sc_paddle=5 | B<0 and sc_paddle=8 |
---|---|
Asymmetries
Systematic Errors
Media:SebastianSysErrIncl.pdf Sebastian's Writeup