Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:18:28

0001 /* Copyright 2019, Belle II Collaboration
0002    Authors: Dmitrii Neverov
0003 
0004    This file is part of GENFIT.
0005 
0006    GENFIT is free software: you can redistribute it and/or modify
0007    it under the terms of the GNU Lesser General Public License as published
0008    by the Free Software Foundation, either version 3 of the License, or
0009    (at your option) any later version.
0010 
0011    GENFIT is distributed in the hope that it will be useful,
0012    but WITHOUT ANY WARRANTY; without even the implied warranty of
0013    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0014    GNU Lesser General Public License for more details.
0015 
0016    You should have received a copy of the GNU Lesser General Public License
0017    along with GENFIT.  If not, see <http://www.gnu.org/licenses/>.
0018 */
0019 
0020 #pragma once
0021 
0022 namespace genfit {
0023 
0024   /* The PDG code used for the magnetic monopole; somewhat arbitrary.
0025    *
0026    * PDG allocates all code starting with 99 to be
0027    * used for user-defined particles. Some folks weave
0028    * the magnetic charge and mass into the code itself,
0029    * but here we would like to consider them as floats,
0030    * and so we have to store them elsewhere as data members.
0031    */
0032   const int c_monopolePDGCode = 99666;
0033 
0034 }