CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes | Static Private Attributes
editorTools.ChangeSource Class Reference
Inheritance diagram for editorTools.ChangeSource:

Public Member Functions

def __call__
 
def __init__
 
def getDefaultParameters
 
def toolCode
 

Private Attributes

 _comment
 
 _parameters
 

Static Private Attributes

tuple _defaultParameters = dicttypes.SortedKeysDict()
 
string _label = 'changeSource'
 

Detailed Description

Tool for changing the source of a Process;
    Implemented for testing purposes.

Definition at line 31 of file editorTools.py.

Constructor & Destructor Documentation

def editorTools.ChangeSource.__init__ (   self)

Member Function Documentation

def editorTools.ChangeSource.__call__ (   self,
  process,
  source = None 
)

Definition at line 48 of file editorTools.py.

References editorTools.UserCodeTool._defaultParameters, editorTools.ChangeSource._defaultParameters, SignedImpactParameter3D.apply(), gen::PhotosInterfaceBase.apply(), SignedTransverseImpactParameter.apply(), SignedDecayLength3D.apply(), MatrixReader.MatrixReader.apply, HcalDeterministicFit.apply(), DummyOOTPileupCorrection.apply(), gen::PhotosppInterface.apply(), gen::PhotosInterface.apply(), SurveyParameters.apply(), FWPSetCellEditor.apply(), FWGUIEventFilter.apply(), DeviationsFromFileSensor2D.apply(), BeamSpotAlignmentParameters.apply(), RigidBodyAlignmentParameters.apply(), ConfigToolBase.ConfigToolBase.apply(), AlignmentParameters.apply(), BowedSurfaceAlignmentParameters.apply(), OOTPileupCorrData.apply(), Vispa.Plugins.ConfigEditor.ToolDataAccessor.ImportTool.apply(), Vispa.Plugins.ConfigEditor.ToolDataAccessor.ApplyTool.apply(), AbsOOTPileupCorrection.apply(), TwoBowedSurfacesAlignmentParameters.apply(), Vispa.Gui.BoxContentDialog.BoxContentDialog.apply(), reco::modules::TrackerTrackHitFilter::Rule.apply(), PulseShapeFitOOTPileupCorrection.apply(), Vispa.Plugins.ConfigEditor.ToolDialog.ToolDialog.apply(), reco::Add< T >.apply(), reco::Sub< T >.apply(), reco::Mul< T >.apply(), reco::Div< T >.apply(), cmsswVersionTools.PickRelValInputFiles.apply(), reco::And< bool >.apply(), reco::Or< bool >.apply(), reco::Less< T >.apply(), reco::LessEqual< T >.apply(), reco::More< T >.apply(), reco::MoreEqual< T >.apply(), reco::Equal< T >.apply(), npstat::ArrayND< Num1, Len1, Dim1 >.apply(), npstat::ArrayND< Numeric >.apply(), npstat::ArrayND< Numeric, StackLen, StackDim >.apply(), Config.ProcessModifier.apply(), ora::OraMainTable.setParameter(), ora::IMainTable.setParameter(), PedeReader.setParameter(), ora::PoolMainTable.setParameter(), QIE8Simulator.setParameter(), AbsElectronicODERHS.setParameter(), IntegratedCalibrationBase.setParameter(), SiStripLorentzAngleCalibration.setParameter(), SiPixelLorentzAngleCalibration.setParameter(), SiStripBackplaneCalibration.setParameter(), fit::RootMinuit< Function >.setParameter(), and ConfigToolBase.ConfigToolBase.setParameter().

48 
49  def __call__(self,process,source=None) :
50  if source is None:
51  source=self._defaultParameters['source'].value
52  self.setParameter('source',source)
53  self.apply(process)
def editorTools.ChangeSource.getDefaultParameters (   self)

Definition at line 45 of file editorTools.py.

References editorTools.UserCodeTool._defaultParameters, and editorTools.ChangeSource._defaultParameters.

45 
46  def getDefaultParameters(self):
47  return self._defaultParameters
def editorTools.ChangeSource.toolCode (   self,
  process 
)

Definition at line 54 of file editorTools.py.

References editorTools.UserCodeTool._parameters, ConfigToolBase.ConfigToolBase._parameters, and editorTools.ChangeSource._parameters.

54 
55  def toolCode(self, process):
56  source=self._parameters['source'].value
57  process.source.fileNames=cms.untracked.vstring(source)
58 
59 changeSource=ChangeSource()

Member Data Documentation

editorTools.ChangeSource._comment
private

Definition at line 43 of file editorTools.py.

tuple editorTools.ChangeSource._defaultParameters = dicttypes.SortedKeysDict()
staticprivate

Definition at line 38 of file editorTools.py.

Referenced by metTools.AddMETCollection.__call__(), editorTools.ChangeSource.__call__(), metTools.AddMETCollection.__init__(), editorTools.ChangeSource.__init__(), metTools.AddMETCollection.getDefaultParameters(), and editorTools.ChangeSource.getDefaultParameters().

string editorTools.ChangeSource._label = 'changeSource'
staticprivate

Definition at line 37 of file editorTools.py.

editorTools.ChangeSource._parameters
private

Definition at line 42 of file editorTools.py.

Referenced by metTools.AddMETCollection.toolCode(), and editorTools.ChangeSource.toolCode().