-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moving data dictionary generation to rootcling
- Loading branch information
Showing
7 changed files
with
74 additions
and
67 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
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
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
This file was deleted.
Oops, something went wrong.
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,39 @@ | ||
#ifdef __CLING__ | ||
|
||
#pragma link off all globals; | ||
#pragma link off all classes; | ||
#pragma link off all functions; | ||
#pragma link C++ nestedclasses; | ||
|
||
#pragma link C++ class podio::GenericParameters+; | ||
#pragma link C++ class podio::GenericParameters::MapType<int>+; | ||
#pragma link C++ class podio::GenericParameters::MapType<float>+; | ||
#pragma link C++ class podio::GenericParameters::MapType<double>+; | ||
#pragma link C++ class podio::GenericParameters::MapType<std::string>+; | ||
#pragma link C++ class podio::GenericParameters+; | ||
#pragma link C++ class std::map<int,podio::GenericParameters>+; | ||
#pragma link C++ class std::vector<std::tuple<int, std::string, bool, unsigned int>>+; | ||
#pragma link C++ class std::vector<std::tuple<int, std::string, bool, unsigned>>+; | ||
#pragma link C++ class std::vector<std::tuple<int, std::string, bool>>+; | ||
#pragma link C++ class std::vector<std::tuple<std::string, std::string>>+; | ||
#pragma link C++ class std::vector<std::tuple<uint32_t, std::string, bool, unsigned int>>+; | ||
#pragma link C++ class std::vector<std::tuple<uint32_t, std::string, bool, unsigned>>+; | ||
#pragma link C++ class std::vector<std::tuple<uint32_t, std::string, bool>>+; | ||
#pragma link C++ class podio::CollectionBase+; | ||
#pragma link C++ class podio::CollectionIDTable+; | ||
#pragma link C++ class podio::version::Version+; | ||
#pragma link C++ class podio::ObjectID+; | ||
#pragma link C++ class vector<podio::ObjectID>+; | ||
#pragma link C++ class podio::UserDataCollection<float>+; | ||
#pragma link C++ class podio::UserDataCollection<double>+; | ||
#pragma link C++ class podio::UserDataCollection<int8_t>+; | ||
#pragma link C++ class podio::UserDataCollection<int16_t>+; | ||
#pragma link C++ class podio::UserDataCollection<int32_t>+; | ||
#pragma link C++ class podio::UserDataCollection<int64_t>+; | ||
#pragma link C++ class podio::UserDataCollection<uint8_t>+; | ||
#pragma link C++ class podio::UserDataCollection<uint16_t>+; | ||
#pragma link C++ class podio::UserDataCollection<uint32_t>+; | ||
#pragma link C++ class podio::UserDataCollection<uint64_t>+; | ||
|
||
#endif | ||
|
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
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