9 #include "Pandora/AlgorithmHeaders.h" 22 NeutrinoCreationAlgorithm::NeutrinoCreationAlgorithm() :
23 m_forceSingleEmptyNeutrino(false)
35 PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_INITIALIZED, !=, PandoraContentApi::GetList(*
this,
m_vertexListName,
38 if (!pVertexList || pVertexList->empty())
40 if (PandoraContentApi::GetSettings(*this)->ShouldDisplayAlgorithmInfo())
41 std::cout <<
"NeutrinoCreationAlgorithm: unable to find vertex list " <<
m_vertexListName << std::endl;
43 return STATUS_CODE_SUCCESS;
46 std::string neutrinoPfoListName;
47 const PfoList *pNeutrinoPfoList(
nullptr);
48 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::CreateTemporaryListAndSetCurrent(*
this, pNeutrinoPfoList,
49 neutrinoPfoListName));
53 const Vertex *
const pVertex = *vIter;
55 if (VERTEX_3D != pVertex->GetVertexType())
56 throw StatusCodeException(STATUS_CODE_FAILURE);
59 PandoraContentApi::ParticleFlowObject::Parameters pfoParameters;
61 pfoParameters.m_vertexList.push_back(pVertex);
63 const ParticleFlowObject *pNeutrinoPfo(
nullptr);
64 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::ParticleFlowObject::Create(*
this, pfoParameters, pNeutrinoPfo));
67 if ((!pNeutrinoPfoList) || pNeutrinoPfoList->empty())
68 throw StatusCodeException(STATUS_CODE_FAILURE);
70 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::SaveList<Pfo>(*
this,
m_neutrinoPfoListName));
71 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::ReplaceCurrentList<Pfo>(*
this,
m_neutrinoPfoListName));
73 return STATUS_CODE_SUCCESS;
80 std::string neutrinoPfoListName;
81 const PfoList *pNeutrinoPfoList(
nullptr);
82 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::CreateTemporaryListAndSetCurrent(*
this, pNeutrinoPfoList,
83 neutrinoPfoListName));
85 PandoraContentApi::ParticleFlowObject::Parameters pfoParameters;
88 const ParticleFlowObject *pNeutrinoPfo(
nullptr);
89 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::ParticleFlowObject::Create(*
this, pfoParameters, pNeutrinoPfo));
91 if ((!pNeutrinoPfoList) || pNeutrinoPfoList->empty())
92 throw StatusCodeException(STATUS_CODE_FAILURE);
94 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::SaveList<Pfo>(*
this,
m_neutrinoPfoListName));
95 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::ReplaceCurrentList<Pfo>(*
this,
m_neutrinoPfoListName));
97 return STATUS_CODE_SUCCESS;
104 pfoParameters.m_particleId = NU_MU;
105 pfoParameters.m_charge = PdgTable::GetParticleCharge(pfoParameters.m_particleId.Get());
106 pfoParameters.m_mass = PdgTable::GetParticleMass(pfoParameters.m_particleId.Get());
107 pfoParameters.m_energy = 0.f;
108 pfoParameters.m_momentum = CartesianVector(0.
f, 0.
f, 0.
f);
109 pfoParameters.m_propertiesToAdd[
"IsNeutrino"] = 1.f;
116 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, XmlHelper::ReadValue(xmlHandle,
119 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, XmlHelper::ReadValue(xmlHandle,
122 PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle,
125 return STATUS_CODE_SUCCESS;
std::string m_vertexListName
The name of the neutrino vertex list.
bool m_forceSingleEmptyNeutrino
Whether to force creation of a single neutrino, with no vertex, regardless of number of input vertice...
pandora::StatusCode Run()
Header file for the neutrino creation algorithm class.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
Header file for the cluster helper class.
void FillDefaultNeutrinoParameters(PandoraContentApi::ParticleFlowObject::Parameters &pfoParameters) const
Fill provided pfo parameters with default/dummy values for later refinement.
std::string m_neutrinoPfoListName
The name of the neutrino pfo list.
std::list< Vertex > VertexList
pandora::StatusCode ForceSingleEmptyNeutrino() const
Force creation of a single neutrino, with no vertex, regardless of number of input vertices...