ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/PsetManipulator.py
(Generate patch)

Comparing COMP/CRAB/python/PsetManipulator.py (file contents):
Revision 1.3 by spiga, Thu Jul 6 17:50:33 2006 UTC vs.
Revision 1.26 by ewv, Tue Feb 24 16:19:25 2009 UTC

# Line 1 | Line 1
1   #!/usr/bin/env python
2 <                                                                                                                                                            
3 < import os, sys, commands
2 >
3 > import os
4   import common
5 + import imp
6 +
7   from crab_util import *
8   from crab_exceptions import *
9 + from crab_logger import Logger
10  
11 < # Crabpydir=commands.getoutput('which crab')
12 < # Topdir=string.replace(Crabpydir,'/python/crab','')
13 < # sys.path.append(Topdir+'/PsetCode')
11 > from ProdCommon.CMSConfigTools.ConfigAPI.CfgInterface import CfgInterface
12 > from FWCore.ParameterSet.DictTypes import SortedKeysDict
13 > from FWCore.ParameterSet.Modules   import Service
14 > from FWCore.ParameterSet.Types     import *
15  
16 < from cmsconfig import cmsconfig
17 < from CfgInterface import CfgInterface
16 > import FWCore.ParameterSet.Types   as CfgTypes
17 > import FWCore.ParameterSet.Modules as CfgModules
18  
19   class PsetManipulator:
20      def __init__(self, pset):
21 <        """
22 <        Convert Pset in Python format  
19 <        and initialize  
21 >        """
22 >        Read in Pset object and initialize
23          """
24  
25          self.pset = pset
26          #convert Pset
27 <        self.pyPset = os.path.basename(pset)  
28 <        cmd = 'EdmConfigToPython > '+common.work_space.shareDir()+self.pyPset+'py < '+ self.pset
29 <        #cmd = 'EdmConfigToPython > '+common.work_space.shareDir()+self.pset+'py < '+ self.pset
30 <        cmd_out = runCommand(cmd)  
31 <        if cmd_out != '':
32 <            msg = 'Could not convert Pset.cfg into python Dictionary \n'
33 <            msg1= '      Did you do eval `scramv1 runtime ...` from your CMSSW working area ?'
34 <            raise CrabException(msg+msg1)
35 <            pass
36 <        
37 <        self.par = file(common.work_space.shareDir()+self.pyPset+'py').read()
38 <       # par = file(common.work_space.shareDir()+self.pset+'py').read()
39 <
40 <        # get PSet
41 <        self.cfg = CfgInterface(self.par,True)
42 <
43 <    def inputModule(self, source):
44 <        """ Clean  String FileName if there
45 <            and add  vString Filenames key
46 <        """
47 <        # set input module
48 <        inModule = self.cfg.inputSource
49 <        inModule.cleanStringFileNames() ## Add Daniele
50 <        inModule.setFileNames(source)
48 <        return
49 <  
50 <    def pythiaSeed(self,seed,vtxSeed):
51 <        """
52 <            Set pythia seed key
53 <        """
54 <        # set seed
55 <        inModule = self.cfg.inputSource
56 <        inModule.setPythiaSeed(self.cfg,seed)
57 <        inModule.setPythiaVtxSeed(self.cfg,vtxSeed)
58 <        return
27 >        from FWCore.ParameterSet.Config import include
28 >        common.logger.debug(3,"PsetManipulator::__init__: PSet file = "+self.pset)
29 >        # FUTURE: Can drop cfg mode for CMSSW < 2_1_x
30 >        if self.pset.endswith('py'):
31 >            handle = open(self.pset, 'r')
32 >            try:   # Nested form for Python < 2.5
33 >                try:
34 >                    self.cfo = imp.load_source("pycfg", self.pset, handle)
35 >                    self.cmsProcess = self.cfo.process
36 >                except Exception, ex:
37 >                    msg = "Your config file is not valid python: %s" % str(ex)
38 >                    raise CrabException(msg)
39 >            finally:
40 >                handle.close()
41 >        else:
42 >            try:
43 >                self.cfo = include(self.pset)
44 >                self.cmsProcess = self.cfo
45 >            except Exception, ex:
46 >                msg =  "Your cfg file is not valid, %s\n" % str(ex)
47 >                msg += "  https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideCrabFaq#Problem_with_ParameterSet_parsin\n"
48 >                msg += "  may help you understand the problem."
49 >                raise CrabException(msg)
50 >        self.cfg = CfgInterface(self.cmsProcess)
51  
52      def maxEvent(self, maxEv):
53 <        """ """
54 <        # set input module
55 <        inModule = self.cfg.inputSource
56 <        inModule.cleanMaxEvent()  
65 <        inModule.setMaxEvents(maxEv)   ## Add Daniele
53 >        """
54 >        Set max event in the standalone untracked module
55 >        """
56 >        self.cfg.maxEvents.setMaxEventsInput(maxEv)
57          return
58  
59 <    def outputModule(self, output):
60 <
61 <        #set output module
62 <        outModule = self.cfg.outputModules['out']
63 <        outModule.setFileName('file:'+str(output))
73 <
59 >    def skipEvent(self, skipEv):
60 >        """
61 >        Set max event in the standalone untracked module
62 >        """
63 >        self.cfg.inputSource.setSkipEvents(skipEv)
64          return
65  
66      def psetWriter(self, name):
67 +        """
68 +        Write out modified CMSSW.cfg
69 +        """
70  
71 <        configObject = cmsconfig(str(self.cfg))
72 <
73 <        file1 = open(common.work_space.jobDir()+name,"w")
74 <        file1.write(str(configObject.asConfigurationString()))
75 <        file1.close()
71 >        # FUTURE: Can drop cfg mode for CMSSW < 2_1_x
72 >        outFile = open(common.work_space.jobDir()+name,"w")
73 >        if name.endswith('py'):
74 >            outFile.write("import FWCore.ParameterSet.Config as cms\n")
75 >            try:
76 >                outFile.write(self.cmsProcess.dumpPython())
77 >            except Exception, ex:
78 >                msg =  "Your cfg file is not valid, %s\n" % str(ex)
79 >                msg += "  https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideCrabFaq#Problem_with_ParameterSet_parsin\n"
80 >                msg += "  may help you understand the problem."
81 >                raise CrabException(msg)
82 >
83 >        else:
84 >            outFile.write(self.cfg.data.dumpConfig())
85 >        outFile.close()
86  
87          return
88 +
89 +    def getTFileService(self):
90 +        """ Get Output filename from TFileService and return it. If not existing, return None """
91 +        if not self.cfg.data.services.has_key('TFileService'):
92 +            return None
93 +        tFileService = self.cfg.data.services['TFileService']
94 +        if "fileName" in tFileService.parameterNames_():
95 +            fileName = getattr(tFileService,'fileName',None).value()
96 +            return fileName
97 +        return None
98 +
99 +    def getPoolOutputModule(self):
100 +        """ Get Output filename from PoolOutputModule and return it. If not existing, return None """
101 +        if not self.cfg.data.outputModules:
102 +            return None
103 +        poolOutputModule = self.cfg.data.outputModules
104 +        for out in poolOutputModule:
105 +            return poolOutputModule[out].fileName.value()
106 +

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines