ROOT
6.07/01
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
Namespaces
All Classes
Files
Release Notes
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
math
genvector
inc
Math
LinkDef_GenVector2.h
Go to the documentation of this file.
1
// dictionary for std::vector of genvector objects
2
// problem on Windows: CINT cannot deal with too long class name
3
// generated by an std::vector<ROOT::Math::Vector>
4
5
#ifndef _WIN32
6
#pragma extra_include "vector";
7
#include <vector>
8
9
// conflict on solaris between template class T from std::vector and T().
10
#ifndef __sun
11
#pragma link C++ class std::vector<ROOT::Math::XYZTVector >+;
12
#pragma link C++ class std::vector<ROOT::Math::PtEtaPhiEVector >+;
13
#endif
14
15
#pragma link C++ class std::vector<ROOT::Math::XYZVector >+;
16
#pragma link C++ class std::vector<ROOT::Math::XYZPoint >+;
17
18
#pragma link C++ class std::vector<ROOT::Math::RhoEtaPhiVector >+;
19
#pragma link C++ class std::vector<ROOT::Math::RhoEtaPhiPoint >+;
20
21
#endif // endif Win32