Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Classes | Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
columnar::ColumnarPhysLiteTest Struct Reference

#include <ColumnarPhysliteTest.h>

Inheritance diagram for columnar::ColumnarPhysLiteTest:
Collaboration diagram for columnar::ColumnarPhysLiteTest:

Classes

struct  XAODArgs
 the arguments for the function calling in xAOD mode More...
 

Public Member Functions

 ColumnarPhysLiteTest ()
 
 ~ColumnarPhysLiteTest ()
 
std::string makeUniqueName ()
 make a unique tool name to be used in unit tests More...
 
void setupKnownColumns ()
 
void setupColumns (ColumnarToolWrapper &toolWrapper)
 
void doCall (asg::AsgTool &tool, const std::string &name, const std::string &container, std::function< void(XAODArgs &)> callXAOD, const std::vector< std::pair< std::string, std::string >> &containerRenames, const std::string &sysName="")
 

Static Public Member Functions

static bool checkMode ()
 check whether we have the right mode More...
 

Public Attributes

std::unique_ptr< TFile > file
 
TTree * tree = nullptr
 
std::vector< std::shared_ptr< PhysliteTestHelpers::IColumnData > > knownColumns
 
std::vector< std::shared_ptr< PhysliteTestHelpers::IColumnData > > usedColumns
 
std::unordered_map< std::string, const PhysliteTestHelpers::IColumnData * > sizeColumns
 

Detailed Description

Definition at line 31 of file ColumnarPhysliteTest.h.

Constructor & Destructor Documentation

◆ ColumnarPhysLiteTest()

columnar::ColumnarPhysLiteTest::ColumnarPhysLiteTest ( )

Definition at line 458 of file ColumnarPhysliteTest.cxx.

460  {
461  static std::once_flag flag;
462  std::call_once (flag, [] ()
463  {
464 #ifdef XAOD_STANDALONE
465  xAOD::Init().ignore();
466 
467  // Preload the component factories: Alternately this could be
468  // loaded and executed via a dictionary, but I had some technical
469  // issue with that, and this seems to be working.
471 #else
472  POOL::Init();
473 #endif
474  });
475 
476  auto *fileName = getenv ("ASG_TEST_FILE_LITE_MC");
477  if (fileName == nullptr)
478  throw std::runtime_error ("missing ASG_TEST_FILE_LITE_MC");
479  file.reset (TFile::Open (fileName, "READ"));
480  if (!file)
481  throw std::runtime_error ("failed to open file");
482  tree = dynamic_cast<TTree*> (file->Get ("CollectionTree"));
483  if (!tree)
484  throw std::runtime_error ("failed to open tree");
485 
487  }

◆ ~ColumnarPhysLiteTest()

columnar::ColumnarPhysLiteTest::~ColumnarPhysLiteTest ( )
default

Member Function Documentation

◆ checkMode()

bool columnar::ColumnarPhysLiteTest::checkMode ( )
static

check whether we have the right mode

Definition at line 497 of file ColumnarPhysliteTest.cxx.

499  {
500  return true;
501  }

◆ doCall()

void columnar::ColumnarPhysLiteTest::doCall ( asg::AsgTool tool,
const std::string &  name,
const std::string &  container,
std::function< void(XAODArgs &)>  callXAOD,
const std::vector< std::pair< std::string, std::string >> &  containerRenames,
const std::string &  sysName = "" 
)

Definition at line 626 of file ColumnarPhysliteTest.cxx.

