ATLAS Offline Software
Loading...
Searching...
No Matches
RZPair.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
6// RZPair.h, (c) ATLAS Detector software
8#ifndef RZPAIR_H
9#define RZPAIR_H
10
11#include <utility>
12#include <vector>
13
14// define the (r,z) pair values
15typedef std::pair<double,double> RZPair;
16
17// vector of (r,z) pairs
18typedef std::vector<RZPair> RZPairVector;
19
20#endif // RZPAIR_H
21
std::vector< RZPair > RZPairVector
Definition RZPair.h:18
std::pair< double, double > RZPair
Definition RZPair.h:15