-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added interface/*_linkdef.h files, in order to enable standalone Make…
…file to build dictionaries, such that the classes can be instantiated e.g. in a root macro.
- Loading branch information
Philipp Schieferdecker
committed
Nov 10, 2009
1 parent
2e62006
commit bf22ae5
Showing
6 changed files
with
91 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
2009-11-10 Philipp Schieferdecker <[email protected]> | ||
|
||
* added interface/*_linkdef.h files in order to enable Makefile to | ||
build dictionaries in standalone mode. This allows one to | ||
instantiate the classes e.g. in a ROOT macro after '.L | ||
libJetMETObjects.so' | ||
|
||
2009-11-10 Philipp SCHIEFERDECKER <[email protected]> | ||
|
||
* add getLepPt() and getRelLepPt() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
CondFormats/JetMETObjects/interface/FactorizedJetCorrector_linkdef.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#ifdef __CINT__ | ||
#pragma link off all globals; | ||
#pragma link off all classes; | ||
#pragma link off all functions; | ||
#pragma link C++ nestedclasses; | ||
|
||
#pragma link C++ class FactorizedJetCorrector+; | ||
#endif // __CINT__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
CondFormats/JetMETObjects/interface/JetCorrectorParameters_linkdef.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifdef __CINT__ | ||
#pragma link off all globals; | ||
#pragma link off all classes; | ||
#pragma link off all functions; | ||
#pragma link C++ nestedclasses; | ||
|
||
#pragma link C++ class JetCorrectorParameters+; | ||
#pragma link C++ class JetCorrectorParameters::Definitions+; | ||
#pragma link C++ class JetCorrectorParameters::Record+; | ||
#endif // __CINT__ |
8 changes: 8 additions & 0 deletions
8
CondFormats/JetMETObjects/interface/SimpleJetCorrector_linkdef.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#ifdef __CINT__ | ||
#pragma link off all globals; | ||
#pragma link off all classes; | ||
#pragma link off all functions; | ||
#pragma link C++ nestedclasses; | ||
|
||
#pragma link C++ class SimpleJetCorrector+; | ||
#endif // __CINT__ |