627  {
628  using namespace asg::msgUserCode;
629 
630  if (!sysName.empty())
631  {
632  auto *sysTool = dynamic_cast<CP::ISystematicsTool*>(&tool);
633  if (!sysTool)
634  throw std::runtime_error ("tool does not support systematics");
635  std::cout << "applying systematic variation: " << sysName << std::endl;
636  if (sysTool->applySystematicVariation (CP::SystematicSet (sysName)).isFailure())
637  throw std::runtime_error ("failed to apply systematic variation: " + sysName);
638  }
639  if constexpr (columnarAccessMode == 2)
640  {
641  auto *myTool = dynamic_cast<ColumnarTool<ColumnarModeArray>*>(&tool);
642  if (!containerRenames.empty())
643  renameContainers (*myTool, containerRenames);
644  ColumnarToolWrapper toolWrapper (myTool);
645  setupColumns (toolWrapper);
646 
647  Benchmark benchmark (name);
648 
649  const PhysliteTestHelpers::IColumnData *sizeColumn = nullptr;
650  if (!container.empty())
651  {
652  auto iter = sizeColumns.find (container);
653  if (iter == sizeColumns.end())
654  throw std::runtime_error ("missing size column: " + container);
655  sizeColumn = iter->second;
656  }
657 
658  const auto numberOfEvents = tree->GetEntries();
660  Long64_t entry = 0;
661  for (; benchmark.getTotalTime() < targetTime; ++entry)
662  {
663  ColumnarToolWrapperData columnData (&toolWrapper);
664  for (auto& column : usedColumns)
665  column->setData (columnData, entry % numberOfEvents);
666  if (sizeColumn)
667  {
668  totalSize += sizeColumn->getSize();
669  if (entry + 1 == numberOfEvents)
670  std::cout << "average size: " << float (totalSize) / numberOfEvents << std::endl;
671  }
672  benchmark.startTimer ();
673  columnData.call ();
674  benchmark.stopTimer ();
675  }
676  std::cout << "Total entries read: " << entry << std::endl;
677  } else if constexpr (columnarAccessMode == 0)
678  {
679  // this test simply doesn't work in Athena
680 #ifdef XAOD_STANDALONE
683 #else
685 #endif
687 
688 #ifdef XAOD_STANDALONE
689  Benchmark benchmarkEmptyClear (name + " empty clear");
690  Benchmark benchmarkCallClear (name + " call clear");
691  Benchmark benchmarkPrepClear (name + " prep clear");
692 #endif
693  Benchmark benchmarkCall (name + " call");
694  Benchmark benchmarkPrep (name + " prep");
695  Benchmark benchmarkGetEntry (name + " getEntry");
696 
697  const auto numberOfEvents = event.getEntries();
698  if (numberOfEvents == 0){
699  throw std::runtime_error ("ColumnarPhysLiteTest: numberOfEvents == 0");
700  }
701  Long64_t entry = 0;
702 
703  // Instead of running for a fixed number of events, we run for a
704  // fixed amount of time. That is because individual tools can
705  // vary wildly in how long they take to run, and we mostly want to
706  // make sure that we ran the tool enough to get a precise
707  // performance estimate. As a fail-safe it also bounds the time
708  // spend in i/o, which can be significant in Athena, but at a much
709  // higher level.
710  for (; benchmarkCall.getTotalTime() < targetTime && benchmarkPrep.getTotalTime() + benchmarkGetEntry.getTotalTime() < 20 * targetTime; ++entry)
711  {
712  benchmarkGetEntry.startTimer ();
713  event.getEntry (entry % numberOfEvents);
714  benchmarkGetEntry.stopTimer ();
715  XAODArgs args;
716  args.inputContainer = container;
717  args.outputContainer = container + "Copy1";
718  args.isPrepCall = true;
719  benchmarkPrep.startTimer ();
720  callXAOD (args);
721  benchmarkPrep.stopTimer ();
722  args.outputContainer = container + "Copy2";
723  args.isPrepCall = false;
724 #ifdef XAOD_STANDALONE
725  benchmarkPrepClear.startTimer ();
726  store.clear ();
727  benchmarkPrepClear.stopTimer ();
728 #endif
729  benchmarkCall.startTimer ();
730  callXAOD (args);
731  benchmarkCall.stopTimer ();
732 #ifdef XAOD_STANDALONE
733  benchmarkCallClear.startTimer ();
734  store.clear ();
735  benchmarkCallClear.stopTimer ();
736  benchmarkEmptyClear.startTimer ();
737  store.clear ();
738  benchmarkEmptyClear.stopTimer ();
739 #endif
740  }
741  std::cout << "Total entries read: " << entry << std::endl;
742  }
743  }

◆ makeUniqueName()

std::string columnar::ColumnarPhysLiteTest::makeUniqueName ( )

make a unique tool name to be used in unit tests

Definition at line 491 of file ColumnarPhysliteTest.cxx.

492  {
493  static std::atomic<unsigned> index = 0;
494  return "UniquePhysliteTestTool" + std::to_string(++index);
495  }

◆ setupColumns()

void columnar::ColumnarPhysLiteTest::setupColumns ( ColumnarToolWrapper toolWrapper)

