]>
Commit | Line | Data |
---|---|---|
66ee9f2f | 1 | // -*- mode: c++ -*- |
2 | /* Copyright (C) 2007 Christian Holm Christensen <cholm@nbi.dk> | |
3 | * | |
4 | * This library is free software; you can redistribute it and/or | |
5 | * modify it under the terms of the GNU Lesser General Public License | |
6 | * as published by the Free Software Foundation; either version 2.1 of | |
7 | * the License, or (at your option) any later version. | |
8 | * | |
9 | * This library is distributed in the hope that it will be useful, but | |
10 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
12 | * Lesser General Public License for more details. | |
13 | * | |
14 | * You should have received a copy of the GNU Lesser General Public | |
15 | * License along with this library; if not, write to the Free Software | |
16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |
17 | * USA | |
18 | */ | |
fca8be4c | 19 | #if defined(__CINT__) |
66ee9f2f | 20 | /** |
21 | * @file PWGLFforward2LinkDef.h | |
22 | * @author Christian Holm Christensen <cholm@master.hehi.nbi.dk> | |
23 | * @date Fri May 24 09:24:36 2013 | |
24 | * | |
25 | * @brief Link specifications | |
26 | */ | |
27 | #pragma link off all globals; | |
28 | #pragma link off all classes; | |
29 | #pragma link off all functions; | |
30 | ||
31 | #pragma link C++ nestedclasses; | |
32 | ||
33 | // FMD algorithms | |
34 | #pragma link C++ class AliFMDMCHitEnergyFitter+; | |
35 | #if ROOT_VERSION_CODE < 0x56300 // ROOT_VERSION(5,99,0) | |
36 | #pragma link C++ class AliFMDMCHitEnergyFitter::RingHistos+; | |
37 | #endif | |
38 | #pragma link C++ class AliFMDMCHitEnergyFitterTask+; | |
39 | ||
66ee9f2f | 40 | #endif |
41 | // | |
42 | // EOF | |
43 | // |