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

Add TAttMarker_3 support #376

Merged
merged 1 commit into from
Jan 22, 2025
Merged
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
7 changes: 4 additions & 3 deletions src/bootstrap.jl
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,14 @@
end

abstract type TAttMarker <: ROOTStreamedObject end
struct TAttMarker_2 <: TAttFill end
function readfields!(io, fields, T::Type{TAttMarker_2})
struct TAttMarker_1 <: TAttFill end
const TAttMarker_2 = TAttMarker_1
const TAttMarker_3 = TAttMarker_1
function readfields!(io, fields, T::Type{TAttMarker_1})

Check warning on line 112 in src/bootstrap.jl

View check run for this annotation

Codecov / codecov/patch

src/bootstrap.jl#L112

Added line #L112 was not covered by tests
fields[:fMarkerColor] = readtype(io, Int16)
fields[:fMarkerStyle] = readtype(io, Int16)
fields[:fMarkerSize] = readtype(io, Float32)
end
const TAttMarker_1 = TAttMarker_2

abstract type TAttAxis <: ROOTStreamedObject end
struct TAttAxis_4 <: TAttAxis end
Expand Down
Loading