Definition at line 594 of file ColumnarPhysliteTest.cxx.

595  {
596  std::unordered_map<std::string,ColumnInfo> requestedColumns;
597  for (auto& column : toolWrapper.getColumnInfo())
598  requestedColumns[column.name] = std::move (column);
599 
600  for (auto& name : toolWrapper.getColumnNames())
601  std::cout << "requested columns: " << name << std::endl;
602 
603  for (auto& column : knownColumns)
604  {
605  if (column->connect (tree, sizeColumns, requestedColumns))
606  usedColumns.push_back (column);
607  }
608 
609  std::set<std::string> unclaimedColumns;
610  for (auto& column : requestedColumns)
611  {
612  if (!column.second.isOptional)
613  unclaimedColumns.insert (column.first);
614  else
615  std::cout << "optional column not claimed: " << column.first << std::endl;
616  }
617  if (!unclaimedColumns.empty())
618  {
619  std::string message = "columns not claimed:";
620  for (auto& column : unclaimedColumns)
621  message += " " + column;
622  throw std::runtime_error (message);
623  }
624  }

◆ setupKnownColumns()

void columnar::ColumnarPhysLiteTest::setupKnownColumns ( )

Definition at line 503 of file ColumnarPhysliteTest.cxx.

504  {
505  using namespace PhysliteTestHelpers;
506 
507  knownColumns.push_back (std::make_shared<ColumnDataEventCount> ());
508  knownColumns.push_back (std::make_shared<ColumnDataScalar<std::uint32_t>> ("EventInfo.RandomRunNumber", "EventInfoAuxDyn.RandomRunNumber"));
509  knownColumns.push_back (std::make_shared<ColumnDataScalar<std::uint64_t>> ("EventInfo.eventNumber", "EventInfoAuxDyn.eventNumber"));
510  knownColumns.push_back (std::make_shared<ColumnDataScalar<std::uint32_t>> ("EventInfo.eventTypeBitmask", "EventInfoAuxDyn.eventTypeBitmask"));
511  knownColumns.push_back (std::make_shared<ColumnDataScalar<std::uint32_t>> ("EventInfo.runNumber", "EventInfoAuxDyn.runNumber"));
512  // knownColumns.push_back (std::make_shared<ColumnDataScalar<float>> ("EventInfo.NPV", "EventInfoAuxDyn.NPV"));
513  knownColumns.push_back (std::make_shared<ColumnDataScalar<float>> ("EventInfo.averageInteractionsPerCrossing", "EventInfoAuxDyn.averageInteractionsPerCrossing"));
514  // knownColumns.push_back (std::make_shared<ColumnDataScalar<int>> ("EventInfo.Njet", "EventInfoAuxDyn.Njet"));
515 
516  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisElectrons.pt", "AnalysisElectronsAuxDyn.pt"));
517  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisElectrons.eta", "AnalysisElectronsAuxDyn.eta"));
518  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisElectrons.phi", "AnalysisElectronsAuxDyn.phi"));
519  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisElectrons.m", "AnalysisElectronsAuxDyn.m"));
520  knownColumns.push_back (std::make_shared<ColumnDataVector<uint16_t>> ("AnalysisElectrons.author", "AnalysisElectronsAuxDyn.author"));
521  knownColumns.push_back (std::make_shared<ColumnDataVectorVector<ColumnarOffsetType>> ("AnalysisElectrons.caloClusterLinks.data", "AnalysisElectronsAuxDyn.caloClusterIndex"));
522 
523  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisElectrons.ptOut", 0));
524 
525  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisElectrons.sfOut", 0));
526  knownColumns.push_back (std::make_shared<ColumnDataOutVector<char>> ("AnalysisElectrons.validOut", 0));
527 
528  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("egammaClusters.calE", "egammaClustersAuxDyn.calE"));
529  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("egammaClusters.calEta", "egammaClustersAuxDyn.calEta"));
530  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("egammaClusters.calPhi", "egammaClustersAuxDyn.calPhi"));
531  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("egammaClusters.ETACALOFRAME", "egammaClustersAuxDyn.ETACALOFRAME"));
532  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("egammaClusters.PHICALOFRAME", "egammaClustersAuxDyn.PHICALOFRAME"));
533  knownColumns.push_back (std::make_shared<ColumnDataVector<uint32_t>> ("egammaClusters.samplingPattern", "egammaClustersAuxDyn.samplingPattern"));
534  knownColumns.push_back (std::make_shared<ColumnDataVectorVector<float>> ("egammaClusters.e_sampl.data", "egammaClustersAuxDyn.e_sampl"));
535  knownColumns.push_back (std::make_shared<ColumnDataVectorVector<float>> ("egammaClusters.eta_sampl.data", "egammaClustersAuxDyn.eta_sampl"));
536 
537  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisMuons.pt", "AnalysisMuonsAuxDyn.pt"));
538  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisMuons.eta", "AnalysisMuonsAuxDyn.eta"));
539  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisMuons.phi", "AnalysisMuonsAuxDyn.phi"));
540  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisMuons.charge", "AnalysisMuonsAuxDyn.charge"));
541  knownColumns.push_back (std::make_shared<ColumnDataVector<std::uint16_t>> ("AnalysisMuons.muonType", "AnalysisMuonsAuxDyn.muonType"));
542  knownColumns.push_back (std::make_shared<ColumnDataVector<std::uint16_t>> ("AnalysisMuons.author", "AnalysisMuonsAuxDyn.author"));
543  knownColumns.push_back (std::make_shared<ColumnDataVector<std::int32_t>> ("AnalysisMuons.resolutionCategory", "AnalysisMuonsAuxDyn.resolutionCategory"));
544 
545  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisMuons.ptOut", 0));
546  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisMuons.chargeOut", 0));
547  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisMuons.InnerDetectorCharge", 0));
548  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisMuons.InnerDetectorPt", 0));
549  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisMuons.MuonSpectrometerCharge", 0));
550  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisMuons.MuonSpectrometerPt", 0));
551  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisMuons.sfOut", 0));
552  knownColumns.push_back (std::make_shared<ColumnDataOutVector<char>> ("AnalysisMuons.validOut", 0));
553 
554  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisJets.pt", "AnalysisJetsAuxDyn.pt"));
555  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisJets.eta", "AnalysisJetsAuxDyn.eta"));
556  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisJets.phi", "AnalysisJetsAuxDyn.phi"));
557  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("AnalysisJets.m", "AnalysisJetsAuxDyn.m"));
558  // knownColumns.push_back (std::make_shared<ColumnDataVector<char>> ("AnalysisJets.IsBjet", "AnalysisJetsAuxDyn.IsBjet"));
559  // knownColumns.push_back (std::make_shared<ColumnDataVector<int>> ("AnalysisJets.R10TruthLabel_R21Consolidated", "AnalysisJetsAuxDyn.R10TruthLabel_R21Consolidated"));
560 
561  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisJets.ptOut", 0));
562  knownColumns.push_back (std::make_shared<ColumnDataOutVector<float>> ("AnalysisJets.mOut", 0));
563  knownColumns.push_back (std::make_shared<ColumnDataOutVector<char>> ("AnalysisJets.selection", 0));
564 
565  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("InDetTrackParticles.d0", "InDetTrackParticlesAuxDyn.d0"));
566  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("InDetTrackParticles.phi", "InDetTrackParticlesAuxDyn.phi"));
567  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("InDetTrackParticles.qOverP", "InDetTrackParticlesAuxDyn.qOverP"));
568  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("InDetTrackParticles.theta", "InDetTrackParticlesAuxDyn.theta"));
569  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("InDetTrackParticles.z0", "InDetTrackParticlesAuxDyn.z0"));
570  knownColumns.push_back (std::make_shared<ColumnDataVectorVector<float>> ("InDetTrackParticles.definingParametersCovMatrixDiag.data", "InDetTrackParticlesAuxDyn.definingParametersCovMatrixDiag"));
571  knownColumns.push_back (std::make_shared<ColumnDataVectorVector<float>> ("InDetTrackParticles.definingParametersCovMatrixOffDiag.data", "InDetTrackParticlesAuxDyn.definingParametersCovMatrixOffDiag"));
572 
573  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("CombinedMuonTrackParticles.d0", "CombinedMuonTrackParticlesAuxDyn.d0"));
574  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("CombinedMuonTrackParticles.phi", "CombinedMuonTrackParticlesAuxDyn.phi"));
575  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("CombinedMuonTrackParticles.qOverP", "CombinedMuonTrackParticlesAuxDyn.qOverP"));
576  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("CombinedMuonTrackParticles.theta", "CombinedMuonTrackParticlesAuxDyn.theta"));
577  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("CombinedMuonTrackParticles.z0", "CombinedMuonTrackParticlesAuxDyn.z0"));
578  knownColumns.push_back (std::make_shared<ColumnDataVectorVector<float>> ("CombinedMuonTrackParticles.definingParametersCovMatrixDiag.data", "CombinedMuonTrackParticlesAuxDyn.definingParametersCovMatrixDiag"));
579  knownColumns.push_back (std::make_shared<ColumnDataVectorVector<float>> ("CombinedMuonTrackParticles.definingParametersCovMatrixOffDiag.data", "CombinedMuonTrackParticlesAuxDyn.definingParametersCovMatrixOffDiag"));
580 
581  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("ExtrapolatedMuonTrackParticles.d0", "ExtrapolatedMuonTrackParticlesAuxDyn.d0"));
582  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("ExtrapolatedMuonTrackParticles.phi", "ExtrapolatedMuonTrackParticlesAuxDyn.phi"));
583  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("ExtrapolatedMuonTrackParticles.qOverP", "ExtrapolatedMuonTrackParticlesAuxDyn.qOverP"));
584  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("ExtrapolatedMuonTrackParticles.theta", "ExtrapolatedMuonTrackParticlesAuxDyn.theta"));
585  knownColumns.push_back (std::make_shared<ColumnDataVector<float>> ("ExtrapolatedMuonTrackParticles.z0", "ExtrapolatedMuonTrackParticlesAuxDyn.z0"));
586  knownColumns.push_back (std::make_shared<ColumnDataVectorVector<float>> ("ExtrapolatedMuonTrackParticles.definingParametersCovMatrixDiag.data", "ExtrapolatedMuonTrackParticlesAuxDyn.definingParametersCovMatrixDiag"));
587  knownColumns.push_back (std::make_shared<ColumnDataVectorVector<float>> ("ExtrapolatedMuonTrackParticles.definingParametersCovMatrixOffDiag.data", "ExtrapolatedMuonTrackParticlesAuxDyn.definingParametersCovMatrixOffDiag"));
588 
589  knownColumns.push_back (std::make_shared<ColumnDataSplitLink> ("AnalysisMuons.inDetTrackParticleLink", "AnalysisMuonsAuxDyn.inDetTrackParticleLink"));
590  knownColumns.push_back (std::make_shared<ColumnDataSplitLink> ("AnalysisMuons.combinedTrackParticleLink", "AnalysisMuonsAuxDyn.combinedTrackParticleLink"));
591  knownColumns.push_back (std::make_shared<ColumnDataSplitLink> ("AnalysisMuons.extrapolatedMuonSpectrometerTrackParticleLink", "AnalysisMuonsAuxDyn.extrapolatedMuonSpectrometerTrackParticleLink"));
592  }

