forked from key4hep/k4ActsTracking
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request key4hep#4 from delitez/debug_pga
Debug pga
- Loading branch information
Showing
22 changed files
with
423 additions
and
125 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// D. Elitez, July 2022 | ||
// Based on eic/juggler | ||
|
||
#ifndef IEVENTGENERATORSVC_H | ||
#define IEVENTGENERATORSVC_H | ||
|
||
#include <GaudiKernel/IService.h> | ||
|
||
|
||
|
||
class GAUDI_API IEventGeneratorSvc : virtual public IService { | ||
public: | ||
|
||
|
||
public: | ||
DeclareInterfaceID(IEventGeneratorSvc, 1, 0); | ||
|
||
virtual ~IEventGeneratorSvc() {} | ||
}; | ||
|
||
#endif // IGEOSVC_H |
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,21 @@ | ||
// D. Elitez, August 2022 | ||
|
||
|
||
#ifndef IRANDOMNUMBERSVC_H | ||
#define IRANDOMNUMBERSVC_H | ||
|
||
#include <GaudiKernel/IService.h> | ||
#include <unordered_map> | ||
|
||
|
||
class GAUDI_API IRandomNumberSvc : virtual public IService { | ||
public: | ||
|
||
|
||
public: | ||
DeclareInterfaceID(IRandomNumberSvc, 1, 0); | ||
virtual uint64_t getSeed() = 0; | ||
virtual ~IRandomNumberSvc() {} | ||
}; | ||
|
||
#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
Oops, something went wrong.