33 Vint iGam,
double Ebeam,
int PID_flag,
int Charge_candidate_D ) {
35 int nGood = iGood.size();
36 int nGam = iGam.size();
41 double mass_bcgg, delE_tag_temp;
42 int m_chargetag, m_chargek, m_chargepi;
43 int ika_temp, ipi_temp, iGam1_temp, iGam2_temp;
44 HepLorentzVector pddd, pddd_temp;
47 IDataProviderSvc* eventSvc = NULL;
48 Gaudi::svcLocator()->service(
"EventDataSvc", eventSvc );
50 SmartDataPtr<Event::EventHeader> eventHeader( eventSvc,
"/Event/EventHeader" );
52 int runNo = eventHeader->runNumber();
53 int rec = eventHeader->eventNumber();
55 double xecm = 2 * Ebeam;
60 if ( ( evtRecEvent->totalCharged() < 2 || nGam < 2 ) ) {
return; }
65 Gaudi::svcLocator()->service(
"SimplePIDSvc", simple_pid );
67 double deltaE_tem = 0.20;
70 Hep3Vector xorigin( 0, 0, 0 );
72 Gaudi::svcLocator()->service(
"VertexDbSvc", vtxsvc );
77 xorigin.setX( dbv[0] );
78 xorigin.setY( dbv[1] );
79 xorigin.setZ( dbv[2] );
82 double xv = xorigin.x();
83 double yv = xorigin.y();
84 double zv = xorigin.z();
86 HepPoint3D point0( 0., 0., 0. );
87 HepPoint3D IP( xorigin[0], xorigin[1], xorigin[2] );
89 HepLorentzVector ptrk1_temp, ptrk2_temp, ptrk3_temp, ptrk4_temp, ptrk5_temp;
91 HepLorentzVector p2gfit;
92 HepLorentzVector p2gg;
93 for (
int i = 0; i < evtRecEvent->totalCharged(); i++ )
97 int ika = ( *itTrk )->trackId();
99 if ( !( *itTrk )->isMdcKalTrackValid() )
continue;
103 m_chargek = mdcKalTrk1->
charge();
104 if ( Charge_candidate_D != 0 )
106 if ( m_chargek != -Charge_candidate_D )
continue;
108 if ( Charge_candidate_D == 0 )
110 if (
abs( m_chargek ) != 1 )
continue;
115 VFHelix helixip3_1( point0, a1, Ea1 );
116 helixip3_1.
pivot( IP );
117 HepVector vecipa1 = helixip3_1.
a();
119 double dr1 = fabs( vecipa1[0] );
120 double dz1 = fabs( vecipa1[3] );
121 double costheta1 =
cos( mdcKalTrk1->
theta() );
122 if ( dr1 >= 1.0 )
continue;
123 if ( dz1 >= 10.0 )
continue;
124 if ( fabs( costheta1 ) >= 0.93 )
continue;
140 for (
int j = 0; j < evtRecEvent->totalCharged(); j++ )
144 int ipi = ( *itTrk )->trackId();
145 if ( ipi == ika )
continue;
147 if ( !( *itTrk )->isMdcKalTrackValid() )
continue;
151 m_chargepi = mdcKalTrk2->
charge();
152 if ( ( m_chargek + m_chargepi ) != 0 )
continue;
155 HepSymMatrix Ea2 = mdcKalTrk2->
getZError();
156 VFHelix helixip3_2( point0, a2, Ea2 );
157 helixip3_2.
pivot( IP );
158 HepVector vecipa2 = helixip3_2.
a();
160 double dr2 = fabs( vecipa2[0] );
161 double dz2 = fabs( vecipa2[3] );
162 double costheta2 =
cos( mdcKalTrk2->
theta() );
163 if ( dr2 >= 1.0 )
continue;
164 if ( dz2 >= 10.0 )
continue;
165 if ( fabs( costheta2 ) >= 0.93 )
continue;
177 for (
int m = 0; m < nGam - 1; m++ )
179 if ( iGam[m] == -1 )
continue;
180 RecEmcShower* g1Trk = ( *( evtRecTrkCol->begin() + iGam[m] ) )->emcShower();
181 double eraw1 = g1Trk->
energy();
183 double the1 = g1Trk->
theta();
184 HepLorentzVector ptrkg1, ptrkg10, ptrkg12;
185 ptrkg1.setPx( eraw1 *
sin( the1 ) *
cos(
phi1 ) );
186 ptrkg1.setPy( eraw1 *
sin( the1 ) *
sin(
phi1 ) );
187 ptrkg1.setPz( eraw1 *
cos( the1 ) );
188 ptrkg1.setE( eraw1 );
190 ptrkg12 = ptrkg1.boost( -0.011, 0, 0 );
192 for (
int n = m + 1;
n < nGam;
n++ )
194 if ( iGam[
n] == -1 )
continue;
195 RecEmcShower* g2Trk = ( *( evtRecTrkCol->begin() + iGam[
n] ) )->emcShower();
196 double eraw2 = g2Trk->
energy();
198 double the2 = g2Trk->
theta();
199 HepLorentzVector ptrkg2, ptrkg20, ptrkg22;
200 ptrkg2.setPx( eraw2 *
sin( the2 ) *
cos(
phi2 ) );
201 ptrkg2.setPy( eraw2 *
sin( the2 ) *
sin(
phi2 ) );
202 ptrkg2.setPz( eraw2 *
cos( the2 ) );
203 ptrkg2.setE( eraw2 );
205 ptrkg22 = ptrkg2.boost( -0.011, 0, 0 );
208 HepLorentzVector ptrkpi0;
209 ptrkpi0 = ptrkg12 + ptrkg22;
210 double m_xmpi0_tem = ptrkpi0.m();
211 if ( m_xmpi0_tem > 0.150 || m_xmpi0_tem < 0.115 )
continue;
213 bool IsEndcap1 =
false;
214 bool IsEndcap2 =
false;
215 if ( fabs(
cos( the1 ) ) > 0.86 && fabs(
cos( the1 ) ) < 0.92 ) IsEndcap1 =
true;
216 if ( fabs(
cos( the2 ) ) > 0.86 && fabs(
cos( the2 ) ) < 0.92 ) IsEndcap2 =
true;
217 if ( IsEndcap1 && IsEndcap2 )
continue;
229 double pi0_chisq = kmfit->
chisq( 0 );
230 if ( pi0_chisq >= 2500 )
continue;
231 HepLorentzVector p2gfit = kmfit->
pfit( 0 ) + kmfit->
pfit( 1 );
232 p2gfit.boost( -0.011, 0, 0 );
235 HepPoint3D vx( xorigin.x(), xorigin.y(), xorigin.z() );
236 HepSymMatrix Evx( 3, 0 );
253 if ( !vtxfit->
Fit( 0 ) )
continue;
259 HepVector kam_val = HepVector( 7, 0 );
261 HepVector pip_val = HepVector( 7, 0 );
264 HepLorentzVector P_KAM( kam_val[0], kam_val[1], kam_val[2], kam_val[3] );
265 HepLorentzVector P_PIP( pip_val[0], pip_val[1], pip_val[2], pip_val[3] );
267 P_KAM.boost( -0.011, 0, 0 );
268 P_PIP.boost( -0.011, 0, 0 );
269 pddd = P_KAM + P_PIP + p2gfit;
271 double pkpipi0 = pddd.rho();
273 double temp1 = (
ecms / 2 ) * (
ecms / 2 ) - pkpipi0 * pkpipi0;
274 if ( temp1 < 0 ) temp1 = 0;
275 double mass_bc_tem = sqrt( temp1 );
276 if ( mass_bc_tem < 1.82 || mass_bc_tem > 1.89 )
continue;
278 double delE_tag_tag =
ecms / 2 - pddd.e();
280 if ( fabs( delE_tag_tag ) < deltaE_tem )
282 deltaE_tem = fabs( delE_tag_tag );
283 delE_tag_temp = delE_tag_tag;
284 mass_bcgg = mass_bc_tem;
287 cqtm_temp = m_chargek;
292 iGam1_temp = iGam[m];
293 iGam2_temp = iGam[
n];
304 if ( cqtm_temp < 0 ) tagmode = -12;
307 delE_tag = delE_tag_temp;
308 cqtm = -1.0 * cqtm_temp;
310 iGoodtag.push_back( ipi_temp );
311 iGoodtag.push_back( ika_temp );
313 iGamtag.push_back( iGam1_temp );
314 iGamtag.push_back( iGam2_temp );
315 iGamtag.push_back( 9999 );
316 iGamtag.push_back( 9999 );