File indexing completed on 2025-04-19 09:10:11
0001 #ifndef PHASIC__Scales__Cluster_Definitions_H
0002 #define PHASIC__Scales__Cluster_Definitions_H
0003
0004 #include "PDF/Main/Cluster_Definitions_Base.H"
0005
0006 namespace PHASIC {
0007
0008 class Cluster_Definitions: public PDF::Cluster_Definitions_Base {
0009 private:
0010
0011 int m_kfac, m_nproc, m_pstype;
0012
0013 public:
0014
0015 inline Cluster_Definitions
0016 (const int kfac,const int nproc,const int pstype):
0017 m_kfac(kfac), m_nproc(nproc), m_pstype(pstype) {}
0018
0019 PDF::Cluster_Param Cluster(const PDF::Cluster_Config &ca);
0020
0021 };
0022
0023 }
0024
0025 #endif