ATLAS Offline Software
Loading...
Searching...
No Matches
LArAutoCorrFromStdNtuple.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef LARAUTOCORRFROMSTDNTUPLE_H
6#define LARAUTOCORRFROMSTDNTUPLE_H
7
12
13#include <vector>
14#include <string>
15
22
23
25{
26public:
27 using AthReentrantAlgorithm::AthReentrantAlgorithm;
28
30
31 //standard algorithm methods
33 virtual StatusCode initialize() override;
34
36 virtual StatusCode execute(const EventContext&) const override {return StatusCode::SUCCESS;}
37
38 virtual StatusCode stop() override;
39
40 private:
41 IntegerProperty m_nsamples { this, "Nsamples", 7 };
43 StringArrayProperty m_root_file_names { this, "FileNames", {} };
45 StringProperty m_ntuple_name { this, "NtupleName", "AUTOCORR" };
47 StringProperty m_store_key { this, "StoreKey", "FromStdNtuple" };
49 StringProperty m_groupingType { this, "GroupingType", "ExtendedSubDetector" };
51 BooleanProperty m_isComplete { this, "isComplete", false };
53 BooleanProperty m_sFcal { this, "doSFcal", false };
54
56 {this, "MCSymKey", "LArMCSym", "SG Key of LArMCSym object"};
57 SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"};
58};
59
60#endif
An algorithm that can be simultaneously executed in multiple threads.
This algorithm allows to read autocorrs from ntuples and builds a Version for standard Ntuple,...
StringProperty m_groupingType
Grouping type.
StringProperty m_ntuple_name
ntuple name
virtual StatusCode stop() override
SG::ReadCondHandleKey< LArOnOffIdMapping > m_cablingKey
StringArrayProperty m_root_file_names
list of input ntuple file names
virtual ~LArAutoCorrFromStdNtuple()
virtual StatusCode execute(const EventContext &) const override
implements IAlgorithm::execute() : Does nothing
StringProperty m_store_key
key of the LArAutoCorr collection in Storegate
BooleanProperty m_sFcal
drop FCAL and change to sFCal
virtual StatusCode initialize() override
implements IAlgorithm::initialize()
SG::ReadCondHandleKey< LArMCSym > m_mcSymKey