This file contains hidden or 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
| /** | |
| * Program performs the baseline event selection and saves information to evaluate performance of | |
| * the jet-assignment procedures. | |
| */ | |
| #include <ValidateRecoTHPlugin.hpp> | |
| #include <ValidateRecoTTbarPlugin.hpp> | |
| #include <JetPtFilterPlugin.hpp> | |
| #include <MetFilterPlugin.hpp> |
This file contains hidden or 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
| from copy import deepcopy | |
| from CRABAPI.RawCommand import crabCommand | |
| class Sample: | |
| """ A simple auxiliary class to aggregate information about a dataset | |
| """ | |
| def __init__(self, requestName, datasetName, outputName): | |
| self.requestName = requestName | |
| self.datasetName = datasetName | |
| self.outputName = outputName |
This file contains hidden or 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
| /** | |
| * An example of looping over combinations. Can be compiled with | |
| * g++ -std=c++11 permutations.cpp -o permutations | |
| */ | |
| #include <iostream> | |
| #include <deque> | |
| #include <algorithm> | |
NewerOlder