~maus-detector-integration/maus/ckov_merge

« back to all changes in this revision

Viewing changes to src/common_cpp/DataStructure/LinkDef.hh

  • Committer: Chris Rogers
  • Date: 2012-03-05 16:24:30 UTC
  • mfrom: (340.32.8 release)
  • Revision ID: chris.rogers@stfc.ac.uk-20120305162430-5v76jvrfqmrw4z4u
MergeĀ releaseĀ 0.1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of MAUS: http://micewww.pp.rl.ac.uk/projects/maus
 
2
 *
 
3
 * MAUS is free software: you can redistribute it and/or modify
 
4
 * it under the terms of the GNU General Public License as published by
 
5
 * the Free Software Foundation, either version 3 of the License, or
 
6
 * (at your option) any later version.
 
7
 *
 
8
 * MAUS is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with MAUS.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#ifdef __CINT__
 
18
 
 
19
#pragma link off all globals;
 
20
#pragma link off all classes;
 
21
#pragma link off all functions;
 
22
 
 
23
#pragma link C++ class MAUS::ThreeVector+;
 
24
 
 
25
#pragma link C++ class MAUS::Spill+;
 
26
#pragma link C++ class MAUS::Scalars+;
 
27
#pragma link C++ class MAUS::EMRSpillData+;
 
28
#pragma link C++ class MAUS::DAQData+;
 
29
#pragma link C++ class MAUS::ReconEvent+;
 
30
 
 
31
#pragma link C++ class MAUS::TOFEvent+;
 
32
#pragma link C++ class MAUS::SciFiEvent+;
 
33
#pragma link C++ class MAUS::EMREvent+;
 
34
#pragma link C++ class MAUS::KLEvent+;
 
35
#pragma link C++ class MAUS::TriggerEvent+;
 
36
#pragma link C++ class MAUS::GlobalEvent+;
 
37
 
 
38
#pragma link C++ class MAUS::MCEvent+;
 
39
#pragma link C++ class MAUS::VirtualHit+;
 
40
#pragma link C++ class MAUS::Primary+;
 
41
#pragma link C++ class MAUS::Step+;
 
42
#pragma link C++ class MAUS::Hit+;
 
43
 
 
44
#pragma link C++ global gROOT;
 
45
#pragma link C++ global gEnv;
 
46
 
 
47
#endif
 
48
 
 
49
 
 
50