Skip to content
Snippets Groups Projects
Commit 16935f22 authored by Valérian Alcindor's avatar Valérian Alcindor
Browse files

Removing work in progress part to avoid any problem in the analysis

parent 248d7a44
No related branches found
No related tags found
No related merge requests found
...@@ -351,34 +351,46 @@ void TMust2Physics::BuildPhysicalEvent() { ...@@ -351,34 +351,46 @@ void TMust2Physics::BuildPhysicalEvent() {
CheckEvent(N); CheckEvent(N);
///////////////////////////////////////////////// /////////////////////////////////////////////////
// This test retrieves only Y interstrips if (m_OrderMatch == 2) {
// see Xavier Mougeot's PhD. In the case where Clear();
if (InterstripTreatment && m_OrderMatch == 2) {
EventType.push_back(2);
Si_E.push_back(std::max(Si_X_E, Si_Y_E));
} else { } else {
EventType.push_back(1); // This test retrieves only Y interstrips
// see Xavier Mougeot's PhD. In the case where
// if (InterstripTreatment == true) {
// EventType.push_back(2);
// Si_E.push_back(std::max(Si_X_E, Si_Y_E));
// } else if (InterstripTreatment == false) {
// EventType.push_back(2);
// Si_E.push_back(-1000);
// } else {
// EventType.push_back(1);
// if (m_Take_E_Y)
// Si_E.push_back(Si_Y_E);
// else
// Si_E.push_back(Si_X_E);
// }
if (m_Take_E_Y) if (m_Take_E_Y)
Si_E.push_back(Si_Y_E); Si_E.push_back(Si_Y_E);
else else
Si_E.push_back(Si_X_E); Si_E.push_back(Si_X_E);
}
if (m_Take_T_Y) if (m_Take_T_Y)
Si_T.push_back(Si_Y_T); Si_T.push_back(Si_Y_T);
else else
Si_T.push_back(Si_X_T); Si_T.push_back(Si_X_T);
if (!check_SILI) { if (!check_SILI) {
SiLi_N.push_back(0); SiLi_N.push_back(0);
SiLi_E.push_back(-1000); SiLi_E.push_back(-1000);
SiLi_T.push_back(-1000); SiLi_T.push_back(-1000);
} }
if (!check_CSI) { if (!check_CSI) {
CsI_N.push_back(0); CsI_N.push_back(0);
CsI_E.push_back(-1000); CsI_E.push_back(-1000);
CsI_T.push_back(-1000); CsI_T.push_back(-1000);
}
} }
} // loop on event multiplicity } // loop on event multiplicity
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment