12 class BeamSpotPlot_x {
19 return "BeamSpotObjects";
24 return "x vs run number";
35 for(
int i=0;
i< len( iovs );
i++ ) {
38 jprint.append(boost::lexical_cast<std::string>( iov.
since ),
39 boost::lexical_cast<std::string>( obj->GetX() ),
40 boost::lexical_cast<std::string>( obj->GetXError() ) );
42 return jprint.
print();
46 class BeamSpotPlot_y {
53 return "BeamSpotObjects";
58 return "y vs run number";
69 for(
int i=0;
i< len( iovs );
i++ ) {
70 cond::Iov_t iov = boost::python::extract<cond::Iov_t>( iovs[
i] );
72 jprint.append(boost::lexical_cast<std::string>( iov.
since ),
73 boost::lexical_cast<std::string>( obj->GetY() ),
74 boost::lexical_cast<std::string>( obj->GetYError() ) );
76 return jprint.
print();
80 class BeamSpotPlot_xy {
87 return "BeamSpotObjects";
92 return "BeamSpot x vs y";
103 for(
int i=0;
i< len( iovs );
i++ ) {
104 cond::Iov_t iov = boost::python::extract<cond::Iov_t>( iovs[
i] );
106 jprint.append(boost::lexical_cast<std::string>( obj->GetX() ),
107 boost::lexical_cast<std::string>( obj->GetY() ) );
109 return jprint.
print();
boost::shared_ptr< T > fetch(const cond::Hash &payloadHash)
#define PAYLOAD_INSPECTOR_CLASS(CLASS_NAME)
#define PAYLOAD_INSPECTOR_MODULE(PAYLOAD_TYPENAME)
char data[epos_bytes_allocation]
void print(std::stringstream &ss) const
print beam spot parameters
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run