CMS 3D CMS Logo

Classes | Functions | Variables
helper Namespace Reference

Classes

struct  BFieldIsolationAlgorithmSetup
 
class  ClusterStorer
 
struct  CollectionFilter
 
struct  CollectionFilter< C, S, MinNumberSelector >
 
struct  CollectionFilterTrait
 
struct  CollectionFilterTrait< C, AnySelector, N >
 
struct  CollectionSizeFilter
 
struct  CollectionStoreManager
 
struct  GsfElectronCollectionStoreManager
 
struct  GsfElectronCollectionStoreManagerTrait
 
class  GsfElectronSelectorBase
 
struct  IsolationAlgorithmSetup
 
struct  IsolationAlgorithmSetup< CalIsolationAlgo< T1, C2 > >
 
struct  IteratorToObjectConverter
 
struct  IteratorToObjectConverter< edm::OwnVector< T > >
 
struct  IteratorToObjectConverter< edm::PtrVector< T > >
 
struct  IteratorToObjectConverter< edm::RefToBaseVector< T > >
 
struct  IteratorToObjectConverter< edm::RefVector< C > >
 
struct  MasterCollection
 
struct  MasterCollection< edm::View< T > >
 
struct  MuonCollectionStoreManager
 
class  MuonSelectorBase
 
struct  NullIsolationAlgorithmSetup
 
struct  NullPostProcessor
 
struct  ObjectSelectorBase
 
class  Parser
 
class  ScannerBase
 
struct  SelectCode
 
struct  SelectedOutputCollectionTrait
 
struct  SelectedOutputCollectionTrait< edm::AssociationVector< edm::RefProd< K >, C > >
 
struct  SelectedOutputCollectionTrait< edm::AssociationVector< edm::RefToBaseProd< T >, C > >
 
struct  SelectedOutputCollectionTrait< edm::RefToBaseVector< T > >
 
struct  SelectedOutputCollectionTrait< edm::RefVector< C > >
 
struct  SelectedOutputCollectionTrait< edm::View< T > >
 
struct  SelectionAdderTrait
 
struct  SelectionAdderTrait< edm::AssociationVector< edm::RefProd< K >, C >, edm::RefVector< K > >
 
struct  SelectionAdderTrait< edm::AssociationVector< edm::RefProd< K >, C >, std::vector< const T * > >
 
struct  SelectionAdderTrait< edm::AssociationVector< edm::RefToBaseProd< T >, C >, edm::RefToBaseVector< T > >
 
struct  SelectionAdderTrait< edm::AssociationVector< edm::RefToBaseProd< T >, C >, std::vector< const T * > >
 
struct  SelectionAdderTrait< edm::RefToBaseVector< T >, edm::RefToBaseVector< T > >
 
struct  SelectionAdderTrait< edm::RefToBaseVector< T >, std::vector< const T * > >
 
struct  SelectionAdderTrait< edm::RefVector< C >, edm::RefVector< C > >
 
struct  SelectionAdderTrait< edm::RefVector< C >, std::vector< const T * > >
 
struct  SelectionAdderTrait< edm::View< T >, edm::PtrVector< T > >
 
struct  SelectionAdderTrait< edm::View< T >, edm::RefToBaseVector< T > >
 
struct  SelectionAdderTrait< InputCollection, edm::RefVector< C > >
 
struct  SelectionAdderTrait< InputCollection, std::vector< const T * > >
 
struct  SelectionCopyAdder
 
struct  SelectionFirstPointerAdder
 
struct  SelectionFirstRefAdder
 
struct  SelectionPointerAdder
 
struct  SelectionPointerDerefAdder
 
struct  SelectionPtrViewAdder
 
struct  SelectionRefAdder
 
struct  SelectionRefViewAdder
 
class  SimpleJetTrackAssociator
 
struct  StoreContainerTrait
 
struct  StoreContainerTrait< edm::AssociationVector< R, C > >
 
struct  StoreContainerTrait< edm::PtrVector< T > >
 
struct  StoreContainerTrait< edm::RefToBaseVector< T > >
 
struct  StoreContainerTrait< edm::RefVector< C > >
 
struct  StoreManagerTrait
 
struct  StoreManagerTrait< reco::MuonCollection, edm::stream::EDFilter<> >
 
struct  StoreManagerTrait< reco::TrackCollection, edm::stream::EDFilter<> >
 
struct  TrackCollectionStoreManager
 Class to manage copying of RecHits and Clusters from Tracks. More...
 
class  TrackSelectorBase
 

Functions

def add_filter (process, ed_filter)
 
def checked_out_MPS ()
 
def ConfigSectionMap (section)
 
def findEDAnalyzers (holder)
 
def findEDFilters (holder)
 
def findEDProducers (holder)
 
def findModules (holder)
 
def set_pede_option (process, option, drop=False)
 

Variables

 Config
 

Detailed Description

Helper functions to extract the dictionary with
 - all EDFilters
 - all EDProducers
 - all EDAnalyzers
 - all modules
either from a dictionary (either a cms.Process.__dict__ or from the locals() inside a _cff.py fragment)

Function Documentation

◆ add_filter()

def helper.add_filter (   process,
  ed_filter 
)
Adds EDFilter to the supplied cms.Process object and returns complete filter
sequence.

