Skip to content

Commit

Permalink
fix additional warnings in aid files ...
Browse files Browse the repository at this point in the history
  • Loading branch information
gaede committed Dec 3, 2020
1 parent da93876 commit c26544b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/aid.includes.cpp.properties
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ShortVec = LCIOSTLTypes\.h
#LCObject = LCObject\.h
EVENT\:\:LCObject = EVENT/LCObject\.h

LCRTRelations = LCRTRelations\.h
lcrtrel\:\:LCRTRelations = LCRTRelations\.h


EVENT\:\:LCIO = EVENT/LCIO\.h
Expand Down
2 changes: 2 additions & 0 deletions config/aid.types.cpp.properties
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ TrackerHitVec = EVENT::TrackerHitVec
LCObjectVec = EVENT::LCObjectVec


LCRTRelations = lcrtrel::LCRTRelations

#long = long long
#long64 = long64

Expand Down
4 changes: 4 additions & 0 deletions src/aid/EVENT/LCEvent.aid
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ public interface LCEvent {
/** Parameters defined for this event.
*/
public LCParameters& parameters() ;

/** Get the runtime extensions for this event.
*/
public LCRTRelations& runtime() ;
@endif


Expand Down
5 changes: 5 additions & 0 deletions src/aid/EVENT/LCObject.aid
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ using namespace lcrtrel ;
public interface LCObject extends Cloneable, LCRTRelations{
@ifdef cpp

@cpp{
LCObject() = default ;
LCObject(const LCObject&) = default ;
}

/** Returns an object id for internal (debugging) use in LCIO.
*/
public int id() const ;
Expand Down
4 changes: 4 additions & 0 deletions src/aid/EVENT/Vertex.aid
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ public interface Vertex extends LCObject {


@ifdef cpp
@cpp{
Vertex() = default ;
Vertex(Const Vertex&) = default ;
}
@cpp{
/** Useful typedef for template programming with LCIO */
typedef Vertex lcobject_type ;
Expand Down

0 comments on commit c26544b

Please sign in to comment.