1 | /*
|
---|
2 | * Delphes: a framework for fast simulation of a generic collider experiment
|
---|
3 | * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
|
---|
4 | *
|
---|
5 | * This program is free software: you can redistribute it and/or modify
|
---|
6 | * it under the terms of the GNU General Public License as published by
|
---|
7 | * the Free Software Foundation, either version 3 of the License, or
|
---|
8 | * (at your option) any later version.
|
---|
9 | *
|
---|
10 | * This program is distributed in the hope that it will be useful,
|
---|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
13 | * GNU General Public License for more details.
|
---|
14 | *
|
---|
15 | * You should have received a copy of the GNU General Public License
|
---|
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
17 | */
|
---|
18 |
|
---|
19 |
|
---|
20 | /** \class
|
---|
21 | *
|
---|
22 | * Lists classes to be included in cint dicitonary
|
---|
23 | *
|
---|
24 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
25 | *
|
---|
26 | */
|
---|
27 |
|
---|
28 | #include "modules/Delphes.h"
|
---|
29 |
|
---|
30 | #include "modules/AngularSmearing.h"
|
---|
31 | #include "modules/PhotonConversions.h"
|
---|
32 | #include "modules/ParticlePropagator.h"
|
---|
33 | #include "modules/Efficiency.h"
|
---|
34 | #include "modules/IdentificationMap.h"
|
---|
35 | #include "modules/EnergySmearing.h"
|
---|
36 | #include "modules/MomentumSmearing.h"
|
---|
37 | #include "modules/ImpactParameterSmearing.h"
|
---|
38 | #include "modules/TimeSmearing.h"
|
---|
39 | #include "modules/SimpleCalorimeter.h"
|
---|
40 | #include "modules/Calorimeter.h"
|
---|
41 | #include "modules/Isolation.h"
|
---|
42 | #include "modules/EnergyScale.h"
|
---|
43 | #include "modules/UniqueObjectFinder.h"
|
---|
44 | #include "modules/TrackCountingBTagging.h"
|
---|
45 | #include "modules/BTagging.h"
|
---|
46 | #include "modules/TauTagging.h"
|
---|
47 | #include "modules/TreeWriter.h"
|
---|
48 | #include "modules/Merger.h"
|
---|
49 | #include "modules/LeptonDressing.h"
|
---|
50 | #include "modules/PileUpMerger.h"
|
---|
51 | #include "modules/JetPileUpSubtractor.h"
|
---|
52 | #include "modules/TrackPileUpSubtractor.h"
|
---|
53 | #include "modules/TaggingParticlesSkimmer.h"
|
---|
54 | #include "modules/PileUpJetID.h"
|
---|
55 | #include "modules/ConstituentFilter.h"
|
---|
56 | #include "modules/StatusPidFilter.h"
|
---|
57 | #include "modules/PdgCodeFilter.h"
|
---|
58 | #include "modules/Cloner.h"
|
---|
59 | #include "modules/Weighter.h"
|
---|
60 | #include "modules/Hector.h"
|
---|
61 | #include "modules/JetFlavorAssociation.h"
|
---|
62 | #include "modules/JetFakeParticle.h"
|
---|
63 | #include "modules/ExampleModule.h"
|
---|
64 |
|
---|
65 | #ifdef __CINT__
|
---|
66 |
|
---|
67 | #pragma link off all globals;
|
---|
68 | #pragma link off all classes;
|
---|
69 | #pragma link off all functions;
|
---|
70 |
|
---|
71 | #pragma link C++ class Delphes+;
|
---|
72 |
|
---|
73 | #pragma link C++ class AngularSmearing+;
|
---|
74 | #pragma link C++ class PhotonConversions+;
|
---|
75 | #pragma link C++ class ParticlePropagator+;
|
---|
76 | #pragma link C++ class Efficiency+;
|
---|
77 | #pragma link C++ class IdentificationMap+;
|
---|
78 | #pragma link C++ class EnergySmearing+;
|
---|
79 | #pragma link C++ class MomentumSmearing+;
|
---|
80 | #pragma link C++ class ImpactParameterSmearing+;
|
---|
81 | #pragma link C++ class TimeSmearing+;
|
---|
82 | #pragma link C++ class SimpleCalorimeter+;
|
---|
83 | #pragma link C++ class Calorimeter+;
|
---|
84 | #pragma link C++ class Isolation+;
|
---|
85 | #pragma link C++ class EnergyScale+;
|
---|
86 | #pragma link C++ class UniqueObjectFinder+;
|
---|
87 | #pragma link C++ class TrackCountingBTagging+;
|
---|
88 | #pragma link C++ class BTagging+;
|
---|
89 | #pragma link C++ class TauTagging+;
|
---|
90 | #pragma link C++ class TreeWriter+;
|
---|
91 | #pragma link C++ class Merger+;
|
---|
92 | #pragma link C++ class LeptonDressing+;
|
---|
93 | #pragma link C++ class PileUpMerger+;
|
---|
94 | #pragma link C++ class JetPileUpSubtractor+;
|
---|
95 | #pragma link C++ class TrackPileUpSubtractor+;
|
---|
96 | #pragma link C++ class TaggingParticlesSkimmer+;
|
---|
97 | #pragma link C++ class PileUpJetID+;
|
---|
98 | #pragma link C++ class ConstituentFilter+;
|
---|
99 | #pragma link C++ class StatusPidFilter+;
|
---|
100 | #pragma link C++ class PdgCodeFilter+;
|
---|
101 | #pragma link C++ class Cloner+;
|
---|
102 | #pragma link C++ class Weighter+;
|
---|
103 | #pragma link C++ class Hector+;
|
---|
104 | #pragma link C++ class JetFlavorAssociation+;
|
---|
105 | #pragma link C++ class JetFakeParticle+;
|
---|
106 | #pragma link C++ class ExampleModule+;
|
---|
107 |
|
---|
108 | #endif
|
---|