ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/Bdii.py
Revision: 1.2
Committed: Tue Aug 5 19:50:28 2008 UTC (16 years, 8 months ago) by ewv
Content type: text/x-python
Branch: MAIN
CVS Tags: CRAB_2_3_2_pre2
Changes since 1.1: +3 -3 lines
Log Message:
Fix bug in BdiiLdapsearch, clean-up SchedulerCondorCommon

File Contents

# User Rev Content
1 ewv 1.1 #!/usr/bin/env python
2     import re, sys
3     try:
4 ewv 1.2 from BdiiLdap import *
5 ewv 1.1 except ImportError:
6 ewv 1.2 from BdiiLdapsearch import *
7 ewv 1.1
8     if __name__ == '__main__':
9     from pprint import pprint
10    
11     # seList = listAllSEs('uscmsbd2.fnal.gov')
12 ewv 1.2
13 ewv 1.1 seList = ['ccsrm.in2p3.fr', 'cmssrm.hep.wisc.edu', 'pccms2.cmsfarm1.ba.infn.it', 'polgrid4.in2p3.fr', 'srm-disk.pic.es', 'srm.ciemat.es', 'srm.ihepa.ufl.edu', 't2data2.t2.ucsd.edu', 'srm.unl.edu', 'se01.cmsaf.mit.edu']
14    
15     jmlist = getJobManagerList(seList, "CMSSW_2_0_11", "slc4_ia32_gcc345", 'uscmsbd2.fnal.gov', False)
16     pprint(jmlist)
17    
18    
19