![]() |
|
|||
File indexing completed on 2025-08-03 08:20:16
0001 /* 0002 * This file is part of KFParticle package 0003 * Copyright (C) 2007-2019 FIAS Frankfurt Institute for Advanced Studies 0004 * 2007-2019 Goethe University of Frankfurt 0005 * 2007-2019 Ivan Kisel <I.Kisel@compeng.uni-frankfurt.de> 0006 * 2007-2019 Maksym Zyzak 0007 * 0008 * KFParticle is free software: you can redistribute it and/or modify 0009 * it under the terms of the GNU General Public License as published by 0010 * the Free Software Foundation, either version 3 of the License, or 0011 * (at your option) any later version. 0012 * 0013 * KFParticle is distributed in the hope that it will be useful, 0014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0016 * GNU General Public License for more details. 0017 * 0018 * You should have received a copy of the GNU General Public License 0019 * along with this program. If not, see <https://www.gnu.org/licenses/>. 0020 */ 0021 0022 #include "KFMCParticle.h" 0023 0024 #ifndef KFParticleStandalone 0025 ClassImp(KFMCParticle) 0026 #endif 0027 0028 KFMCParticle::KFMCParticle() :fDaughterIds(), fMCTrackID(-1), fMotherId(-1), fPDG(0), fInitialParticleId(-1) 0029 { 0030 for(int i=0; i<3; i++) 0031 { 0032 fIsReconstructable[i] = 0; 0033 fIsV0[i] = 0; 0034 } 0035 fIsReconstructable[3] = 0; 0036 fIsReconstructable[4] = 0; 0037 } 0038 0039 KFMCParticle::~KFMCParticle() 0040 { 0041 } 0042 0043 void KFMCParticle::AddDaughter( int i ) 0044 { 0045 fDaughterIds.push_back(i); 0046 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |