-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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 #32207 from CTPPS/dirsim_dynamic_conditions
dynamic conditions for PPS direct simulation
- Loading branch information
Showing
40 changed files
with
1,378 additions
and
663 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<use name="FWCore/Framework"/> | ||
<use name="Utilities/Xerces"/> | ||
<use name="CondFormats/DataRecord"/> | ||
<use name="CondFormats/PPSObjects"/> | ||
<use name="DataFormats/CTPPSDetId"/> | ||
<use name="CondFormats/RunInfo"/> | ||
<use name="clhep"/> | ||
<export> | ||
<lib name="1"/> | ||
</export> |
37 changes: 37 additions & 0 deletions
37
CalibPPS/ESProducers/interface/CTPPSRPAlignmentCorrectionsDataESSourceXMLCommon.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,37 @@ | ||
/**************************************************************************** | ||
* Authors: | ||
* Jan Kaspar (jan.kaspar@gmail.com) | ||
* Helena Malbouisson | ||
* Clemencia Mora Herrera | ||
* Christopher Misan | ||
****************************************************************************/ | ||
|
||
namespace edm { | ||
class ParameterSet; | ||
} | ||
|
||
#include "CondFormats/PPSObjects/interface/CTPPSRPAlignmentCorrectionsDataSequence.h" | ||
|
||
#include <vector> | ||
#include <string> | ||
|
||
class CTPPSRPAlignmentCorrectionsDataESSourceXMLCommon { | ||
public: | ||
CTPPSRPAlignmentCorrectionsDataESSourceXMLCommon(const edm::ParameterSet &p); | ||
~CTPPSRPAlignmentCorrectionsDataESSourceXMLCommon(); | ||
|
||
CTPPSRPAlignmentCorrectionsDataSequence acsMeasured, acsReal, acsMisaligned; | ||
CTPPSRPAlignmentCorrectionsData acMeasured, acReal, acMisaligned; | ||
|
||
unsigned int verbosity; | ||
|
||
static edm::EventID previousLS(const edm::EventID &src); | ||
static edm::EventID nextLS(const edm::EventID &src); | ||
|
||
protected: | ||
CTPPSRPAlignmentCorrectionsDataSequence Merge(const std::vector<CTPPSRPAlignmentCorrectionsDataSequence> &) const; | ||
|
||
void PrepareSequence(const std::string &label, | ||
CTPPSRPAlignmentCorrectionsDataSequence &seq, | ||
const std::vector<std::string> &files) const; | ||
}; |
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 |
---|---|---|
@@ -1,10 +1,24 @@ | ||
<library name="CalibPPSESProducersPlugins" file="*.cc"> | ||
<flags EDM_PLUGIN="1"/> | ||
|
||
<use name="CalibPPS/ESProducers"/> | ||
|
||
<use name="FWCore/Framework"/> | ||
<use name="Utilities/Xerces"/> | ||
<use name="FWCore/Utilities"/> | ||
<use name="FWCore/ParameterSet"/> | ||
<use name="FWCore/MessageLogger"/> | ||
|
||
<use name="CondFormats/AlignmentRecord"/> | ||
<use name="CondFormats/DataRecord"/> | ||
<use name="CondFormats/PPSObjects"/> | ||
<use name="DataFormats/CTPPSDetId"/> | ||
<use name="CondFormats/RunInfo"/> | ||
|
||
<use name="DataFormats/CTPPSDetId"/> | ||
|
||
<use name="Geometry/Records"/> | ||
<use name="Geometry/VeryForwardGeometryBuilder"/> | ||
|
||
<use name="Utilities/Xerces"/> | ||
|
||
<use name="clhep"/> | ||
</library> |
Oops, something went wrong.