ATLAS Offline Software
Loading...
Searching...
No Matches
TileCellSelector.cxx File Reference
#include "TileCellSelector.h"
#include "TileRecUtils/TileRawChannelBuilder.h"
#include "TileEvent/TileCell.h"
#include "TileEvent/TileDigits.h"
#include "TileIdentifier/TileHWID.h"
#include "TileCalibBlobObjs/TileCalibUtils.h"
#include "TileConditions/TileCablingService.h"
#include "TileConditions/TileInfo.h"
#include "CaloIdentifier/TileID.h"
#include "StoreGate/ReadHandle.h"
#include "CxxUtils/StrFormat.h"
#include "boost/date_time/local_time/local_time.hpp"
#include "boost/date_time/posix_time/posix_time.hpp"
#include <sstream>
#include <iomanip>
#include <numeric>
#include <inttypes.h>

Go to the source code of this file.

Typedefs

typedef EventInfo_v1 EventInfo
 Definition of the latest event info version.

Functions

static std::string drwname (int id)

Typedef Documentation

◆ EventInfo

typedef EventInfo_v1 xAOD::EventInfo

Definition of the latest event info version.

Definition at line 18 of file IEventInfoCnvTool.h.

Function Documentation

◆ drwname()

std::string drwname ( int id)
static

Definition at line 31 of file TileCellSelector.cxx.

31 {
32 static const char name[5][6] = { "", "LBA", "LBC", "EBA", "EBC" };
33 return CxxUtils::strformat ("%s%2.2d", name[id >> 8], id % 0x100 + 1);
34}
std::string strformat(const char *fmt,...)
return a std::string according to a format fmt and varargs
Definition StrFormat.cxx:49