ATLAS Offline Software
Loading...
Searching...
No Matches
python.ConditionsContainerAccess.DescriptionDecoder Class Reference
Inheritance diagram for python.ConditionsContainerAccess.DescriptionDecoder:
Collaboration diagram for python.ConditionsContainerAccess.DescriptionDecoder:

Public Types

typedef HLT::TypeInformation::for_each_type_c< typenameEDMLIST::map, my_functor, my_result<>, my_arg< HLT::TypeInformation::get_cont, CONTAINER > >::type result

Public Member Functions

 __init__ (self, descr)
 extract (self, start, stop)

Public Attributes

 descr = descr

Detailed Description

Definition at line 60 of file ConditionsContainerAccess.py.

Member Typedef Documentation

◆ result

Definition at line 90 of file EDM_MasterSearch.h.

Constructor & Destructor Documentation

◆ __init__()

python.ConditionsContainerAccess.DescriptionDecoder.__init__ ( self,
descr )

Definition at line 61 of file ConditionsContainerAccess.py.

61 def __init__(self, descr):
62 print(descr)
63 self.descr = descr
void print(char *figname, TCanvas *c1)

Member Function Documentation

◆ extract()

python.ConditionsContainerAccess.DescriptionDecoder.extract ( self,
start,
stop )

Definition at line 64 of file ConditionsContainerAccess.py.

64 def extract(self, start, stop) :
65 print('descr, size', self.descr, len(self.descr))
66 begin = string.find(self.descr, start)
67 print('begin', begin)
68 begin += len(start)
69 end = string.find(self.descr, stop)
70 print('end', end)
71 if begin < len(self.descr) and end < len(self.descr) :
72 result = self.descr[begin:end]
73 else :
74 result = "Unable to find: " + start + ", " + stop
75 return result
76
77

Member Data Documentation

◆ descr

python.ConditionsContainerAccess.DescriptionDecoder.descr = descr

Definition at line 63 of file ConditionsContainerAccess.py.


The documentation for this class was generated from the following file: