/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FastSimulation/Event/interface/FSimTrackEqual.h
18 строк
473 B
Shahzad Malik Muzaffar
[FASTSIM] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:14
05 сен 2024, 17:14
14f3af3
Код
Авторство
О чём код?
#ifndef FastSimulation_Event_FSimTrackEqual_H #define FastSimulation_Event_FSimTrackEqual_H #include "FastSimulation/Event/interface/FSimTrack.h" class FSimTrackEqual { public: FSimTrackEqual(int index) : trackIndex_(index) {} FSimTrackEqual(const FSimTrack& myTrack) : trackIndex_(myTrack.trackId()) {} ~FSimTrackEqual() { ; }; inline bool operator()(const FSimTrack& track) const { return (track.id() == trackIndex_); } private: int trackIndex_; }; #endif