Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:20:18

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 #ifndef KFParticleTest_H
0023 #define KFParticleTest_H
0024 
0025 class KFParticle;
0026 class KFParticleSIMD;
0027 
0028 class KFParticleTest
0029 {
0030  public:
0031   
0032   KFParticleTest();
0033   ~KFParticleTest();
0034   
0035   void PrintTutorial();
0036   void RunTest();
0037   
0038  private:
0039    
0040   void RunTestSingle();
0041   void RunTestSIMD();
0042   void CompareSingleAndSIMDResults();
0043   
0044   KFParticle* fMotherSingle;
0045   KFParticleSIMD* fMotherSIMD;
0046   
0047 #ifndef KFParticleStandalone
0048   ClassDef( KFParticleTest, 1 )
0049 #endif
0050 };
0051 
0052 #endif //KFParticleTest_H
0053