ATLAS Offline Software
SrcIdMap.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef BYTESTREAMCNVSVC_SRCIDMAP_H
6 #define BYTESTREAMCNVSVC_SRCIDMAP_H
7 
8 
21 #include <stdint.h>
22 
23 class SrcIdMap {
24 
25 public:
28  SrcIdMap();
29 
32  uint32_t getRobID ( uint32_t rod_id);
33 
36  uint32_t getRosID ( uint32_t rob_id);
37 
40  uint32_t getDetID ( uint32_t ros_id);
41 
42 
43 private:
44 
45 
46 };
47 
48 #endif
SrcIdMap::SrcIdMap
SrcIdMap()
constrcutor
Definition: SrcIdMap.cxx:19
SrcIdMap::getRobID
uint32_t getRobID(uint32_t rod_id)
Make a ROB Source ID from a ROD source ID.
Definition: SrcIdMap.cxx:24
SrcIdMap::getDetID
uint32_t getDetID(uint32_t ros_id)
Make a SubDetector ID from ROS source ID.
Definition: SrcIdMap.cxx:40
xAOD::uint32_t
setEventNumber uint32_t
Definition: EventInfo_v1.cxx:127
SrcIdMap::getRosID
uint32_t getRosID(uint32_t rob_id)
Make a ROS Source ID from a ROB source ID.
Definition: SrcIdMap.cxx:30
SrcIdMap
This class provides default conversion between Lower level Source ID to higher level source ID.
Definition: SrcIdMap.h:23