|
||||
File indexing completed on 2024-04-06 12:10:31
0001 /**************************************************************************** 0002 * 0003 * This is a part of the TOTEM offline software. 0004 * Authors: 0005 * Jan Kašpar (jan.kaspar@gmail.com) 0006 * 0007 ****************************************************************************/ 0008 0009 #include "EventFilter/CTPPSRawToDigi/interface/VFATFrameCollection.h" 0010 0011 const VFATFrame* VFATFrameCollection::GetFrameByIndexID(TotemFramePosition index, unsigned int ID) { 0012 const VFATFrame* returnframe = GetFrameByIndex(index); 0013 if (returnframe == nullptr) 0014 return nullptr; 0015 return (returnframe->getChipID() == (ID & 0xFFF)) ? returnframe : nullptr; 0016 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |