ATLAS Offline Software
Loading...
Searching...
No Matches
ConditionsDefs.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGHLTJETHYPO_CONDITIONSDEFS_H
6#define TRIGHLTJETHYPO_CONDITIONSDEFS_H
7/********************************************************************
8 *
9 * NAME: ConditionsDefs.h
10 * PACKAGE: Trigger/TrigHypothesis/TrigHLTJetHypo
11 *
12 * AUTHOR: P. Sherwood
13 *********************************************************************/
14
15#include <string>
16#include <memory>
17#include "./ICondition.h"
18
19using Condition = std::unique_ptr<ICondition>;
20using Conditions = std::vector<Condition>;
21using ConditionsIter = Conditions::iterator;
22
23#endif
Conditions::iterator ConditionsIter
std::vector< Condition > Conditions
std::unique_ptr< ICondition > Condition