ATLAS Offline Software
interpretSeeds.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 INTERPRET_SEEDS_H
6 #define INTERPRET_SEEDS_H 1
7 #include <string>
8 #include <stdint.h>
9 bool interpretSeeds(const std::string& buffer,
10  std::string& stream, uint32_t& seed1, uint32_t& seed2,
11  short& luxury, uint32_t& offset);
12 inline
13 bool interpretSeeds(const std::string& buffer,
14  std::string& stream, uint32_t& seed1, uint32_t& seed2,
15  uint32_t& offset) {
16  short luxury(0);
17  return interpretSeeds(buffer, stream, seed1, seed2, luxury, offset);
18 }
19 
20 inline
21 bool interpretSeeds(const std::string& buffer,
22  std::string& stream, uint32_t& seed1, uint32_t& seed2) {
23  short luxury(0);
24  uint32_t offset(0);
25  return interpretSeeds(buffer, stream, seed1, seed2, luxury, offset);
26 }
27 
28 bool interpretSeeds(const std::string& buffer,
29  std::string& stream, std::vector<uint32_t>& seeds);
30 #endif
xAOD::uint32_t
setEventNumber uint32_t
Definition: EventInfo_v1.cxx:127
AthenaPoolTestWrite.stream
string stream
Definition: AthenaPoolTestWrite.py:12
genPbPbJobOpt.seed2
seed2
Definition: genPbPbJobOpt.py:57
createCoolChannelIdFile.buffer
buffer
Definition: createCoolChannelIdFile.py:12
genPbPbJobOpt.seed1
seed1
Definition: genPbPbJobOpt.py:56
convertTimingResiduals.offset
offset
Definition: convertTimingResiduals.py:71
interpretSeeds
bool interpretSeeds(const std::string &buffer, std::string &stream, uint32_t &seed1, uint32_t &seed2, short &luxury, uint32_t &offset)
Definition: interpretSeeds.cxx:28