Skip to content

Commit

Permalink
Add TAttMarker_3 support (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamasgal authored Jan 22, 2025
1 parent e0bbe77 commit d4e90e2
Showing 1 changed file with 4 additions and 3 deletions.
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 @@ function readfields!(io, fields, T::Type{TAttFill_2})
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})
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

0 comments on commit d4e90e2

Please sign in to comment.