Skip to content

Commit

Permalink
missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
clelange committed Nov 4, 2015
1 parent 8cad617 commit aa7d0c5
Show file tree
Hide file tree
Showing 5 changed files with 1,986 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void MyAnalysis::BeginInputData( const SInputData& ) throw( SError ) {
void MyAnalysis::ExecuteEvent( const SInputData&, Double_t ) throw( SError ) {
bool isGood = true;
// might be better in a separate function (e.g. bool MyAnalysis::isGoodEvent(runNumber, lumiSection))
if (m_isData) {
bool isGood = m_grl.HasRunLumiBlock( runNumber, lumiSection );
if( !isGood ) {
Expand Down Expand Up @@ -101,4 +101,5 @@ In the `JobConfiguration` part, add before the `Library` of your analysis code:

## Acknowledgements

The JSON parser is taken from https://github.com/open-source-parsers/jsoncpp
The JSON parser is taken from https://github.com/open-source-parsers/jsoncpp
Most of the other code is taken from Max Baak and Attila Krasznahorkay, who developed this code for ATLAS analyses.
Loading

0 comments on commit aa7d0c5

Please sign in to comment.