ATLAS Offline Software
Loading...
Searching...
No Matches
MonitorSequence.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGCOSTANALYSIS_MONITORSEQUENCE_H
6#define TRIGCOSTANALYSIS_MONITORSEQUENCE_H 1
7
8
9#include "../MonitorBase.h"
10
16 public:
20 MonitorSequence() = delete;
21
27 MonitorSequence(const std::string& name, const MonitoredRange* parent);
28
32 virtual ~MonitorSequence() = default;
33
38
43
49 virtual StatusCode newEvent(const CostData& data, const float weight = 1.) override;
50
56 virtual std::unique_ptr<CounterBase> newCounter(const std::string& name) override;
57};
58
59#endif // TRIGCOSTANALYSIS_MONITORSEQUENCE_H
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11
Caches and propagates event data to be used by monitoring algorithms.
Definition CostData.h:26
MonitorBase()=delete
Forbid default constructor.
virtual ~MonitorSequence()=default
Default destructor.
virtual StatusCode newEvent(const CostData &data, const float weight=1.) override
Concrete dispatch method.
MonitorSequence & operator=(const MonitorSequence &)=delete
Forbid assignment.
MonitorSequence()=delete
Forbid default constructor.
MonitorSequence(const MonitorSequence &)=delete
Forbid copy.
virtual std::unique_ptr< CounterBase > newCounter(const std::string &name) override
Concrete counter instantiation.
Container which represents a time range and holds a collection of Monitors which monitor this range.