Member Data Documentation

◆ file

std::unique_ptr<TFile> columnar::ColumnarPhysLiteTest::file

Definition at line 33 of file ColumnarPhysliteTest.h.

◆ knownColumns

std::vector<std::shared_ptr<PhysliteTestHelpers::IColumnData> > columnar::ColumnarPhysLiteTest::knownColumns

Definition at line 36 of file ColumnarPhysliteTest.h.

◆ sizeColumns

std::unordered_map<std::string,const PhysliteTestHelpers::IColumnData*> columnar::ColumnarPhysLiteTest::sizeColumns

Definition at line 38 of file ColumnarPhysliteTest.h.

◆ tree

TTree* columnar::ColumnarPhysLiteTest::tree = nullptr

Definition at line 34 of file ColumnarPhysliteTest.h.

◆ usedColumns

std::vector<std::shared_ptr<PhysliteTestHelpers::IColumnData> > columnar::ColumnarPhysLiteTest::usedColumns

Definition at line 37 of file ColumnarPhysliteTest.h.


The documentation for this struct was generated from the following files:
CaloCondBlobAlgs_fillNoiseFromASCII.sysName
sysName
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:93
SGTest::store
TestStore store
Definition: TestStore.cxx:23
python.CaloAddPedShiftConfig.args
args
Definition: CaloAddPedShiftConfig.py:45
index
Definition: index.py:1
CP::preloadComponentFactories
bool preloadComponentFactories()
Definition: ComponentFactoryPreloader.cxx:406
columnar::ColumnarPhysLiteTest::setupColumns
void setupColumns(ColumnarToolWrapper &toolWrapper)
Definition: ColumnarPhysliteTest.cxx:594
CP::SystematicSet
Class to wrap a set of SystematicVariations.
Definition: SystematicSet.h:31
DeMoUpdate.column
dictionary column
Definition: DeMoUpdate.py:1110
ReweightUtils.message
message
Definition: ReweightUtils.py:15
columnar::ColumnarPhysLiteTest::file
std::unique_ptr< TFile > file
Definition: ColumnarPhysliteTest.h:33
POOL::Init
IAppMgrUI * Init(const char *options="POOLRootAccess/basic.opts")
Bootstraps (creates and configures) the Gaudi Application with the provided options file.
Definition: PhysicsAnalysis/POOLRootAccess/src/TEvent.cxx:29
ANA_CHECK_THROW
#define ANA_CHECK_THROW(EXP)
check whether the given expression was successful, throwing an exception on failure
Definition: Control/AthToolSupport/AsgMessaging/AsgMessaging/MessageCheck.h:339
columnar::columnarAccessMode
constexpr unsigned columnarAccessMode
Definition: ColumnarDef.h:12
POOL::TEvent::readFrom
StatusCode readFrom(TFile *file)
Definition: PhysicsAnalysis/POOLRootAccess/src/TEvent.cxx:133
FortranAlgorithmOptions.fileName
fileName
Definition: FortranAlgorithmOptions.py:13
event
POOL::TEvent event(POOL::TEvent::kClassAccess)
master.flag
bool flag
Definition: master.py:29
xAOD::uint64_t
uint64_t
Definition: EventInfo_v1.cxx:123
columnar::renameContainers
void renameContainers(IColumnarTool &tool, const std::vector< std::pair< std::string, std::string >> &renames)
rename containers in the columnar tool
Definition: ColumnarToolHelpers.cxx:23
columnar::ColumnarPhysLiteTest::setupKnownColumns
void setupKnownColumns()
Definition: ColumnarPhysliteTest.cxx:503
GetAllXsec.entry
list entry
Definition: GetAllXsec.py:132
columnar::ColumnarPhysLiteTest::knownColumns
std::vector< std::shared_ptr< PhysliteTestHelpers::IColumnData > > knownColumns
Definition: ColumnarPhysliteTest.h:36
POOL::TEvent
Definition: PhysicsAnalysis/POOLRootAccess/POOLRootAccess/TEvent.h:40
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
ActsTrk::to_string
std::string to_string(const DetectorType &type)
Definition: GeometryDefs.h:34
AtlCoolConsole.tool
tool
Definition: AtlCoolConsole.py:453
columnar::ColumnarPhysLiteTest::tree
TTree * tree
Definition: ColumnarPhysliteTest.h:34
CP::ISystematicsTool
Interface for all CP tools supporting systematic variations.
Definition: ISystematicsTool.h:32
xAOD::TStore
A relatively simple transient store for objects created in analysis.
Definition: TStore.h:44
SCT_ConditionsAlgorithms::CoveritySafe::getenv
std::string getenv(const std::string &variableName)
get an environment variable
Definition: SCT_ConditionsUtilities.cxx:17
columnar::ColumnarPhysLiteTest::sizeColumns
std::unordered_map< std::string, const PhysliteTestHelpers::IColumnData * > sizeColumns
Definition: ColumnarPhysliteTest.h:38
python.copyTCTOutput.totalSize
totalSize
Definition: copyTCTOutput.py:93
xAOD::TEvent
Tool for accessing xAOD files outside of Athena.
Definition: Control/xAODRootAccess/xAODRootAccess/TEvent.h:85
xAOD::Init
StatusCode Init(const char *appname)
Function initialising ROOT/PyROOT for using the ATLAS EDM.
Definition: Init.cxx:31
python.LArMinBiasAlgConfig.float
float
Definition: LArMinBiasAlgConfig.py:65
columnar::ColumnarPhysLiteTest::usedColumns
std::vector< std::shared_ptr< PhysliteTestHelpers::IColumnData > > usedColumns
Definition: ColumnarPhysliteTest.h:37