/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/LaserAlignment/interface/LASPeakFinder.h
28 строк
548 B
Cms Build
Clang-Format
20 май 2019, 13:01
20 май 2019, 13:01
125ebea
Код
Авторство
О чём код?
#ifndef __LASPEAKFINDER_H #define __LASPEAKFINDER_H #include <utility> #include <cmath> #include <iostream> #include <TH1.h> #include <TF1.h> #include "Alignment/LaserAlignment/interface/LASModuleProfile.h" /// /// class for fitting laser peaks /// in a LASModuleProfile; /// (will replace BeamProfileFitter) /// class LASPeakFinder { public: LASPeakFinder(); bool FindPeakIn(const LASModuleProfile&, std::pair<double, double>&, TH1D*, const double); void SetAmplitudeThreshold(double); private: double amplitudeThreshold; }; #endif