forked from cms-sw/cmssw
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
140 changed files
with
9,058 additions
and
2,070 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ class SecondaryVertexFeatures { | |
public: | ||
|
||
float pt; | ||
float ptrel; | ||
float mass; | ||
|
||
float deltaR; | ||
|
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,26 @@ | ||
#ifndef DataFormats_Common_RandomNumberGeneratorState_h | ||
#define DataFormats_Common_RandomNumberGeneratorState_h | ||
|
||
/*---------------------------------------------------------------------- | ||
RandomNumberGeneratorState is used to communicate with an external process | ||
----------------------------------------------------------------------*/ | ||
|
||
#include <vector> | ||
namespace edm { | ||
struct RandomNumberGeneratorState { | ||
RandomNumberGeneratorState() = default; | ||
RandomNumberGeneratorState(std::vector<unsigned long> iState, long iSeed) | ||
: state_(std::move(iState)), seed_{iSeed} {} | ||
|
||
RandomNumberGeneratorState(RandomNumberGeneratorState const&) = default; | ||
RandomNumberGeneratorState(RandomNumberGeneratorState&&) = default; | ||
|
||
RandomNumberGeneratorState& operator=(RandomNumberGeneratorState const&) = default; | ||
RandomNumberGeneratorState& operator=(RandomNumberGeneratorState&&) = default; | ||
|
||
std::vector<unsigned long> state_; | ||
long seed_; | ||
}; | ||
} // namespace edm | ||
#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.