Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove or change a few headers for objects and collections #641

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions python/templates/Collection.h.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#define {{ package_name.upper() }}_{{ class.bare_type }}Collection_H

// datamodel specific includes
#include "{{ incfolder }}{{ class.bare_type }}Data.h"
#include "{{ incfolder }}{{ class.bare_type }}.h"
#include "{{ incfolder }}Mutable{{ class.bare_type }}.h"
#include "{{ incfolder }}{{ class.bare_type }}Obj.h"
Expand All @@ -16,15 +15,13 @@
// podio specific includes
#include "podio/ICollectionProvider.h"
#include "podio/CollectionBase.h"
#include "podio/CollectionIDTable.h"

#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
#include "nlohmann/json_fwd.hpp"
#endif

#include <string>
#include <string_view>
#include <vector>
#include <deque>
#include <array>
#include <algorithm>
#include <ostream>
Expand Down
3 changes: 1 addition & 2 deletions python/templates/MutableObject.h.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@

#include "podio/utilities/MaybeSharedPtr.h"

#include <ostream>
#include <cstddef>
#include <cstdint>

#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
#include "nlohmann/json_fwd.hpp"
Expand Down
2 changes: 1 addition & 1 deletion python/templates/Object.h.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "podio/utilities/MaybeSharedPtr.h"

#include <ostream>
#include <cstddef>
#include <cstdint>

#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
#include "nlohmann/json_fwd.hpp"
Expand Down