Arguments:
- `process`: cms.Process object
- `ed_filter`: EDFilter

Definition at line 48 of file helper.py.

Referenced by MilleSetup.setup().

48 def add_filter(process, ed_filter):
49  """
50  Adds EDFilter to the supplied cms.Process object and returns complete filter
51  sequence.
52 
53  Arguments:
54  - `process`: cms.Process object
55  - `ed_filter`: EDFilter
56  """
57 
58  if not hasattr(process, "mps_filters"): process.mps_filters = cms.Sequence()
59  process.mps_filters += ed_filter
60  return process.mps_filters
61 
def add_filter(process, ed_filter)
Definition: helper.py:48

◆ checked_out_MPS()

def helper.checked_out_MPS ( )
Checks if MPS is checked out locally or taken from the release.

Definition at line 5 of file helper.py.

Referenced by mps_alisetup.SetupAlignment._construct_paths(), and mps_setup_new_align.main().

5 def checked_out_MPS():
6  """Checks if MPS is checked out locally or taken from the release."""
7 
8  checked_out_packages = os.path.join(os.environ["CMSSW_BASE"], "src", ".git",
9  "info", "sparse-checkout")
10  checked_out = False
11  git_initialized = False
12  try:
13  with open(checked_out_packages, "r") as f: packages = ("/Alignment/", "/Alignment/MillePedeAlignmentAlgorithm/","/*/")
14  for line in f:
15  if line.strip() in packages:
16  checked_out = True
17  break
18  git_initialized = True # since the sparse checkout file is there
19  except IOError as e:
20  if e.args != (2, 'No such file or directory'): raise
21 
22  return checked_out, git_initialized
23 
24 
25 
def checked_out_MPS()
Definition: helper.py:5

◆ ConfigSectionMap()

def helper.ConfigSectionMap (   section)

Definition at line 12 of file helper.py.

References Config.options, and print().

12 def ConfigSectionMap(section):
13  dict1 = {}
14  options = Config.options(section)
15  for option in options:
16  try:
17  dict1[option] = Config.get(section, option)
18  if dict1[option] == -1:
19  DebugPrint("skip: %s" % option)
20  except:
21  print("exception on %s!" % option)
22  dict1[option] = None
23  return dict1
24 
def ConfigSectionMap(section)
Definition: helper.py:12
options
Definition: Config.py:8
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47

◆ findEDAnalyzers()

def helper.findEDAnalyzers (   holder)

Definition at line 26 of file helper.py.

26 def findEDAnalyzers(holder):
27  if isinstance(holder, cms.Process):
28  return process.analyzers_()
29  else:
30  return dict( (name, module) for name, module in holder.items() if isinstance(module, cms.EDAnalyzer) )
31 
32 
def findEDAnalyzers(holder)
Definition: helper.py:26

◆ findEDFilters()

def helper.findEDFilters (   holder)

Definition at line 12 of file helper.py.

12 def findEDFilters(holder):
13  if isinstance(holder, cms.Process):
14  return process.filters_()
15  else:
16  return dict( (name, module) for name, module in holder.items() if isinstance(module, cms.EDFilter) )
17 
18 
def findEDFilters(holder)
Definition: helper.py:12

◆ findEDProducers()

def helper.findEDProducers (   holder)

Definition at line 19 of file helper.py.

19 def findEDProducers(holder):
20  if isinstance(holder, cms.Process):
21  return process.producers_()
22  else:
23  return dict( (name, module) for name, module in holder.items() if isinstance(module, cms.EDProducer) )
24 
25 
def findEDProducers(holder)
Definition: helper.py:19

◆ findModules()

def helper.findModules (   holder)

Definition at line 33 of file helper.py.

33 def findModules(holder):
34  if isinstance(holder, cms.Process):
35  modules = dict()
36  modules.upate(process.analyzers_())
37  modules.upate(process.producers_())
38  modules.upate(process.filters_())
39  return modules
40  else:
41  return dict( (name, module) for name, module in holder.items() if isinstance(module, (cms.EDAnalyzer, _cms.EDProducer, _cms.EDFilter)) )
42 
43 
44 
def findModules(holder)
Definition: helper.py:33

◆ set_pede_option()

def helper.set_pede_option (   process,
  option,
  drop = False 
)
Utility function to set or override pede `option` defined in `process`.

Arguments:
- `process`: cms.Process object
- `option`: option string
- `drop`: if set to 'True' the `option` is dropped completely

Definition at line 26 of file helper.py.

References FastTimerService_cff.range, and submitPVValidationJobs.split().

26 def set_pede_option(process, option, drop = False):
27  """Utility function to set or override pede `option` defined in `process`.
28 
29  Arguments:
30  - `process`: cms.Process object
31  - `option`: option string
32  - `drop`: if set to 'True' the `option` is dropped completely
33  """
34 
35  existing_options = process.AlignmentProducer.algoConfig.pedeSteerer.options
36 
37  exists = False
38  for i in range(len(existing_options)):
39  if existing_options[i].split()[0] == option.split()[0]:
40  existing_options[i] = option.strip()
41  exists = True
42  if drop: existing_options.pop(i)
43  break
44 
45  if not exists and not drop: existing_options.append(option.strip())
46 
47 
def set_pede_option(process, option, drop=False)
Definition: helper.py:26

Variable Documentation

◆ Config