forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommonDataFormatLinkDef.h
More file actions
40 lines (33 loc) · 1.94 KB
/
CommonDataFormatLinkDef.h
File metadata and controls
40 lines (33 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright CERN and copyright holders of ALICE O2. This software is
// distributed under the terms of the GNU General Public License v3 (GPL
// Version 3), copied verbatim in the file "COPYING".
//
// See http://alice-o2.web.cern.ch/license for full licensing information.
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
/********************************************************************************
* Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
* *
* This software is distributed under the terms of the *
* GNU Lesser General Public Licence version 3 (LGPL) version 3, *
* copied verbatim in the file "LICENSE" *
********************************************************************************/
#ifdef __CLING__
#pragma link off all globals;
#pragma link off all classes;
#pragma link off all functions;
#pragma link C++ class o2::dataformats::TimeStamp < float > +;
#pragma link C++ class o2::dataformats::TimeStamp < double > +;
#pragma link C++ class o2::dataformats::TimeStamp < int > +;
#pragma link C++ class o2::dataformats::TimeStampWithError < float, float > +;
#pragma link C++ class o2::dataformats::TimeStampWithError < double, double > +;
#pragma link C++ class o2::dataformats::TimeStampWithError < int, int > +;
#pragma link C++ class o2::dataformats::EvIndex < int, int > +;
#pragma link C++ class o2::dataformats::RangeReference < int, int > +;
#pragma link C++ class o2::dataformats::RangeReference < o2::dataformats::EvIndex < int, int >, int > +;
#pragma link C++ class o2::InteractionRecord + ;
#pragma link C++ class o2::InteractionTimeRecord + ;
#pragma link C++ class o2::BunchFilling + ;
#endif