/
SkyThor
/
FitGraph
Обзор
Документация
Войти
/
SkyThor
/
FitGraph
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
3
CI/CD
Аналитика
Безопасность
patch
fdatapcs.h
23 строки
712 B
SkyThor
upload files
24 окт 2025, 08:06
24 окт 2025, 08:06
3da7004
Код
Авторство
О чём код?
#ifndef FDATAPCS_H #define FDATAPCS_H #include "foutput.h" #include "felement.h" class FDataPCS { public: FDataPCS(); static const QString pcs_path; //Путь файла с сечениями enum Shells { S = 'S', P = 'P', D = 'D', F = 'F', G = 'G' }; //Перечисление оболочек void MiningPCS(const FOutput &output, QList<FElement *> &element); const QList<QList<QList<QList<double> > > > &getPhotoionizationCrossSection() const; const QList<QList<QList<QList<double> > > > &getAsymmetry() const; private: QList<QList<QList<QList<double>>>> photoionizationCrossSection, asymmetry; }; #endif // FDATAPCS_H