-- MySQL dump 10.9 -- -- Host: localhost Database: mysql -- ------------------------------------------------------ -- Server version 4.1.20 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Current Database: `mysql` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `mysql`; -- -- Table structure for table `columns_priv` -- DROP TABLE IF EXISTS `columns_priv`; CREATE TABLE `columns_priv` ( `Host` char(60) collate utf8_bin NOT NULL default '', `Db` char(64) collate utf8_bin NOT NULL default '', `User` char(16) collate utf8_bin NOT NULL default '', `Table_name` char(64) collate utf8_bin NOT NULL default '', `Column_name` char(64) collate utf8_bin NOT NULL default '', `Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `Column_priv` set('Select','Insert','Update','References') character set utf8 NOT NULL default '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column privileges'; -- -- Dumping data for table `columns_priv` -- /*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */; LOCK TABLES `columns_priv` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */; -- -- Table structure for table `db` -- DROP TABLE IF EXISTS `db`; CREATE TABLE `db` ( `Host` char(60) collate utf8_bin NOT NULL default '', `Db` char(64) collate utf8_bin NOT NULL default '', `User` char(16) collate utf8_bin NOT NULL default '', `Select_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Insert_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Update_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Delete_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Create_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Drop_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Grant_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `References_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Index_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Alter_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Create_tmp_table_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Lock_tables_priv` enum('N','Y') character set utf8 NOT NULL default 'N', PRIMARY KEY (`Host`,`Db`,`User`), KEY `User` (`User`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database privileges'; -- -- Dumping data for table `db` -- /*!40000 ALTER TABLE `db` DISABLE KEYS */; LOCK TABLES `db` WRITE; INSERT INTO `db` VALUES ('%','test','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y'),('%','test\\_%','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y'),('localhost','whod0','whod0','Y','Y','Y','Y','Y','N','N','N','N','N','N','N'),('%','notes','wwsrv','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y'),('localhost','lxr','lxr','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y'); UNLOCK TABLES; /*!40000 ALTER TABLE `db` ENABLE KEYS */; -- -- Table structure for table `func` -- DROP TABLE IF EXISTS `func`; CREATE TABLE `func` ( `name` char(64) collate utf8_bin NOT NULL default '', `ret` tinyint(1) NOT NULL default '0', `dl` char(128) collate utf8_bin NOT NULL default '', `type` enum('function','aggregate') character set utf8 NOT NULL default 'function', PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User defined functions'; -- -- Dumping data for table `func` -- /*!40000 ALTER TABLE `func` DISABLE KEYS */; LOCK TABLES `func` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `func` ENABLE KEYS */; -- -- Table structure for table `help_category` -- DROP TABLE IF EXISTS `help_category`; CREATE TABLE `help_category` ( `help_category_id` smallint(5) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', `parent_category_id` smallint(5) unsigned default NULL, `url` varchar(128) NOT NULL default '', PRIMARY KEY (`help_category_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help categories'; -- -- Dumping data for table `help_category` -- /*!40000 ALTER TABLE `help_category` DISABLE KEYS */; LOCK TABLES `help_category` WRITE; INSERT INTO `help_category` VALUES (0,'Polygon properties',24,''),(1,'Column Types',15,''),(2,'Geometry constructors',24,''),(3,'WKT',24,''),(4,'Numeric Functions',22,''),(5,'GeometryCollection properties',24,''),(6,'Data Manipulation',15,''),(7,'Administration',15,''),(8,'MBR',24,''),(9,'Control flow functions',22,''),(10,'Transactions',15,''),(11,'Geometry relations',24,''),(12,'Functions and Modifiers for Use with GROUP BY Clauses',22,''),(13,'WKB',24,''),(14,'Date and Time Functions',22,''),(15,'Contents',0,''),(16,'Point properties',24,''),(17,'Encryption Functions',22,''),(18,'LineString properties',24,''),(19,'Geometry properties',24,''),(20,'Logical operators',22,''),(21,'Miscellaneous Functions',22,''),(22,'Functions',15,''),(23,'String Functions',22,''),(24,'Geographic features',15,''),(25,'Information Functions',22,''),(26,'Comparison operators',22,''),(27,'Bit Functions',22,''),(28,'Data Definition',15,''); UNLOCK TABLES; /*!40000 ALTER TABLE `help_category` ENABLE KEYS */; -- -- Table structure for table `help_keyword` -- DROP TABLE IF EXISTS `help_keyword`; CREATE TABLE `help_keyword` ( `help_keyword_id` int(10) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', PRIMARY KEY (`help_keyword_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords'; -- -- Dumping data for table `help_keyword` -- /*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */; LOCK TABLES `help_keyword` WRITE; INSERT INTO `help_keyword` VALUES (0,'MIN'),(1,'JOIN'),(2,'SERIALIZABLE'),(3,'REPLACE'),(4,'RETURNS'),(5,'MASTER_SSL_CA'),(6,'NCHAR'),(7,'COLUMNS'),(8,'WORK'),(9,'DATETIME'),(10,'MODE'),(11,'OPEN'),(12,'INTEGER'),(13,'ESCAPE'),(14,'VALUE'),(15,'GEOMETRYCOLLECTIONFROMWKB'),(16,'DROP'),(17,'SQL_BIG_RESULT'),(18,'EVENTS'),(19,'MONTH'),(20,'REGEXP'),(21,'DUPLICATE'),(22,'LINESTRINGFROMTEXT.'),(23,'UNLOCK'),(24,'INNODB'),(25,'YEAR_MONTH'),(26,'LOCK'),(27,'NDB'),(28,'CHECK'),(29,'FULL'),(30,'INT4'),(31,'BY'),(32,'NO'),(33,'MINUTE'),(34,'DATA'),(35,'DAY'),(36,'RAID_CHUNKSIZE'),(37,'SHARE'),(38,'REAL'),(39,'SEPARATOR'),(40,'DELETE'),(41,'ON'),(42,'CHANGED'),(43,'CLOSE'),(44,'USE'),(45,'WHERE'),(46,'SPATIAL'),(47,'SQL_BUFFER_RESULT'),(48,'IGNORE'),(49,'QUICK'),(50,'SIGNED'),(51,'FALSE'),(52,'POLYGONFROMWKB'),(53,'NDBCLUSTER'),(54,'LEVEL'),(55,'FORCE'),(56,'BINARY'),(57,'TO'),(58,'CHANGE'),(59,'HOUR_MINUTE'),(60,'UPDATE'),(61,'INTO'),(62,'FEDERATED'),(63,'VARYING'),(64,'HOUR_SECOND'),(65,'VARIABLE'),(66,'ROLLBACK'),(67,'MAX'),(68,'RTREE'),(69,'PROCEDURE'),(70,'TIMESTAMP'),(71,'IMPORT'),(72,'AGAINST'),(73,'CHECKSUM'),(74,'INSERT'),(75,'COUNT'),(76,'LONGBINARY'),(77,'THEN'),(78,'ENGINES'),(79,'DAY_SECOND'),(80,'EXISTS'),(81,'BOOLEAN'),(82,'DEFAULT'),(83,'MOD'),(84,'TYPE'),(85,'NO_WRITE_TO_BINLOG'),(86,'RESET'),(87,'BIGINT'),(88,'SET'),(89,'DATE'),(90,'STATUS'),(91,'FULLTEXT'),(92,'COMMENT'),(93,'MASTER_CONNECT_RETRY'),(94,'INNER'),(95,'STOP'),(96,'MASTER_LOG_FILE'),(97,'MRG_MYISAM'),(98,'PRECISION'),(99,'TRAILING'),(100,'LONG'),(101,'ELSE'),(102,'IO_THREAD'),(103,'FROM'),(104,'READ'),(105,'LEFT'),(106,'MINUTE_SECOND'),(107,'COMPACT'),(108,'DEC'),(109,'FOR'),(110,'WARNINGS'),(111,'MIN_ROWS'),(112,'STRING'),(113,'FUNCTION'),(114,'ENCLOSED'),(115,'AGGREGATE'),(116,'FIELDS'),(117,'INT3'),(118,'ARCHIVE'),(119,'AVG_ROW_LENGTH'),(120,'ADD'),(121,'FLOAT4'),(122,'STRIPED'),(123,'VIEW'),(124,'REPEATABLE'),(125,'INFILE'),(126,'ORDER'),(127,'USING'),(128,'MIDDLEINT'),(129,'UNSIGNED'),(130,'GEOMETRYFROMTEXT'),(131,'INDEXES'),(132,'FOREIGN'),(133,'CACHE'),(134,'HOSTS'),(135,'COMMIT'),(136,'SCHEMAS'),(137,'LEADING'),(138,'LOAD'),(139,'SQL_CACHE'),(140,'CONVERT'),(141,'DYNAMIC'),(142,'POLYGONFROMTEXT'),(143,'BYTE'),(144,'LINESTRINGFROMWKB'),(145,'GLOBAL'),(146,'BERKELEYDB'),(147,'WHEN'),(148,'HAVING'),(149,'AS'),(150,'STARTING'),(151,'AUTOCOMMIT'),(152,'GRANTS'),(153,'OUTER'),(154,'FLOOR'),(155,'AFTER'),(156,'STD'),(157,'DISABLE'),(158,'CSV'),(159,'OUTFILE'),(160,'LOW_PRIORITY'),(161,'BDB'),(162,'SCHEMA'),(163,'SONAME'),(164,'POW'),(165,'MULTIPOINTFROMWKB'),(166,'INDEX'),(167,'MULTIPOINTFROMTEXT'),(168,'BACKUP'),(169,'MULTILINESTRINGFROMWKB'),(170,'EXTENDED'),(171,'CROSS'),(172,'NATIONAL'),(173,'GROUP'),(174,'ZEROFILL'),(175,'MASTER_PASSWORD'),(176,'RELAY_LOG_FILE'),(177,'TRUE'),(178,'CHARACTER'),(179,'MASTER_USER'),(180,'ENGINE'),(181,'TABLE'),(182,'INSERT_METHOD'),(183,'CASCADE'),(184,'RELAY_LOG_POS'),(185,'SQL_CALC_FOUND_ROWS'),(186,'MYISAM'),(187,'MODIFY'),(188,'MATCH'),(189,'MASTER_LOG_POS'),(190,'DESC'),(191,'DISTINCTROW'),(192,'TIME'),(193,'NUMERIC'),(194,'GEOMETRYCOLLECTIONFROMTEXT'),(195,'RAID_CHUNKS'),(196,'FLUSH'),(197,'CREATE'),(198,'ISAM'),(199,'INT2'),(200,'PROCESSLIST'),(201,'LOGS'),(202,'HEAP'),(203,'SOUNDS'),(204,'BETWEEN'),(205,'MULTILINESTRINGFROMTEXT'),(206,'PACK_KEYS'),(207,'VALUES'),(208,'FAST'),(209,'VARCHARACTER'),(210,'SHOW'),(211,'ALL'),(212,'REDUNDANT'),(213,'USER_RESOURCES'),(214,'PARTIAL'),(215,'BINLOG'),(216,'END'),(217,'SECOND'),(218,'AND'),(219,'FLOAT8'),(220,'PREV'),(221,'HOUR'),(222,'SELECT'),(223,'DATABASES'),(224,'OR'),(225,'MASTER_SSL_CIPHER'),(226,'SQL_SLAVE_SKIP_COUNTER'),(227,'BOTH'),(228,'BOOL'),(229,'YEAR'),(230,'MASTER_PORT'),(231,'CONCURRENT'),(232,'UNIQUE'),(233,'MASTER_SSL'),(234,'DATE_ADD'),(235,'LIKE'),(236,'IN'),(237,'COLUMN'),(238,'DUMPFILE'),(239,'MEMORY'),(240,'CEIL'),(241,'QUERY'),(242,'MASTER_HOST'),(243,'LINES'),(244,'SQL_THREAD'),(245,'MULTIPOLYGONFROMWKB'),(246,'MASTER_SSL_CERT'),(247,'DAY_MINUTE'),(248,'TRANSACTION'),(249,'DATE_SUB'),(250,'GEOMETRYFROMWKB'),(251,'INT1'),(252,'RENAME'),(253,'RIGHT'),(254,'ALTER'),(255,'MAX_ROWS'),(256,'STRAIGHT_JOIN'),(257,'NATURAL'),(258,'VARIABLES'),(259,'ESCAPED'),(260,'SHA1'),(261,'RAID_TYPE'),(262,'CHAR'),(263,'OFFSET'),(264,'NEXT'),(265,'SQL_LOG_BIN'),(266,'ERRORS'),(267,'TEMPORARY'),(268,'SQL_SMALL_RESULT'),(269,'COMMITTED'),(270,'DELAY_KEY_WRITE'),(271,'BEGIN'),(272,'MEDIUM'),(273,'INTERVAL'),(274,'DAY_HOUR'),(275,'REFERENCES'),(276,'AES_ENCRYPT'),(277,'ISOLATION'),(278,'INT8'),(279,'RESTRICT'),(280,'IS'),(281,'UNCOMMITTED'),(282,'NOT'),(283,'DES_KEY_FILE'),(284,'COMPRESSED'),(285,'START'),(286,'IF'),(287,'SAVEPOINT'),(288,'PRIMARY'),(289,'LAST'),(290,'INNOBASE'),(291,'LIMIT'),(292,'KEYS'),(293,'KEY'),(294,'MERGE'),(295,'SQL_NO_CACHE'),(296,'DELAYED'),(297,'CONSTRAINT'),(298,'SERIAL'),(299,'ACTION'),(300,'WRITE'),(301,'SESSION'),(302,'DATABASE'),(303,'NULL'),(304,'USE_FRM'),(305,'SLAVE'),(306,'TERMINATED'),(307,'ASC'),(308,'OPTIONALLY'),(309,'ENABLE'),(310,'DIRECTORY'),(311,'LOCAL'),(312,'DISTINCT'),(313,'MASTER_SSL_KEY'),(314,'TABLES'),(315,'<>'),(316,'HIGH_PRIORITY'),(317,'BTREE'),(318,'FIRST'),(319,'TYPES'),(320,'MASTER'),(321,'FIXED'),(322,'RAID0'),(323,'MULTIPOLYGONFROMTEXT'),(324,'ROW_FORMAT'); UNLOCK TABLES; /*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */; -- -- Table structure for table `help_relation` -- DROP TABLE IF EXISTS `help_relation`; CREATE TABLE `help_relation` ( `help_topic_id` int(10) unsigned NOT NULL default '0', `help_keyword_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`help_keyword_id`,`help_topic_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation'; -- -- Dumping data for table `help_relation` -- /*!40000 ALTER TABLE `help_relation` DISABLE KEYS */; LOCK TABLES `help_relation` WRITE; INSERT INTO `help_relation` VALUES (378,0),(281,1),(350,2),(330,3),(127,4),(148,5),(336,6),(272,7),(109,8),(298,9),(62,10),(281,10),(78,11),(272,11),(127,12),(395,12),(301,13),(190,14),(80,15),(19,16),(61,16),(127,16),(149,16),(219,16),(367,16),(281,17),(186,18),(20,19),(396,20),(117,21),(40,22),(23,23),(272,24),(370,24),(20,25),(23,26),(281,26),(370,27),(370,28),(272,29),(370,29),(395,30),(34,31),(60,31),(281,31),(287,31),(330,31),(367,31),(370,31),(370,32),(374,32),(20,33),(87,34),(330,34),(370,34),(20,35),(370,36),(281,37),(127,38),(247,38),(287,39),(370,40),(374,40),(0,41),(374,41),(24,42),(78,43),(0,44),(34,45),(60,45),(78,45),(166,46),(367,46),(281,47),(0,48),(60,48),(117,48),(281,48),(330,48),(367,48),(24,49),(34,49),(265,49),(298,50),(304,51),(64,52),(370,53),(350,54),(0,55),(204,56),(236,56),(298,56),(336,56),(148,57),(362,57),(148,58),(367,58),(20,59),(117,60),(281,60),(374,60),(30,61),(117,61),(281,61),(370,62),(204,63),(20,64),(96,65),(109,66),(362,66),(378,67),(166,68),(281,69),(70,70),(150,70),(330,71),(62,72),(370,73),(117,74),(386,74),(339,75),(226,76),(104,77),(272,78),(20,79),(19,80),(119,80),(149,80),(219,80),(15,81),(62,81),(117,82),(190,82),(367,82),(370,82),(137,83),(367,84),(370,84),(259,85),(265,85),(373,85),(25,86),(114,86),(209,86),(174,87),(30,88),(60,88),(109,88),(145,88),(167,88),(367,88),(374,88),(390,88),(20,89),(97,89),(208,89),(298,89),(41,90),(176,90),(272,90),(166,91),(367,91),(370,91),(370,92),(148,93),(0,94),(37,95),(148,96),(370,97),(247,98),(358,99),(226,100),(104,101),(37,102),(258,102),(34,103),(87,103),(186,103),(272,103),(281,103),(286,103),(358,103),(23,104),(78,104),(350,104),(0,105),(20,106),(370,107),(164,108),(272,109),(281,109),(272,110),(370,111),(127,112),(127,113),(330,114),(127,115),(272,116),(330,116),(199,117),(370,118),(367,119),(370,119),(43,120),(367,120),(131,121),(370,122),(19,123),(122,123),(350,124),(330,125),(34,126),(60,126),(281,126),(287,126),(367,126),(0,127),(34,127),(199,128),(15,129),(94,129),(131,129),(164,129),(247,129),(298,129),(395,129),(325,130),(272,131),(367,132),(370,132),(374,132),(114,133),(108,134),(272,134),(109,135),(272,136),(358,137),(87,138),(286,138),(330,138),(281,139),(298,140),(370,141),(313,142),(368,143),(354,144),(96,145),(145,145),(350,145),(370,146),(104,147),(281,148),(0,149),(23,149),(281,149),(330,150),(109,151),(272,152),(0,153),(174,154),(367,155),(322,156),(367,157),(330,158),(370,158),(281,159),(23,160),(30,160),(34,160),(60,160),(117,160),(330,160),(370,161),(119,162),(149,162),(167,162),(272,162),(127,163),(383,164),(366,165),(0,166),(43,166),(61,166),(166,166),(272,166),(367,166),(370,166),(333,167),(283,168),(215,169),(24,170),(265,170),(0,171),(204,172),(336,172),(281,173),(15,174),(94,174),(131,174),(164,174),(247,174),(395,174),(148,175),(148,176),(304,177),(167,178),(204,178),(336,178),(148,179),(367,180),(370,180),(24,181),(43,181),(118,181),(219,181),(265,181),(272,181),(283,181),(286,181),(373,181),(370,182),(19,183),(219,183),(370,183),(374,183),(148,184),(281,185),(370,186),(367,187),(62,188),(148,189),(260,190),(281,190),(287,190),(281,191),(248,192),(297,192),(298,192),(164,193),(194,194),(370,195),(114,196),(43,197),(119,197),(127,197),(166,197),(272,197),(370,197),(370,198),(182,199),(272,200),(236,201),(272,201),(370,202),(299,203),(110,204),(79,205),(370,206),(30,207),(24,208),(204,209),(41,210),(108,210),(176,210),(186,210),(236,210),(241,211),(281,211),(370,212),(259,213),(370,214),(186,215),(104,216),(20,217),(110,218),(249,218),(247,219),(78,220),(20,221),(30,222),(203,222),(272,223),(103,224),(148,225),(145,226),(358,227),(15,228),(82,228),(20,229),(148,230),(330,231),(367,232),(148,233),(20,234),(272,235),(299,235),(62,236),(186,236),(281,236),(367,237),(281,238),(281,239),(351,240),(114,241),(148,242),(330,243),(37,244),(258,244),(91,245),(148,246),(20,247),(109,248),(350,248),(20,249),(107,250),(15,251),(367,252),(0,253),(43,254),(122,254),(367,254),(370,255),(0,256),(281,256),(0,257),(272,258),(330,259),(225,260),(370,261),(298,262),(368,262),(281,263),(78,264),(390,265),(272,266),(219,267),(281,268),(350,269),(370,270),(109,271),(24,272),(20,273),(20,274),(370,275),(374,275),(392,276),(350,277),(94,278),(19,279),(219,279),(374,279),(292,280),(350,281),(119,282),(245,282),(259,283),(370,284),(109,285),(258,285),(19,286),(119,286),(149,286),(219,286),(362,287),(367,288),(78,289),(370,290),(34,291),(60,291),(78,291),(186,291),(281,291),(272,292),(367,292),(43,293),(117,293),(367,293),(370,293),(374,293),(370,294),(281,295),(30,296),(117,296),(386,296),(367,297),(370,297),(190,298),(370,298),(370,299),(374,299),(23,300),(96,301),(350,301),(119,302),(149,302),(272,302),(292,303),(374,303),(265,304),(25,305),(37,305),(108,305),(176,305),(258,305),(330,306),(281,307),(287,307),(330,308),(367,309),(370,310),(23,311),(259,311),(265,311),(330,311),(373,311),(228,312),(281,312),(287,312),(305,312),(339,312),(378,312),(148,313),(23,314),(272,314),(391,315),(117,316),(281,316),(166,317),(78,318),(367,318),(370,318),(272,319),(41,320),(87,320),(148,320),(209,320),(236,320),(286,320),(164,321),(370,321),(370,322),(157,323),(370,324); UNLOCK TABLES; /*!40000 ALTER TABLE `help_relation` ENABLE KEYS */; -- -- Table structure for table `help_topic` -- DROP TABLE IF EXISTS `help_topic`; CREATE TABLE `help_topic` ( `help_topic_id` int(10) unsigned NOT NULL default '0', `name` varchar(64) NOT NULL default '', `help_category_id` smallint(5) unsigned NOT NULL default '0', `description` text NOT NULL, `example` text NOT NULL, `url` varchar(128) NOT NULL default '', PRIMARY KEY (`help_topic_id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics'; -- -- Dumping data for table `help_topic` -- /*!40000 ALTER TABLE `help_topic` DISABLE KEYS */; LOCK TABLES `help_topic` WRITE; INSERT INTO `help_topic` VALUES (0,'JOIN',6,'MySQL supports the following JOIN syntaxes for the\ntable_references part of SELECT statements and multiple-table\nDELETE and UPDATE statements:\n\ntable_reference, table_reference\ntable_reference [INNER | CROSS] JOIN table_reference [join_condition]\ntable_reference STRAIGHT_JOIN table_reference\ntable_reference LEFT [OUTER] JOIN table_reference join_condition\ntable_reference NATURAL [LEFT [OUTER]] JOIN table_reference\n{ OJ table_reference LEFT OUTER JOIN table_reference\n ON conditional_expr }\ntable_reference RIGHT [OUTER] JOIN table_reference join_condition\ntable_reference NATURAL [RIGHT [OUTER]] JOIN table_reference\n\ntable_reference is defined as:\n\ntbl_name [[AS] alias]\n [[USE INDEX (key_list)]\n | [IGNORE INDEX (key_list)]\n | [FORCE INDEX (key_list)]]\n\njoin_condition is defined as:\n\nON conditional_expr | USING (column_list)\n','mysql> SELECT table1.* FROM table1\n -> LEFT JOIN table2 ON table1.id=table2.id\n -> WHERE table2.id IS NULL;',''),(1,'HEX',23,' HEX(N_or_S)\n\nIf N_OR_S is a number, returns a string representation of the hexadecimal\nvalue of N, where N is a longlong (BIGINT) number.\nThis is equivalent to CONV(N,10,16).\n\nFrom MySQL 4.0.1 and up,\nif N_OR_S is a string, returns a hexadecimal string of N_OR_S\nwhere each character in N_OR_S is converted to two hexadecimal digits.\n','mysql> SELECT HEX(255);\n -> \'FF\'\nmysql> SELECT 0x616263;\n -> \'abc\'\nmysql> SELECT HEX(\'abc\');\n -> 616263',''),(2,'REPLACE',23,' REPLACE(str,from_str,to_str)\nReturns the string str with all occurrences of the string\nfrom_str replaced by the string to_str.\n','mysql> SELECT REPLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'',''),(3,'REPEAT',23,' REPEAT(str,count)\nReturns a string consisting of the string str repeated count\ntimes. If count <= 0, returns an empty string. Returns NULL if\nstr or count are NULL.\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'',''),(4,'CONTAINS',11,' Contains(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 completely contains\ng2.\n','',''),(5,'SRID',19,' SRID(g)\nReturns an integer indicating the Spatial Reference System ID for the geometry\nvalue g.\n\nIn MySQL, the SRID value is just an integer associated with the geometry\nvalue. All calculations are done assuming Euclidean (planar) geometry.\n','mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101));\n+-----------------------------------------------+\n| SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) |\n+-----------------------------------------------+\n| 101 |\n+-----------------------------------------------+',''),(6,'CURRENT_TIMESTAMP',14,' CURRENT_TIMESTAMP\n CURRENT_TIMESTAMP()\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for\nNOW().\n','',''),(7,'VARIANCE',12,' VARIANCE(expr)\nReturns the population standard variance of expr. This is an\nextension to standard SQL, available in MySQL 4.1 or later. As of MySQL\n5.0.3, the standard SQL function VAR_POP() can be used instead.\n','',''),(8,'VAR_SAMP',12,' VAR_SAMP(expr)\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one. This function was added in MySQL 5.0.3.\n','',''),(9,'CONCAT',23,' CONCAT(str1,str2,...)\nReturns the string that results from concatenating the arguments. Returns\nNULL if any argument is NULL. May have one or more arguments.\nIf all arguments are non-binary strings, the result is a non-binary string.\nIf the arguments include any binary strings, the result is a binary string.\nA numeric argument is converted to its equivalent binary string form.\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'',''),(10,'GEOMETRY HIERARCHY',24,'Geometry is the base class. It\'s an abstract class.\nThe instantiable subclasses of Geometry are restricted to zero-, one-,\nand two-dimensional geometric objects that exist in\ntwo-dimensional coordinate space. All instantiable geometry classes are\ndefined so that valid instances of a geometry class are topologically closed\n(that is, all defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point,\nCurve, Surface, and GeometryCollection:\n\n\n --- Point represents zero-dimensional objects.\n\n --- Curve represents one-dimensional objects, and has subclass\nLineString, with sub-subclasses Line and LinearRing.\n\n --- Surface is designed for two-dimensional objects and\nhas subclass Polygon.\n\n --- GeometryCollection\nhas specialized zero-, one-, and two-dimensional collection classes named\nMultiPoint, MultiLineString, and MultiPolygon\nfor modeling geometries corresponding to collections of\nPoints, LineStrings, and Polygons, respectively.\nMultiCurve and MultiSurface are introduced as abstract superclasses\nthat generalize the collection interfaces to handle Curves and Surfaces.\n\n\nGeometry, Curve, Surface, MultiCurve,\nand MultiSurface are defined as non-instantiable classes.\nThey define a common set of methods for their subclasses and\nare included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection,\nMultiPoint, MultiLineString, and\nMultiPolygon are instantiable classes.\n','',''),(11,'CHAR FUNCTION',23,' CHAR(N,...)\nCHAR() interprets the arguments as integers and returns a string\nconsisting of the characters given by the code values of those\nintegers. NULL values are skipped.\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(77,77.3,\'77.3\');\n -> \'MMM\'',''),(12,'DATETIME',1,'A date and time combination. The supported range is \'1000-01-01\n00:00:00\' to \'9999-12-31 23:59:59\'. MySQL displays\nDATETIME values in \'YYYY-MM-DD HH:MM:SS\' format, but allows you\nto assign values to DATETIME columns using either strings or numbers.\n','',''),(13,'LOWER',23,' LOWER(str)\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'',''),(14,'MONTH',14,' MONTH(date)\nReturns the month for date, in the range 1 to 12.\n','mysql> SELECT MONTH(\'1998-02-03\');\n -> 2',''),(15,'TINYINT',1,' TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The\nunsigned range is 0 to 255.\n','',''),(16,'ISCLOSED',18,' IsClosed(ls)\nReturns 1 if the LineString value ls is closed\n(that is, its StartPoint() and EndPoint() values are the same).\nReturns 0 if ls is not closed, and -1 if it is NULL.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT IsClosed(GeomFromText(@ls));\n+-----------------------------+\n| IsClosed(GeomFromText(@ls)) |\n+-----------------------------+\n| 0 |\n+-----------------------------+',''),(17,'MASTER_POS_WAIT',21,' MASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization.\nIt blocks until the slave has read and applied all updates up to the specified\nposition in the master log.\nThe return value is the number of log events it had to wait for to get to\nthe specified position. The function returns NULL if the slave SQL thread\nis not started, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL.\nIf the slave is past the specified position, the function returns\nimmediately.\n','SELECT MASTER_POS_WAIT(\'master_log_file\', master_log_pos)',''),(18,'^',27,' ^\nBitwise XOR:\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8',''),(19,'DROP VIEW',24,'DROP VIEW removes one or more views. You must have the DROP\nprivilege for each view.\n\nYou can use the keywords IF EXISTS to prevent an error from occurring\nfor views that don\'t exist. When this clause is given, a NOTE is\ngenerated for each non-existent view.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n','DROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]',''),(20,'DATE OPERATIONS',14,' DATE_ADD(date,INTERVAL expr type)\n DATE_SUB(date,INTERVAL expr type)\n\nThese functions perform date arithmetic.\ndate is a DATETIME or DATE value specifying the starting\ndate. expr is an expression specifying the interval value to be added\nor subtracted from the starting date. expr is a string; it may start\nwith a \'-\' for negative intervals. type is a keyword indicating\nhow the expression should be interpreted.\n','mysql> SELECT \'1997-12-31 23:59:59\' + INTERVAL 1 SECOND;\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT INTERVAL 1 DAY + \'1997-12-31\';\n -> \'1998-01-01\'\nmysql> SELECT \'1998-01-01\' - INTERVAL 1 SECOND;\n -> \'1997-12-31 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'1998-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'1998-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'1997-12-31 23:59:59\',\n -> INTERVAL \'1:1\' MINUTE_SECOND);\n -> \'1998-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'1998-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'1997-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1998-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1997-12-30 14:00:00\'\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT DATE_ADD(\'1992-12-31 23:59:59.000002\',\n -> INTERVAL \'1.999999\' SECOND_MICROSECOND);\n -> \'1993-01-01 00:00:01.000001\'',''),(21,'WITHIN',11,' Within(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially within\ng2.\n','',''),(22,'WEEK',14,' WEEK(date[,mode])\nThe function returns the week number for date. The two-argument form\nof WEEK() allows you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to\n53 or from 1 to 53. If the mode argument is\nomitted, the value of the default_week_format system variable is\nused (or 0 before MySQL 4.0.14).\nSee also : [Server system variables].\n\nThe following table describes how the mode argument works:\n\n First day \n Mode of week Range Week 1 is the first week...\n 0 Sunday 0-53 with a Sunday in this year\n 1 Monday 0-53 with more than 3 days this year\n 2 Sunday 1-53 with a Sunday in this year\n 3 Monday 1-53 with more than 3 days this year\n 4 Sunday 0-53 with more than 3 days this year\n 5 Monday 0-53 with a Monday in this year\n 6 Sunday 1-53 with more than 3 days this year\n 7 Monday 1-53 with a Monday in this year\n \n\nA mode value of 3 can be used as of MySQL 4.0.5.\nValues of 4 and above can be used as of MySQL 4.0.17.\n','mysql> SELECT WEEK(\'1998-02-20\');\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'1998-02-20\',1);\n -> 8\nmysql> SELECT WEEK(\'1998-12-31\',1);\n -> 53',''),(23,'LOCK',10,'LOCK TABLES locks tables for the current thread. If any of the tables\nare locked by other threads, it blocks until all locks can be acquired.\nUNLOCK TABLES releases any locks held by the current thread.\nAll tables that are locked by the current thread are implicitly unlocked\nwhen the thread issues another LOCK TABLES, or when the connection\nto the server is closed.\n','LOCK TABLES\n tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}\n [, tbl_name [AS alias] {READ [LOCAL] | [LOW_PRIORITY] WRITE}] ...\nUNLOCK TABLES',''),(24,'CHECK',7,'Checks a table or tables for errors. CHECK TABLE works for\nMyISAM and InnoDB tables. For MyISAM tables, the key statistics are updated.\n\nAs of MySQL 5.0.2, CHECK TABLE also can check views for problems, such\nas tables that are referenced in the view definition that no longer exist.\n','CHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption = {QUICK | FAST | MEDIUM | EXTENDED | CHANGED}',''),(25,'RESET SLAVE',7,'RESET SLAVE\n\nMakes the slave forget its replication position in the master\'s binary logs.\nThis statement is meant to be used for a clean start: It deletes the\n*master.info and *relay-log.info files, all the relay logs,\nand starts a new relay log.\n\nNote: All relay logs are deleted, even if they have not been\ntotally executed by the slave SQL thread. (This is a condition likely to\nexist on a replication slave if you have issued a STOP SLAVE\nstatement or if the slave is highly loaded.)\n\nConnection information stored in the *master.info file is immediately\nreset using any values specified in the corresponding startup options.\nThis information includes values such as master host, master port, master\nuser, and master password. If the slave SQL thread was in the middle of\nreplicating temporary tables when it was stopped, and RESET SLAVE\nis issued, these replicated temporary tables are deleted on the slave.\n\nThis statement was named FLUSH SLAVE before MySQL 3.23.26.\n','',''),(26,'POLYGON',2,' Polygon(ls1,ls2,...)\nConstructs a WKB Polygon value from a number of WKB LineString\narguments. If any argument does not represent the WKB of a LinearRing\n(that is, not a closed and simple LineString) the return value\nis NULL.\n','',''),(27,'MINUTE',14,' MINUTE(time)\nReturns the minute for time, in the range 0 to 59.\n','mysql> SELECT MINUTE(\'98-02-03 10:05:03\');\n -> 5',''),(28,'DAY',14,' DAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\nIt is available as of MySQL 4.1.1.\n','',''),(29,'MID',23,' MID(str,pos,len)\n\nMID(str,pos,len) is a synonym for\nSUBSTRING(str,pos,len).\n','',''),(30,'REPLACE INTO',6,'REPLACE works exactly like INSERT, except that if an old\nrecord in the table has the same value as a new record for a PRIMARY\nKEY or a UNIQUE index, the old record is deleted before the new\nrecord is inserted.\nSee also : [INSERT, ,INSERT].\n\nNote that unless the table has a PRIMARY KEY or UNIQUE index,\nusing a REPLACE statement makes no sense. It becomes equivalent to\nINSERT, because there is no index to be used to determine whether a new\nrow duplicates another.\n\nValues for all columns are taken from the values specified in the\nREPLACE statement. Any missing columns are set to their default\nvalues, just as happens for INSERT. You can\'t refer to values from\nthe current row and use them in the new row. If you use an assignment such\nas SET col_name = col_name + 1, the reference to the\ncolumn name on the right hand side is treated as\nDEFAULT(col_name), so the assignment is equivalent to SET\ncol_name = DEFAULT(col_name) + 1.\n\nTo be able to use REPLACE, you must have INSERT and\nDELETE privileges for the table.\n','REPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name [(col_name,...)]\n VALUES ({expr | DEFAULT},...),(...),...',''),(31,'UUID',21,' UUID()\n\nReturns a Universal Unique Identifier (UUID) generated\naccording to ``DCE 1.1: Remote Procedure Call\'\' (Appendix A)\nCAE (Common Applications Environment) Specifications\npublished by The Open Group in October 1997 (Document Number C706).\n\nA UUID is designed as a number that is globally unique in space and\ntime. Two calls to UUID() are expected to generate two different\nvalues, even if these calls are performed on two separate computers that are\nnot connected to each other.\n\nA UUID is a 128-bit number represented by a string\nof five hexadecimal numbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee\nformat:\n\n\n --- The first three numbers are generated from a timestamp.\n\n --- The fourth number preserves temporal uniqueness in case the timestamp value loses\nmonotonicity (for example, due to daylight saving time).\n\n --- The fifth number is an IEEE 802 node number that provides spatial uniqueness. A\nrandom number is substituted if the latter is not available (for example,\nbecause the host computer has no Ethernet card, or we do not know how to\nfind the hardware address of an interface on your operating system). In\nthis case, spatial uniqueness cannot be guaranteed. Nevertheless, a\ncollision should have /very/ low probability.\n\nCurrently, the MAC address of an interface is taken into account only on\nFreeBSD and Linux. On other operating systems, MySQL uses a randomly generated\n48-bit number.\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-0040f4311e29\'',''),(32,'LINESTRING',2,' LineString(pt1,pt2,...)\nConstructs a WKB LineString value from a number of WKB Point\narguments. If any argument is not a WKB Point, the return value\nis NULL. If the number of Point arguments is less than two,\nthe return value is NULL.\n','',''),(33,'CONNECTION_ID',25,' CONNECTION_ID()\nReturns the connection ID (thread ID) for the connection.\nEvery connection has its own unique ID.\n','mysql> SELECT CONNECTION_ID();\n -> 23786',''),(34,'DELETE',6,'DELETE deletes rows from tbl_name that satisfy the condition\ngiven by where_definition, and returns the number of records deleted.\n\nIf you issue a DELETE statement with no WHERE clause, all\nrows are deleted. A faster way to do this, when you don\'t want to know\nthe number of deleted rows, is to use TRUNCATE TABLE.\nSee also : [TRUNCATE, , TRUNCATE].\n','DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name\n [WHERE where_definition]\n [ORDER BY ...]\n [LIMIT row_count]',''),(35,'ROUND',4,' ROUND(X)\n ROUND(X,D)\nReturns the argument X, rounded to the nearest integer.\nWith two arguments, returns X rounded to D decimals.\nD can be negative to round D digits left of the decimal\npoint of the value X.\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20',''),(36,'NULLIF',9,' NULLIF(expr1,expr2)\nReturns NULL if expr1 = expr2 is true, else returns expr1.\nThis is the same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1',''),(37,'STOP SLAVE',7,'STOP SLAVE [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads.\nSTOP SLAVE requires the SUPER privilege.\n\nLike START SLAVE, as of MySQL 4.0.2, this statement\nmay be used with the IO_THREAD and SQL_THREAD options to name\nthe thread or threads to stop.\n','',''),(38,'TIMEDIFF',14,' TIMEDIFF(expr,expr2)\n\n\nTIMEDIFF() returns the time between the start time\nexpr and the end time expr2.\nexpr and expr2 are time or date-and-time expressions, but both\nmust be of the same type.\n','mysql> SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'1997-12-31 23:59:59.000001\',\n -> \'1997-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'',''),(39,'RELATED',11,' Related(g1,g2,pattern_matrix)\nReturns 1 or 0 to indicate whether or not the spatial relationship specified\nby pattern_matrix exists between g1 and g2.\nReturns -1 if the arguments are NULL.\nThe pattern matrix is a string. Its specification will be noted here if this\nfunction is implemented.\n','',''),(40,'LINEFROMTEXT',3,' LineFromText(wkt[,srid])\n LineStringFromText(wkt[,srid])\nConstructs a LINESTRING value using its WKT representation and SRID.\n','',''),(41,'SHOW MASTER STATUS',6,'SHOW MASTER STATUS\n\nProvides status information on the binary log files of the master.\n','',''),(42,'ADDTIME',14,' ADDTIME(expr,expr2)\n\n\nADDTIME() adds expr2 to expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a time\nexpression.\n','mysql> SELECT ADDTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1998-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'',''),(43,'SPATIAL',24,'MySQL can create spatial indexes using syntax similar to that for creating\nregular indexes, but extended with the SPATIAL keyword.\nSpatial columns that are indexed currently must be declared NOT NULL.\nThe following examples demonstrate how to create spatial indexes.\n\n\n With CREATE TABLE:\n\nmysql> CREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g));\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom ADD SPATIAL INDEX(g);\n\n With CREATE INDEX:\n\nmysql> CREATE SPATIAL INDEX sp_index ON geom (g);\n\n\nTo drop spatial indexes, use ALTER TABLE or DROP INDEX:\n\n\n With ALTER TABLE:\n\nmysql> ALTER TABLE geom DROP INDEX g;\n\n With DROP INDEX:\n\nmysql> DROP INDEX sp_index ON geom;\n\n\nExample: Suppose that a table geom contains more than 32,000 geometries,\nwhich are stored in the column g of type GEOMETRY.\nThe table also has an AUTO_INCREMENT column fid for storing\nobject ID values.\n','',''),(44,'TIMESTAMPDIFF',14,' TIMESTAMPDIFF(interval,datetime_expr1,datetime_expr2)\n\nReturns the integer difference between the date or datetime expressions\ndatetime_expr1 and\ndatetime_expr2. The unit for the result is given by the\ninterval argument. The legal values for interval are the same as\nthose listed in the description of the TIMESTAMPADD() function.\n','',''),(45,'UPPER',23,' UPPER(str)\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping (the default is ISO-8859-1\nLatin1).\n','mysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'',''),(46,'FROM_UNIXTIME',14,' FROM_UNIXTIME(unix_timestamp)\n FROM_UNIXTIME(unix_timestamp,format)\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD HH:MM:SS\' or YYYYMMDDHHMMSS format, depending on\nwhether the function is used in a string or numeric context.\n\nmysql> SELECT FROM_UNIXTIME(875996580);\n -> \'1997-10-04 22:23:00\'\nmysql> SELECT FROM_UNIXTIME(875996580) + 0;\n -> 19971004222300\n\nIf format is given, the result is formatted according to the\nformat string. format may contain the same specifiers as\nthose listed in the entry for the DATE_FORMAT() function.\n','mysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(),\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2003 6th August 06:22:58 2003\'',''),(47,'MEDIUMBLOB',1,' MEDIUMBLOB\n\nA BLOB column with a maximum length of 16,777,215\n(2^24 - 1) bytes.\n','',''),(48,'IFNULL',9,' IFNULL(expr1,expr2)\nIf expr1 is not NULL, IFNULL() returns expr1,\nelse it returns expr2. IFNULL() returns a numeric or string\nvalue, depending on the context in which it is used.\n','mysql> SELECT IFNULL(1,0);\n -> 1\nmysql> SELECT IFNULL(NULL,10);\n -> 10\nmysql> SELECT IFNULL(1/0,10);\n -> 10\nmysql> SELECT IFNULL(1/0,\'yes\');\n -> \'yes\'',''),(49,'LEAST',26,' LEAST(value1,value2,...)\nWith two or more arguments, returns the smallest (minimum-valued) argument.\nThe arguments are compared using the following rules.\n\n --- If the return value is used in an INTEGER context or all arguments\nare integer-valued, they are compared as integers.\n\n --- If the return value is used in a REAL context or all arguments are\nreal-valued, they are compared as reals.\n\n --- If any argument is a case-sensitive string, the arguments are compared\nas case-sensitive strings.\n\n --- In other cases, the arguments are compared as case-insensitive strings.\n','mysql> SELECT LEAST(2,0);\n -> 0\nmysql> SELECT LEAST(34.0,3.0,5.0,767.0);\n -> 3.0\nmysql> SELECT LEAST(\'B\',\'A\',\'C\');\n -> \'A\'',''),(50,'=',26,' =\nEqual:\n','mysql> SELECT 1 = 0;\n -> 0\nmysql> SELECT \'0\' = 0;\n -> 1\nmysql> SELECT \'0.0\' = 0;\n -> 1\nmysql> SELECT \'0.01\' = 0;\n -> 0\nmysql> SELECT \'.01\' = 0.01;\n -> 1',''),(51,'REVERSE',23,' REVERSE(str)\nReturns the string str with the order of the characters reversed.\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'',''),(52,'ISNULL',26,' ISNULL(expr)\nIf expr is NULL, ISNULL() returns 1, otherwise\nit returns 0.\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1',''),(53,'BINARY',1,' BINARY(M)\n\nThe BINARY type is similar to the CHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(54,'BOUNDARY',19,' Boundary(g)\nReturns a geometry that is the closure of the combinatorial boundary of the\ngeometry value g.\n','',''),(55,'CREATE USER',7,'The CREATE USER statement creates new MySQL accounts. To use it, you\nmust have the global CREATE USER privilege or the INSERT\nprivilege for the mysql database.\nFor each account, CREATE USER creates a new record in the\nmysql.user table that has no privileges. An error occurs if the\naccount already exists.\n\nThe account can be given a password with the optional IDENTIFIED\nBY clause. The user value and the password are given the same way\nas for the GRANT statement. In particular, to specify the password\nin plain text, omit the PASSWORD keyword. To specify the password\nas the hashed value as returned by the PASSWORD() function, include\nthe keyword PASSWORD.\nSee also : [GRANT, , GRANT].\n\nThe CREATE USER statement was added in MySQL 5.0.2.\n\n\n @subsubsection DROP USER Syntax\n\n\n\nDROP USER user [, user] ...\n\nThe DROP USER statement deletes one or more MySQL accounts.\nTo use it, you\nmust have the global CREATE USER privilege or the DELETE\nprivilege for the mysql database.\nEach account is named using the same format as for GRANT\nor REVOKE; for example, \'jeffrey\'@@\'localhost\'. The user and\nhost parts of the account name correspond to the User and Host\ncolumn values of the user table record for the account.\n\nDROP USER was added in MySQL 4.1.1 and originally removed only\naccounts that have no privileges. In MySQL 5.0.2, it was modified to also\nremove account privileges. This means that the procedure for removing an\naccount depends on your version of MySQL.\n\nAs of MySQL 5.0.2, remove an account and its privileges as follows:\n\nDROP USER user;\n\nThe statement removes privilege records for the account from all grant tables.\n\nFrom MySQL 4.1.1 to 5.0.1, DROP USER deletes only MySQL accounts that\ndon\'t have any privileges. In these MySQL versions, it serves only to remove\neach account record from the user table. To remove a MySQL account, you\nshould use the following procedure, performing the steps in the order shown:\n\n@enumerate\n --- Use SHOW GRANTS to determine what privileges the account has.\nSee also : [SHOW GRANTS, , SHOW GRANTS].\n --- Use REVOKE to revoke the privileges displayed by SHOW GRANTS.\nThis removes records for the account from all the grant tables except the\nuser table, and revokes any global privileges listed in the user\ntable.\nSee also : [GRANT, , GRANT].\n --- Delete the account by using DROP USER to remove the user table\nrecord.\n@end enumerate\n\nDROP USER does not automatically close any open user sessions. Rather, in\nthe event that a user with an open session is dropped, the command does not take\neffect until that user\'s session is closed. Once the session is closed, the user\nis dropped, and that user\'s next attempt to log in will fail. This is by design.\n\nBefore MySQL 4.1.1, DROP USER is not available. You should first\nrevoke the account privileges as just described. Then delete the user\ntable record and flush the grant tables like this:\n\nmysql> DELETE FROM mysql.user\n -> WHERE User=\'user_name\' and Host=\'host_name\';\nmysql> FLUSH PRIVILEGES;\n\n\n @subsubsection GRANT and REVOKE Syntax\n\n\n\n\nGRANT priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON {tbl_name | * | *.* | db_name.*}\n TO user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...\n [REQUIRE\n NONE |\n [{SSL| X509}]\n [CIPHER \'cipher\' [AND]]\n [ISSUER \'issuer\' [AND]]\n [SUBJECT \'subject\']]\n [WITH with_option [with_option] ...]\n\nwith_option =\n GRANT OPTION\n | MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n\nREVOKE priv_type [(column_list)] [, priv_type [(column_list)]] ...\n ON {tbl_name | * | *.* | db_name.*}\n FROM user [, user] ...\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\n\nThe GRANT and REVOKE statements allow system administrators to\ncreate MySQL user accounts and to grant rights to and revoke them from\naccounts. GRANT and REVOKE are implemented in MySQL 3.22.11\nor later. For earlier MySQL versions, these statements do nothing.\n\nMySQL account information is stored in the tables of the mysql\ndatabase. This database and the access control system are discussed\nextensively in [MySQL Database Administration], which you should consult\nfor additional details.\n\nIf the grant tables contain privilege records that contain mixed-case\ndatabase or table names and the lower_case_table_names system\nvariable is set, REVOKE cannot be used to revoke the privileges. It\nwill be necessary to manipulate the grant tables directly. (GRANT\nwill not create such records when lower_case_table_names is set,\nbut such records might have been created prior to setting the variable.)\n\nPrivileges can be granted at several levels:\n\n Global level\nGlobal privileges apply to all databases on a given server. These privileges\nare stored in the mysql.user table.\nGRANT ALL ON *.* and\nREVOKE ALL ON *.* grant and revoke only global privileges.\n\n Database level\nDatabase privileges apply to all objects in a given database. These privileges\nare stored in the mysql.db and mysql.host tables.\nGRANT ALL ON db_name.* and\nREVOKE ALL ON db_name.* grant and revoke only database privileges.\n\n Table level\nTable privileges apply to all columns in a given table. These privileges are\nstored in the mysql.tables_priv table.\nGRANT ALL ON db_name.tbl_name and\nREVOKE ALL ON db_name.tbl_name grant and revoke only table privileges.\n\n Column level\nColumn privileges apply to single columns in a given table. These privileges are\nstored in the mysql.columns_priv table.\nWhen using REVOKE, you must specify the same columns that were granted.\n\n Routine level\nThe CREATE ROUTINE, ALTER ROUTINE, EXECUTE, and\nGRANT privileges apply to stored routines. They can be granted at the\nglobal and database levels. Also, except for CREATE ROUTINE, these\nprivileges can be granted at the routine level for individual routines and\nare stored in the mysql.procs_priv table.\n\n \n','CREATE USER user [IDENTIFIED BY [PASSWORD] \'password\']\n [, user [IDENTIFIED BY [PASSWORD] \'password\']] ...',''),(56,'POINT',2,' Point(x,y)\nConstructs a WKB Point using its coordinates.\n','',''),(57,'CURRENT_USER',25,' CURRENT_USER()\nReturns the username and hostname combination that the current session was\nauthenticated as. This value corresponds to the MySQL account that\ndetermines your access privileges. It can be different from the value of\nUSER().\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'',''),(58,'LCASE',23,' LCASE(str)\n\nLCASE() is a synonym for LOWER().\n','',''),(59,'<=',26,' <=\nLess than or equal:\n','mysql> SELECT 0.1 <= 2;\n -> 1',''),(60,'UPDATE',6,'The UPDATE statement updates columns in existing table rows with\nnew values. The SET clause indicates which columns to modify\nand the values they should be given. The WHERE clause, if given,\nspecifies which rows should be updated. Otherwise, all rows are updated. If\nthe ORDER BY clause is specified, the rows are updated in the\norder that is specified. The LIMIT clause places a limit on the\nnumber of rows that can be updated.\n\nThe UPDATE statement supports the following modifiers:\n\n\n --- If you specify the LOW_PRIORITY keyword, execution of the\nUPDATE is delayed until no other clients are reading from the table.\n\n --- If you specify the IGNORE keyword, the update statement does not\nabort even if errors occur during the update. Rows for which duplicate-key\nconflicts occur are not updated. Rows for which columns are updated to\nvalues that would cause data conversion errors are updated to the closet\nvalid values instead.\n','UPDATE [LOW_PRIORITY] [IGNORE] tbl_name\n SET col_name1=expr1 [, col_name2=expr2 ...]\n [WHERE where_definition]\n [ORDER BY ...]\n [LIMIT row_count]',''),(61,'DROP INDEX',28,'DROP INDEX drops the index named index_name from the table\ntbl_name. In MySQL 3.22 or later, DROP INDEX is mapped to an\nALTER TABLE statement to drop the index. See also : [ALTER TABLE, ,\nALTER TABLE]. DROP INDEX doesn\'t do anything prior to MySQL\n3.22.\n','DROP INDEX index_name ON tbl_name',''),(62,'MATCH AGAINST',23,'As of MySQL 3.23.23, MySQL has support for full-text indexing\nand searching. A full-text index in MySQL is an index of type\nFULLTEXT. FULLTEXT indexes are used with MyISAM tables\nonly and can be created from CHAR, VARCHAR,\nor TEXT columns at CREATE TABLE time or added later with\nALTER TABLE or CREATE INDEX. For large datasets, it is\nmuch faster to load your data into a table that has no FULLTEXT\nindex, then create the index with ALTER TABLE (or\nCREATE INDEX). Loading data into a table that has an existing\nFULLTEXT index could be significantly slower.\n','mysql> SELECT id, body, MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\') AS score\n -> FROM articles WHERE MATCH (title,body) AGAINST\n -> (\'Security implications of running MySQL as root\');\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rows in set (0.00 sec)',''),(63,'ABS',4,' ABS(X)\nReturns the absolute value of X.\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32',''),(64,'POLYFROMWKB',13,' PolyFromWKB(wkb[,srid])\n PolygonFromWKB(wkb[,srid])\nConstructs a POLYGON value using its WKB representation and SRID.\n','',''),(65,'NOT LIKE',23,' expr NOT LIKE pat [ESCAPE \'escape-char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape-char\']).\n','',''),(66,'SPACE',23,' SPACE(N)\nReturns a string consisting of N space characters.\n','mysql> SELECT SPACE(6);\n -> \' \'',''),(67,'MBR DEFINITION',8,'Every geometry occupies some position in space. The exterior of\na geometry is all space not occupied by the geometry. The interior\nis the space occupied by the geometry. The boundary is the\ninterface between the geometry\'s interior and exterior.\n\n --- Its MBR (Minimum Bounding Rectangle), or Envelope.\nThis is the bounding geometry, formed by the minimum and maximum (X,Y)\ncoordinates:\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))',''),(68,'GEOMETRYCOLLECTION',2,' GeometryCollection(g1,g2,...)\nConstructs a WKB GeometryCollection. If any argument is not a\nwell-formed WKB representation of a geometry, the return value is\nNULL.\n','',''),(69,'*',4,' *\nMultiplication:\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> 0',''),(70,'TIMESTAMP',1,' TIMESTAMP[(M)]\n\nA timestamp. The range is \'1970-01-01 00:00:00\' to partway through the\nyear 2037.\n\nA TIMESTAMP column is useful for recording the date and time of an\nINSERT or UPDATE operation. The first TIMESTAMP column\nin a table is automatically set to the date and time of the most recent\noperation if you don\'t assign it a value yourself. You can also set any\nTIMESTAMP column to the current date and time by assigning it a\nNULL value.\n\nFrom MySQL 4.1 on, TIMESTAMP is returned as a string with the format\n\'YYYY-MM-DD HH:MM:SS\'. If you want to obtain the value as a number,\nyou should add +0 to the timestamp column. Different timestamp\ndisplay widths are not supported.\n\nIn MySQL 4.0 and earlier, TIMESTAMP values are displayed in\nYYYYMMDDHHMMSS, YYMMDDHHMMSS, YYYYMMDD, or YYMMDD\nformat, depending on whether M is 14 (or missing), 12,\n8, or 6, but allows you to assign values to TIMESTAMP\ncolumns using either strings or numbers.\nThe M argument affects only how a TIMESTAMP column is displayed,\nnot storage. Its values always are stored using four bytes each.\nFrom MySQL 4.0.12, the --new option can be used\nto make the server behave as in MySQL 4.1.\n\nNote that TIMESTAMP(M) columns where M is 8 or 14 are reported to\nbe numbers, whereas other TIMESTAMP(M) columns are reported to be\nstrings. This is just to ensure that you can reliably dump and restore\nthe table with these types.\n','',''),(71,'DES_DECRYPT',17,' DES_DECRYPT(crypt_str[,key_str])\n\nDecrypts a string encrypted with DES_ENCRYPT().\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. See also : [Secure connections].\n\nIf no key_str argument is given, DES_DECRYPT() examines\nthe first byte of the encrypted string to determine the DES key number\nthat was used to encrypt the original string, and then reads the key\nfrom the DES key file to decrypt the message. For this to work,\nthe user must have the SUPER privilege. The key file can be specified\nwith the --des-key-file server option.\n\nIf you pass this function a key_str argument, that string\nis used as the key for decrypting the message.\n\nIf the crypt_str argument doesn\'t look like an encrypted string,\nMySQL returns the given crypt_str.\n','',''),(72,'CHECKSUM',7,'\nReports a table checksum.\n\nIf QUICK is specified, the live table checksum is reported if it is\navailable, or NULL otherwise. This is very fast. A live checksum\nis enabled by specifying the CHECKSUM=1 table option, currently\nsupported only for MyISAM tables.\nSee also : [CREATE TABLE, , CREATE TABLE].\n\nIn EXTENDED mode the whole table is read row by row and the checksum\nis calculated. This can be very slow for large tables.\n\nBy default, if neither QUICK nor EXTENDED is specified, MySQL\nreturns a live checksum if the table storage engine supports it and scans\nthe table otherwise.\n\nCHECKSUM TABLE returns NULL for non-existent tables.\nAs of MySQL 5.0.3, a warning is generated for this condition.\n\nThis statement is implemented in MySQL 4.1.1.\n\n\n @subsubsection OPTIMIZE TABLE Syntax\n\n\n\n\nOPTIMIZE [LOCAL | NO_WRITE_TO_BINLOG] TABLE tbl_name [, tbl_name] ...\n\nOPTIMIZE TABLE should be used if you have deleted a large part of a\ntable or if you have made many changes to a table with variable-length rows\n(tables that have VARCHAR, BLOB, or TEXT columns).\nDeleted records are maintained in a linked list and subsequent INSERT\noperations reuse old record positions. You can use OPTIMIZE TABLE to\nreclaim the unused space and to defragment the data file.\n','CHECKSUM TABLE tbl_name [, tbl_name] ... [ QUICK | EXTENDED ]',''),(73,'ENDPOINT',18,' EndPoint(ls)\nReturns the Point that is the end point of the LineString value\nls.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(EndPoint(GeomFromText(@ls)));\n+-------------------------------------+\n| AsText(EndPoint(GeomFromText(@ls))) |\n+-------------------------------------+\n| POINT(3 3) |\n+-------------------------------------+',''),(74,'CACHE INDEX',6,'The CACHE INDEX statement assigns table indexes to a specific key\ncache. It is used only for MyISAM tables.\n\nThe following statement assigns indexes from the tables t1,\nt2, and t3 to the key cache named hot_cache:\n\nmysql> CACHE INDEX t1, t2, t3 IN hot_cache;\n+---------+--------------------+----------+----------+\n| Table | Op | Msg_type | Msg_text |\n+---------+--------------------+----------+----------+\n| test.t1 | assign_to_keycache | status | OK |\n| test.t2 | assign_to_keycache | status | OK |\n| test.t3 | assign_to_keycache | status | OK |\n+---------+--------------------+----------+----------+\n','CACHE INDEX\n tbl_index_list [, tbl_index_list] ...\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [[INDEX|KEY] (index_name[, index_name] ...)]',''),(75,'COMPRESS',23,' COMPRESS(string_to_compress)\nCompresses a string. This function requires MySQL to have been compiled\nwith a compression library such as zlib. Otherwise, the return\nvalue is always NULL. The compressed string can be uncompressed with\nUNCOMPRESS().\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n -> 21\nmysql> SELECT LENGTH(COMPRESS(\'\'));\n -> 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n -> 15',''),(76,'COUNT',12,' COUNT(expr)\nReturns a count of the number of non-NULL values in the rows\nretrieved by a SELECT statement.\n','mysql> SELECT student.student_name,COUNT(*)\n -> FROM student,course\n -> WHERE student.student_id=course.student_id\n -> GROUP BY student_name;',''),(77,'INSERT',23,' INSERT(str,pos,len,newstr)\nReturns the string str, with the substring beginning at position\npos and len characters long replaced by the string\nnewstr. Returns the original string if pos is not within\nthe length of the string. Replaces the rest of the string from position\npos is len is not within the length of the rest of the string.\nReturns NULL if any argument is null.\n','mysql> SELECT INSERT(\'Quadratic\', 3, 4, \'What\');\n -> \'QuWhattic\'\nmysql> SELECT INSERT(\'Quadratic\', -1, 4, \'What\');\n -> \'Quadratic\'\nmysql> SELECT INSERT(\'Quadratic\', 3, 100, \'What\');\n -> \'QuWhat\'',''),(78,'HANDLER',6,'The HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for MyISAM tables as MySQL 4.0.0 and\nInnoDB tables as of MySQL 4.0.3.\n','HANDLER tbl_name OPEN [ AS alias ]\nHANDLER tbl_name READ index_name { = | >= | <= | < } (value1,value2,...)\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ index_name { FIRST | NEXT | PREV | LAST }\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ { FIRST | NEXT }\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name CLOSE',''),(79,'MLINEFROMTEXT',3,' MLineFromText(wkt[,srid])\n MultiLineStringFromText(wkt[,srid])\nConstructs a MULTILINESTRING value using its WKT representation and SRID.\n','',''),(80,'GEOMCOLLFROMWKB',13,' GeomCollFromWKB(wkb[,srid])\n GeometryCollectionFromWKB(wkb[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKB representation and SRID.\n','',''),(81,'RENAME TABLE',28,'RENAME TABLE tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nThis statement renames one or more tables. It was added in MySQL 3.23.23.\n\nThe rename operation is done atomically, which means that no other thread\ncan access any of the tables while the rename is running. For example,\nif you have an existing table old_table, you can create another\ntable new_table that has the same structure but is empty, and then\nreplace the existing table with the empty one as follows:\n','CREATE TABLE new_table (...);\nRENAME TABLE old_table TO backup_table, new_table TO old_table;',''),(82,'BOOLEAN',1,' BOOL\n BOOLEAN\nThese are synonyms for TINYINT(1).\nThe BOOLEAN synonym was added in MySQL 4.1.0.\nA value of zero is considered false. Non-zero values are considered true.\n\nIn the future,\nfull boolean type handling will be introduced in accordance with standard SQL.\n','',''),(83,'DEFAULT',21,' DEFAULT(col_name)\nReturns the default value for a table column.\nStarting from MySQL 5.0.2, you get an error if the column doesn\'t have\na default value.\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;',''),(84,'TINYTEXT',1,' TINYTEXT\n\nA TEXT column with a maximum length of 255\n(2^8 - 1) characters.\n','',''),(85,'DECODE',17,' DECODE(crypt_str,pass_str)\nDecrypts the encrypted string crypt_str using pass_str as the\npassword. crypt_str should be a string returned from\nENCODE().\n','',''),(86,'<=>',26,' <=>\nNULL-safe equal.\nThis operator performs an equality comparison like the = operator, but\nreturns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> 1, NULL, NULL',''),(87,'LOAD DATA FROM MASTER',6,'LOAD DATA FROM MASTER\n\nTakes a snapshot of the master and copies it to the slave. It updates the\nvalues of MASTER_LOG_FILE and MASTER_LOG_POS so that the slave\nstarts replicating from the correct position. Any table and database\nexclusion rules specified with the --replicate-*-do-* and\n--replicate-*-ignore-* options are honored.\n--replicate-rewrite-db is /not/ taken into account (because one user\ncould, with this option, set up a non-unique mapping such as\n--replicate-rewrite-db=db1->db3 and\n--replicate-rewrite-db=db2->db3, which would confuse the slave when\nit loads the master\'s tables).\n\nUse of this statement is subject to the following conditions:\n\n\n --- It works only with MyISAM tables.\n\n --- It acquires a global read lock on the master while taking the snapshot,\nwhich prevents updates on the master during the load operation.\n\n\nIn the future, it is planned to make this statement work with\nInnoDB tables and to remove the need for a global read lock by using\nnon-blocking online backup.\n\nIf you are loading big tables, you might have to increase the values\nof net_read_timeout and net_write_timeout\non both your master and slave servers.\nSee also : [Server system variables].\n\nNote that LOAD DATA FROM MASTER does /not/ copy any\ntables from the mysql database. This makes it easy to have\ndifferent users and privileges on the master and the slave.\n\nThe LOAD DATA FROM MASTER statement\nrequires the replication account that is used to connect to the master\nto have the RELOAD and SUPER privileges on the master and the\nSELECT privilege for all master tables you want to load. All\nmaster tables for which the user does not have the SELECT privilege are\nignored by LOAD DATA FROM MASTER. This is because the\nmaster hides them from the user: LOAD DATA FROM MASTER calls\nSHOW DATABASES to know the master databases to load, but\nSHOW DATABASES returns only databases for which the user has\nsome privilege.\nSee [SHOW DATABASES, , SHOW DATABASES].\nOn the slave\'s side, the user that issues LOAD DATA FROM MASTER should\nhave grants to drop and create the databases and tables that are copied.\n','',''),(88,'RESET',6,'The RESET statement is used to clear the state of various server\noperations. It also acts as a stronger\nversion of the FLUSH statement. See also : [FLUSH, , FLUSH].\n','RESET reset_option [, reset_option] ...',''),(89,'GET_LOCK',21,' GET_LOCK(str,timeout)\nTries to obtain a lock with a name given by the string str, with a\ntimeout of timeout seconds. Returns 1 if the lock was obtained\nsuccessfully, 0 if the attempt timed out (for example, because another\nclient has previously locked the name), or NULL if an error\noccurred (such as running out of memory or the thread was killed with\nmysqladmin kill). If you have a lock obtained with GET_LOCK(),\nit is released when you execute\nRELEASE_LOCK(), execute a new GET_LOCK(), or your connection\nterminates (either normally or abnormally).\n\nThis function can be used to implement application locks or to\nsimulate record locks. Names are locked on a server-wide basis.\nIf a name has been locked by one client, GET_LOCK() blocks\nany request by another client for a lock with the same name. This\nallows clients that agree on a given lock name to use the name to\nperform cooperative advisory locking.\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL',''),(90,'UCASE',23,' UCASE(str)\n\nUCASE() is a synonym for UPPER().\n','',''),(91,'MPOLYFROMWKB',13,' MPolyFromWKB(wkb[,srid])\n MultiPolygonFromWKB(wkb[,srid])\nConstructs a MULTIPOLYGON value using its WKB representation and SRID.\n','',''),(92,'DO',6,'DO executes the expressions but doesn\'t return any results. This is\nshorthand for SELECT expr, ..., but has the advantage that it\'s\nslightly faster when you don\'t care about the result.\n\nDO is useful mainly with functions that have side effects, such as\nRELEASE_LOCK().\n','DO expr [, expr] ...',''),(93,'CURTIME',14,' CURTIME()\n\nReturns the current time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026',''),(94,'BIGINT',1,' BIGINT[(M)] [UNSIGNED] [ZEROFILL]\nA large integer. The signed range is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to\n18446744073709551615.\n','',''),(95,'CHAR_LENGTH',23,' CHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters.\nA multi-byte character counts as a single character.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','',''),(96,'SET',6,'SET sets different types of variables that affect the operation of the\nserver or your client. It can be used to assign values to user variables or\nsystem variables.\n','SET variable_assignment [, variable_assignment] ...\n\nvariable_assignment:\n user_var_name = expr\n | [GLOBAL | SESSION] system_var_name = expr\n | @@[global. | session.]system_var_name = expr',''),(97,'DATE',1,'A date. The supported range is \'1000-01-01\' to \'9999-12-31\'.\nMySQL displays DATE values in \'YYYY-MM-DD\' format, but\nallows you to assign values to DATE columns using either strings or\nnumbers.\n','',''),(98,'CONV',23,' CONV(N,from_base,to_base)\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base\nto base to_base. Returns NULL if any argument is NULL.\nThe argument N is interpreted as an integer, but may be specified as\nan integer or a string. The minimum base is 2 and the maximum base is\n36. If to_base is a negative number, N is regarded as a\nsigned number. Otherwise, N is treated as unsigned. CONV() works\nwith 64-bit precision.\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-H\'\nmysql> SELECT CONV(10+\'10\'+\'10\'+0xa,10,10);\n -> \'40\'',''),(99,'EXTRACT',14,' EXTRACT(type FROM date)\n\nThe EXTRACT() function uses the same kinds of interval type\nspecifiers as DATE_ADD() or DATE_SUB(), but extracts parts\nfrom the date rather than performing date arithmetic.\n','mysql> SELECT EXTRACT(YEAR FROM \'1999-07-02\');\n -> 1999\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'1999-07-02 01:02:03\');\n -> 199907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'1999-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.00123\');\n -> 123',''),(100,'ENCRYPT',17,' ENCRYPT(str[,salt])\nEncrypt str using the Unix crypt() system call. The\nsalt argument should be a string with two characters.\n(As of MySQL 3.22.16, salt may be longer than two characters.)\nIf no salt argument is given, a random value is used.\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'',''),(101,'OLD_PASSWORD',17,' OLD_PASSWORD(str)\n\nOLD_PASSWORD() is available as of MySQL 4.1, when the implementation of\nPASSWORD() was changed to improve security. OLD_PASSWORD()\nreturns the value of the pre-4.1 implementation of PASSWORD().\n[Password hashing].\n\n PASSWORD(str)\nCalculates and returns a password string from the plaintext password\nstr, or NULL if the argument was NULL. This is\nthe function that is used for encrypting MySQL passwords for storage\nin the Password column of the user grant table.\n','',''),(102,'FORMAT',21,' FORMAT(X,D)\nFormats the number X to a format like \'#,###,###.##\', rounded\nto D decimals, and returns the result as a string.\nIf D is 0, the result has no\ndecimal point or fractional part.\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'',''),(103,'||',20,' OR\n ||\nLogical OR.\nWhen both operands are non-NULL, the result is 1 if any\noperand is non-zero, and 0 otherwise. With a NULL operand,\nthe result is 1 if the other operand is non-zero, and NULL\notherwise. If both operands are NULL, the result is NULL.\n','mysql> SELECT 1 || 1;\n -> 1\nmysql> SELECT 1 || 0;\n -> 1\nmysql> SELECT 0 || 0;\n -> 0\nmysql> SELECT 0 || NULL;\n -> NULL\nmysql> SELECT 1 || NULL;\n -> 1',''),(104,'CASE',9,' CASE value WHEN [compare-value] THEN result [WHEN [compare-value] THEN result ...] [ELSE result] END\n CASE WHEN [condition] THEN result [WHEN [condition] THEN result ...] [ELSE result] END\n\nThe first version returns the result where\nvalue=compare-value. The second version returns the result for\nthe first condition that is true. If there was no matching result\nvalue, the result after ELSE is returned, or NULL if there is no\nELSE part.\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL',''),(105,'BIT_LENGTH',23,' BIT_LENGTH(str)\nReturns the length of the string str in bits.\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32',''),(106,'EXTERIORRING',0,' ExteriorRing(poly)\nReturns the exterior ring of the Polygon value poly\nas a LineString.\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT AsText(ExteriorRing(GeomFromText(@poly)));\n+-------------------------------------------+\n| AsText(ExteriorRing(GeomFromText(@poly))) |\n+-------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+-------------------------------------------+',''),(107,'GEOMFROMWKB',13,' GeomFromWKB(wkb[,srid])\n GeometryFromWKB(wkb[,srid])\nConstructs a geometry value of any type using its WKB representation and SRID.\n','',''),(108,'SHOW SLAVE HOSTS',6,'SHOW SLAVE HOSTS\n\nDisplays a list of slaves currently registered with the master.\nAny slave not started with the --report-host=slave_name\noption is not visible in that list.\n','',''),(109,'START TRANSACTION',10,'By default, MySQL runs with autocommit mode enabled. This means that\nas soon as you execute a statement that updates (modifies) a table,\nMySQL stores the update on disk.\n\nIf you are using transaction-safe tables (like InnoDB or BDB),\nyou can disable autocommit mode with the following statement:\n\nSET AUTOCOMMIT=0;\n\nAfter disabling autocommit mode by setting the AUTOCOMMIT variable to\nzero, you must use COMMIT to store your changes to disk or\nROLLBACK if you want to ignore the changes you have made since\nthe beginning of your transaction.\n\nIf you want to disable autocommit mode for a single series of\nstatements, you can use the START TRANSACTION statement:\n','START TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;',''),(110,'BETWEEN AND',26,' expr BETWEEN min AND max\nIf expr is greater than or equal to min and expr is\nless than or equal to max, BETWEEN returns 1,\notherwise it returns 0. This is equivalent to the expression\n(min <= expr AND expr <= max) if all the arguments are of the\nsame type. Otherwise type conversion takes place according to the rules\ndescribed at the beginning of this section, but applied to all the three\narguments. Note: Before MySQL\n4.0.5, arguments were converted to the type of expr instead.\n','mysql> SELECT 1 BETWEEN 2 AND 3;\n -> 0\nmysql> SELECT \'b\' BETWEEN \'a\' AND \'c\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'3\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'x-3\';\n -> 0',''),(111,'MULTIPOLYGON',2,' MultiPolygon(poly1,poly2,...)\nConstructs a WKB MultiPolygon value from a set of WKB Polygon\narguments.\nIf any argument is not a WKB Polygon, the return value is NULL.\n','',''),(112,'TIME_FORMAT',14,' TIME_FORMAT(time,format)\nThis is used like the DATE_FORMAT() function, but the\nformat string may contain only those format specifiers that handle\nhours, minutes, and seconds. Other specifiers produce a NULL value or\n0.\n','',''),(113,'LEFT',23,' LEFT(str,len)\nReturns the leftmost len characters from the string str.\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'',''),(114,'FLUSH QUERY CACHE',7,'You can defragment the query cache to better utilize its memory\nwith the FLUSH QUERY CACHE statement.\nThe statement does not remove any queries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n','',''),(115,'RAND',4,' RAND()\n RAND(N)\nReturns a random floating-point value in the range from 0 to 1.0.\nIf an integer argument N is specified, it is used as the seed value\n(producing a repeatable sequence).\n','mysql> SELECT RAND();\n -> 0.9233482386203\nmysql> SELECT RAND(20);\n -> 0.15888261251047\nmysql> SELECT RAND(20);\n -> 0.15888261251047\nmysql> SELECT RAND();\n -> 0.63553050033332\nmysql> SELECT RAND();\n -> 0.70100469486881',''),(116,'RPAD',23,' RPAD(str,len,padstr)\nReturns the string str, right-padded with the string padstr\nto a length of len characters. If str is longer\nthan len, the return value is shortened to len characters.\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'',''),(117,'INSERT INTO',6,'INSERT inserts new rows into an existing table. The INSERT ...\nVALUES and INSERT ... SET forms of the statement insert rows based\non explicitly specified values. The INSERT ... SELECT form inserts\nrows selected from another table or tables. The INSERT ... VALUES\nform with multiple value lists is supported in MySQL 3.22.5 or\nlater. The INSERT ... SET syntax is supported in MySQL\n3.22.10 or later.\nINSERT ... SELECT is discussed further in\nSee also : [INSERT SELECT, , INSERT SELECT].\n','INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n VALUES ({expr | DEFAULT},...),(...),...\n [ ON DUPLICATE KEY UPDATE col_name=expr, ... ]',''),(118,'RESTORE',7,'\nRESTORE TABLE tbl_name [, tbl_name] ... FROM \'/path/to/backup/directory\'\n\nRestores the table or tables from a backup that was made with BACKUP\nTABLE. Existing tables are not overwritten; if you try to restore over\nan existing table, you get an error. Just as BACKUP TABLE,\nRESTORE TABLE currently works only for MyISAM tables.\nThe directory should be specified as a full pathname.\n\nThe backup for each table consists of its *.frm format file and\n*.MYD data file. The restore operation restores those files, then\nuses them to rebuild the *.MYI index file. Restoring takes longer\nthan backing up due to the need to rebuild the indexes. The more indexes the\ntable has, the longer it takes.\n','',''),(119,'CREATE DATABASE',28,'CREATE DATABASE creates a database with the given name. To use\nCREATE DATABASE, you need the CREATE privilege on the database.\n','CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_specification [, create_specification] ...]\n\ncreate_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(120,'VAR_POP',12,' VAR_POP(expr)\nReturns the population standard variance of expr. It considers rows\nas the whole population, not as a sample, so it has the number of rows as\nthe denominator. This function was added in MySQL 5.0.3. Before 5.0.3, you\ncan use VARIANCE(), which is equivalent but not standard SQL.\n','',''),(121,'ELT',23,' ELT(N,str1,str2,str3,...)\nReturns str1 if N = 1, str2 if N =\n2, and so on. Returns NULL if N is less than 1\nor greater than the number of arguments. ELT() is the complement of\nFIELD().\n','mysql> SELECT ELT(1, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'ej\'\nmysql> SELECT ELT(4, \'ej\', \'Heja\', \'hej\', \'foo\');\n -> \'foo\'',''),(122,'ALTER VIEW',24,'This statement changes the definition of an existing view.\nThe syntax is similar to that for CREATE VIEW.\nSee also : [CREATE VIEW, , CREATE VIEW].\nThis statement requires the CREATE VIEW and DELETE privileges\nfor the view, and some privilege for each column referred to in the\nSELECT statement.\n','ALTER [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(123,'~',27,' ~\nInvert all bits.\n','mysql> SELECT 5 & ~1;\n -> 4',''),(124,'CONCAT_WS',23,' CONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for CONCAT With Separator and is a special form of\nCONCAT(). The first argument is the separator for the rest of the\narguments.\nThe separator is added between the strings to be concatenated.\nThe separator can be a string as can the rest of the\narguments. If the separator is NULL, the result is NULL.\nThe function skips any NULL values after the\nseparator argument.\n','mysql> SELECT CONCAT_WS(\',\',\'First name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'',''),(125,'ROW_COUNT',25,' ROW_COUNT()\n\nROW_COUNT() returns the number of rows updated, inserted, or deleted\nby the preceding statement. This is the same as the row count that the\nmysql client displays and the value from the\nmysql_affected_rows() C API function.\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)',''),(126,'ASIN',4,' ASIN(X)\nReturns the arc sine of X, that is, the value whose sine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ASIN(0.2);\n -> 0.201358\nmysql> SELECT ASIN(\'foo\');\n -> 0.000000',''),(127,'FUNCTION',22,'A user-defined function (UDF) is a way to extend MySQL with a new\nfunction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. shared_library_name is the basename of the\nshared object file that contains the code that implements the function. The\nfile must be located in a directory that is searched by your system\'s\ndynamic linker.\n\nTo create a function, you must have the INSERT and privilege for the\nmysql database. To drop a function, you must have the DELETE\nprivilege for the mysql database. This is because CREATE\nFUNCTION adds a row to the mysql.func system table that records the\nfunction\'s name, type, and shared library name, and DROP FUNCTION\ndeletes the function\'s row from that table. If you do not have this table,\nyou should run the mysql_fix_privilege_tables script to create it.\nSee also : [Upgrading-grant-tables].\n','CREATE [AGGREGATE] FUNCTION function_name RETURNS {STRING|INTEGER|REAL}\n SONAME shared_library_name\n\nDROP FUNCTION function_name',''),(128,'SIGN',4,' SIGN(X)\nReturns the sign of the argument as -1, 0, or 1, depending\non whether X is negative, zero, or positive.\n','mysql> SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1',''),(129,'SEC_TO_TIME',14,' SEC_TO_TIME(seconds)\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a value in \'HH:MM:SS\' or HHMMSS format, depending on whether\nthe function is used in a string or numeric context.\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938',''),(130,'YEAR TYPE',1,' YEAR[(2|4)]\n\nA year in two-digit or four-digit format. The default is four-digit format.\nIn four-digit format, the\nallowable values are 1901 to 2155, and 0000.\nIn two-digit format, the allowable values are\n70 to 69, representing years from\n1970 to 2069. MySQL displays YEAR values in\nYYYY format, but allows you to assign values to YEAR columns\nusing either strings or numbers. The YEAR type is unavailable prior\nto MySQL 3.22.\n','',''),(131,'FLOAT',1,' FLOAT(p) [UNSIGNED] [ZEROFILL]\n\nA floating-point number. p represents the precision. It can be from\n0 to 24 for a single-precision floating-point number and from 25 to 53 for a\ndouble-precision floating-point number. These types are like the FLOAT\nand DOUBLE types described immediately following. FLOAT(p)\nhas the same range as the corresponding FLOAT and DOUBLE\ntypes, but the display width and number of decimals are undefined.\n\nAs of MySQL 3.23, this is a true floating-point value. In\nearlier MySQL versions, FLOAT(p) always has two decimals.\n\nThis syntax is provided for ODBC compatibility.\n\nUsing FLOAT might give you some unexpected problems because\nall calculations in MySQL are done with double precision.\nSee also : [No matching rows].\n\n FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA small (single-precision) floating-point number. Allowable values are\n-3.402823466E+38 to -1.175494351E-38, 0,\nand 1.175494351E-38 to 3.402823466E+38. If UNSIGNED is\nspecified, negative values are disallowed. M is the display width and\nD is the number of significant digits. FLOAT without arguments or\nFLOAT(p) (where p is in the range from 0 to 24) stands for a\nsingle-precision floating-point number.\n','',''),(132,'LOCATE',23,' LOCATE(substr,str)\n LOCATE(substr,str,pos)\n\nThe first syntax\nreturns the position of the first occurrence of substring substr\nin string str.\nThe second syntax\nreturns the position of the first occurrence of substring substr in\nstring str, starting at position pos.\nReturns 0 if substr is not in str.\n','',''),(133,'CHARSET',25,' CHARSET(str)\nReturns the character set of the string argument.\n','mysql> SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'',''),(134,'PURGE MASTER LOGS BEFORE TO',6,'PURGE {MASTER | BINARY} LOGS TO \'log_name\'\nPURGE {MASTER | BINARY} LOGS BEFORE \'date\'\n\nDeletes all the binary logs listed in the log\nindex that are strictly prior to the specified log or date.\nThe logs also are removed from the list recorded in the log index file,\nso that the given log becomes the first.\n','',''),(135,'SUBDATE',14,' SUBDATE(date,INTERVAL expr type)\n SUBDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nSUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT SUBDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be\nsubtracted from expr.\n\nmysql> SELECT SUBDATE(\'1998-01-02 12:00:00\', 31);\n -> \'1997-12-02 12:00:00\'\n','',''),(136,'DAYOFYEAR',14,' DAYOFYEAR(date)\nReturns the day of the year for date, in the range 1 to\n366.\n','mysql> SELECT DAYOFYEAR(\'1998-02-03\');\n -> 34',''),(137,'%',4,' MOD(N,M)\n N % M\n N MOD M\nModulo operation.\nReturns the remainder of N divided by M.\n','mysql> SELECT MOD(234, 10);\n -> 4\nmysql> SELECT 253 % 7;\n -> 1\nmysql> SELECT MOD(29,9);\n -> 2\nmysql> SELECT 29 MOD 9;\n -> 2',''),(138,'LONGTEXT',1,' LONGTEXT\n\nA TEXT column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) characters. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGTEXT columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(139,'DISJOINT',11,' Disjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially disjoint\nfrom (does not intersect) g2.\n','',''),(140,'KILL',6,'Each connection to mysqld runs in a separate thread. You can see\nwhich threads are running with the SHOW PROCESSLIST statement and kill\na thread with the KILL thread_id statement.\n\nAs of MySQL 5.0.0, KILL allows the optional CONNECTION or\nQUERY modifiers:\n\n\n --- KILL CONNECTION is the same as KILL with no modifier:\nIt terminates the connection associated with the given thread_id.\n\n --- KILL QUERY terminates the statement that the connection currently\nis executing, but leaves the connection intact.\n\n\nIf you have the PROCESS privilege, you can see all threads.\nIf you have the SUPER privilege, you can kill all threads and\nstatements. Otherwise, you can see and kill only your own threads and\nstatements.\n\nYou can also use the mysqladmin processlist and mysqladmin kill\ncommands to examine and kill threads.\n\nNote: You currently cannot use KILL with the Embedded MySQL\nServer library, because the embedded server merely runs inside the threads\nof the host application, it does not create connection threads of its own.\n','KILL [CONNECTION | QUERY] thread_id',''),(141,'ASTEXT',3,' AsText(g)\nConverts a value in internal geometry format to its WKT representation\nand returns the string result.\n','mysql> SELECT AsText(g) FROM geom;\n+-------------------------+\n| AsText(p1) |\n+-------------------------+\n| POINT(1 1) |\n| LINESTRING(0 0,1 1,2 2) |\n+-------------------------+',''),(142,'LPAD',23,' LPAD(str,len,padstr)\nReturns the string str, left-padded with the string padstr\nto a length of len characters. If str is longer\nthan len, the return value is shortened to len characters.\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'',''),(143,'OVERLAPS',11,' Overlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially overlaps\ng2.\nThe term /spatially overlaps/ is used if two\ngeometries intersect and their intersection results in a geometry of the\nsame dimension but not equal to either of the given geometries.\n','',''),(144,'NUMGEOMETRIES',5,' NumGeometries(gc)\nReturns the number of geometries in the GeometryCollection value\ngc.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT NumGeometries(GeomFromText(@gc));\n+----------------------------------+\n| NumGeometries(GeomFromText(@gc)) |\n+----------------------------------+\n| 2 |\n+----------------------------------+',''),(145,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER',7,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER = n\n\nSkip the next n events from the master. This is\nuseful for recovering from replication stops caused by a statement.\n\nThis statement is valid only when the slave thread is not running.\nOtherwise, it produces an error.\n\nBefore MySQL 4.0, omit the GLOBAL keyword from the statement.\n','',''),(146,'MONTHNAME',14,' MONTHNAME(date)\nReturns the full name of the month for date.\n','mysql> SELECT MONTHNAME(\'1998-02-05\');\n -> \'February\'',''),(147,'MBREQUAL',8,' MBREqual(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are the same.\n','',''),(148,'CHANGE MASTER TO',6,'\nCHANGE MASTER TO master_def [, master_def] ...\n\nmaster_def:\n MASTER_HOST = \'host_name\'\n | MASTER_USER = \'user_name\'\n | MASTER_PASSWORD = \'password\'\n | MASTER_PORT = port_num\n | MASTER_CONNECT_RETRY = count\n | MASTER_LOG_FILE = \'master_log_name\'\n | MASTER_LOG_POS = master_log_pos\n | RELAY_LOG_FILE = \'relay_log_name\'\n | RELAY_LOG_POS = relay_log_pos\n | MASTER_SSL = {0|1}\n | MASTER_SSL_CA = \'ca_file_name\'\n | MASTER_SSL_CAPATH = \'ca_directory_name\'\n | MASTER_SSL_CERT = \'cert_file_name\'\n | MASTER_SSL_KEY = \'key_file_name\'\n | MASTER_SSL_CIPHER = \'cipher_list\'\n\nChanges the parameters that the slave server uses for connecting to and\ncommunicating with the master server.\n\nMASTER_USER, MASTER_PASSWORD, MASTER_SSL,\nMASTER_SSL_CA, MASTER_SSL_CAPATH, MASTER_SSL_CERT,\nMASTER_SSL_KEY, and MASTER_SSL_CIPHER provide information for\nthe slave about how to connect to its master.\n\nThe relay log options (RELAY_LOG_FILE and RELAY_LOG_POS) are\navailable beginning with MySQL 4.0.\n\nThe SSL options\n(MASTER_SSL,\nMASTER_SSL_CA,\nMASTER_SSL_CAPATH,\nMASTER_SSL_CERT,\nMASTER_SSL_KEY,\nand\nMASTER_SSL_CIPHER)\nare available beginning with MySQL 4.1.1.\nYou can change these options even on slaves that are compiled without SSL\nsupport. They are saved to the *master.info file, but are ignored\nuntil you use a server that has SSL support enabled.\n\nIf you don\'t specify a given parameter, it keeps its old\nvalue, except as indicated in the following discussion. For example, if the password to connect to your MySQL master has\nchanged, you just need to issue these statements\nto tell the slave about the new password:\n\nmysql> STOP SLAVE; -- if replication was running\nmysql> CHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nmysql> START SLAVE; -- if you want to restart replication\n\nThere is no need to specify the parameters that do\nnot change (host, port, user, and so forth).\n\nMASTER_HOST and MASTER_PORT are the hostname (or IP address) of\nthe master host and its TCP/IP port. Note that if MASTER_HOST is\nequal to localhost, then, like in other parts of MySQL, the port\nmay be ignored (if Unix socket files can be used, for example).\n\nIf you specify MASTER_HOST or MASTER_PORT,\nthe slave assumes that the master server is different than\nbefore (even if you specify a host or port value that is\nthe same as the current value.) In this case, the old values for the master\nbinary log name and position are considered no longer applicable, so if you\ndo not specify MASTER_LOG_FILE and MASTER_LOG_POS in the\nstatement, MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are\nsilently appended to it.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates\nat which the slave I/O thread should begin reading from the master the\nnext time the thread starts.\nIf you specify either of them, you can\'t specify RELAY_LOG_FILE or\nRELAY_LOG_POS.\nIf neither of MASTER_LOG_FILE or MASTER_LOG_POS are\nspecified, the slave uses the last coordinates of the /slave SQL thread/\nbefore CHANGE MASTER was issued. This ensures that\nreplication has no discontinuity, even if the slave SQL thread was late\ncompared to the slave I/O thread, when you just want to change, say, the\npassword to use. This safe behavior was introduced starting from MySQL\n4.0.17 and 4.1.1. (Before these versions, the coordinates used were\nthe last coordinates of the slave I/O thread before CHANGE MASTER\nwas issued. This caused the SQL thread to possibly lose some events\nfrom the master, thus breaking replication.)\n\nCHANGE MASTER /deletes all relay log files/ and starts\na new one, unless you specify RELAY_LOG_FILE or\nRELAY_LOG_POS. In that case, relay logs are kept;\nas of MySQL 4.1.1 the relay_log_purge global variable\nis set silently to 0.\n\nCHANGE MASTER TO updates the contents of the *master.info and\n*relay-log.info files.\n\nCHANGE MASTER is useful for setting up a slave when you have\nthe snapshot of the master and have recorded the log and the offset\ncorresponding to it. After loading the snapshot into the slave, you\ncan run CHANGE MASTER TO MASTER_LOG_FILE=\'log_name_on_master\',\nMASTER_LOG_POS=log_offset_on_master on the slave.\n\nExamples:\n\nmysql> CHANGE MASTER TO\n -> MASTER_HOST=\'master2.mycompany.com\',\n -> MASTER_USER=\'replication\',\n -> MASTER_PASSWORD=\'bigs3cret\',\n -> MASTER_PORT=3306,\n -> MASTER_LOG_FILE=\'master2-bin.001\',\n -> MASTER_LOG_POS=4,\n -> MASTER_CONNECT_RETRY=10;\n\nmysql> CHANGE MASTER TO\n -> RELAY_LOG_FILE=\'slave-relay-bin.006\',\n -> RELAY_LOG_POS=4025;\n','',''),(149,'DROP DATABASE',28,'DROP DATABASE drops all tables in the database and deletes the\ndatabase. Be /very/ careful with this statement!\nTo use DROP DATABASE, you need the DROP privilege on the\ndatabase.\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring if the database doesn\'t exist.\n\nDROP SCHEMA can be used as of MySQL 5.0.2.\n','DROP {DATABASE | SCHEMA} [IF EXISTS] db_name',''),(150,'TIMESTAMP FUNCTION',14,' TIMESTAMP(expr)\n TIMESTAMP(expr,expr2)\n\nWith one argument, returns the date or datetime expression expr\nas a datetime value.\nWith two arguments, adds the time expression expr2 to the\ndate or datetime expression expr and returns a datetime value.\n','mysql> SELECT TIMESTAMP(\'2003-12-31\');\n -> \'2003-12-31 00:00:00\'\nmysql> SELECT TIMESTAMP(\'2003-12-31 12:00:00\',\'12:00:00\');\n -> \'2004-01-01 00:00:00\'',''),(151,'CHARACTER_LENGTH',23,' CHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n','',''),(152,'CREATE VIEW ALGORITHM MERGE TEMPTABLE WITH CHECK OPTION',24,'','CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]',''),(153,'TIMESTAMPDIFF FUNCTION',14,'','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1',''),(154,'CRC32',4,' CRC32(expr)\nComputes a cyclic redundancy check value and returns a 32-bit unsigned value.\nThe result is NULL if the argument is NULL.\nThe argument is expected be a string and is treated as one if it is not.\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556',''),(155,'XOR',20,' XOR\nLogical XOR.\nReturns NULL if either operand is NULL.\nFor non-NULL operands, evaluates to 1 if an odd number\nof operands is non-zero,\notherwise 0 is returned.\n','mysql> SELECT 1 XOR 1;\n -> 0\nmysql> SELECT 1 XOR 0;\n -> 1\nmysql> SELECT 1 XOR NULL;\n -> NULL\nmysql> SELECT 1 XOR 1 XOR 1;\n -> 1',''),(156,'STARTPOINT',18,' StartPoint(ls)\nReturns the Point that is the start point of the LineString value\nls.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(StartPoint(GeomFromText(@ls)));\n+---------------------------------------+\n| AsText(StartPoint(GeomFromText(@ls))) |\n+---------------------------------------+\n| POINT(1 1) |\n+---------------------------------------+',''),(157,'MPOLYFROMTEXT',3,' MPolyFromText(wkt[,srid])\n MultiPolygonFromText(wkt[,srid])\nConstructs a MULTIPOLYGON value using its WKT representation and SRID.\n','',''),(158,'MBRINTERSECTS',8,' MBRIntersects(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 intersect.\n','',''),(159,'BIT_OR',12,' BIT_OR(expr)\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(160,'YEARWEEK',14,' YEARWEEK(date)\n YEARWEEK(date,start)\nReturns year and week for a date. The start argument works exactly\nlike the start argument to WEEK(). The year in the\nresult may be\ndifferent from the year in the date argument for the first and the last\nweek of the year.\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198653',''),(161,'NOT BETWEEN',26,' expr NOT BETWEEN min AND max\nThis is the same as NOT (expr BETWEEN min AND max).\n','',''),(162,'LOG10',4,' LOG10(X)\nReturns the base-10 logarithm of X.\n','mysql> SELECT LOG10(2);\n -> 0.301030\nmysql> SELECT LOG10(100);\n -> 2.000000\nmysql> SELECT LOG10(-100);\n -> NULL',''),(163,'SQRT',4,' SQRT(X)\nReturns the non-negative square root of X.\n','mysql> SELECT SQRT(4);\n -> 2.000000\nmysql> SELECT SQRT(20);\n -> 4.472136',''),(164,'DECIMAL',1,' DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\n\nFor MySQL 5.0.3 and above:\n\nA packed ``exact\'\' fixed-point number. M is the total number of\ndigits and D is the number of decimals. The decimal point and\n(for negative numbers) the \'-\' sign are not counted in M.\nIf D is 0, values have no\ndecimal point or fractional part. The maximum number of digits\n(M) for DECIMAL is 64. The maximum number of supported\ndecimals (D) is 30. If UNSIGNED is specified, negative\nvalues are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are\ndone with a precision of 64 decimal digits.\n\nBefore MySQL 5.0.3:\n\nAn unpacked fixed-point number. Behaves like a CHAR column;\n``unpacked\'\' means the number is stored as a string, using one character for\neach digit of the value. M is the total number of digits and\nD is the number of decimals. The decimal point and (for negative\nnumbers) the \'-\' sign are not counted in M, although space for\nthem is reserved. If D is 0, values have no decimal point or\nfractional part. The maximum range of DECIMAL values is the same as\nfor DOUBLE, but the actual range for a given DECIMAL column\nmay be constrained by the choice of M and D. If\nUNSIGNED is specified, negative values are disallowed.\n\nIf D is omitted, the default is 0. If M is omitted, the\ndefault is 10.\n\nBefore MySQL 3.23:\n\nAs just described, with the exception that the M value must be large\nenough to include the space needed for the sign and the decimal point\ncharacters.\n\n DEC[(M[,D])] [UNSIGNED] [ZEROFILL]\n NUMERIC[(M[,D])] [UNSIGNED] [ZEROFILL]\n FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DECIMAL. The FIXED synonym was added\nin MySQL 4.1.0 for compatibility with other servers.\n','',''),(165,'GEOMETRYN',5,' GeometryN(gc,n)\nReturns the n-th geometry in the GeometryCollection value\ngc. Geometry numbers begin at 1.\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT AsText(GeometryN(GeomFromText(@gc),1));\n+----------------------------------------+\n| AsText(GeometryN(GeomFromText(@gc),1)) |\n+----------------------------------------+\n| POINT(1 1) |\n+----------------------------------------+',''),(166,'CREATE INDEX',28,'In MySQL 3.22 or later, CREATE INDEX is mapped to an\nALTER TABLE statement to create indexes.\nSee also : [ALTER TABLE, , ALTER TABLE].\nThe CREATE INDEX statement doesn\'t do anything prior\nto MySQL 3.22.\n','CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name\n [USING index_type]\n ON tbl_name (index_col_name,...)\n\nindex_col_name:\n col_name [(length)] [ASC | DESC]',''),(167,'ALTER DATABASE',28,'\nALTER DATABASE allows you to change the overall characteristics of a\ndatabase. These characteristics are stored in the *db.opt file in the\ndatabase directory.\nTo use ALTER DATABASE, you need the ALTER privilege on the\ndatabase.\n','ALTER {DATABASE | SCHEMA} [db_name]\n alter_specification [, alter_specification] ...\n\nalter_specification:\n [DEFAULT] CHARACTER SET charset_name\n | [DEFAULT] COLLATE collation_name',''),(168,'<<',27,'Shifts a longlong (BIGINT) number to the left.\n <<\n','mysql> SELECT 1 << 2;\n -> 4',''),(169,'MD5',17,' MD5(str)\nCalculates an MD5 128-bit checksum for the string. The value is returned\nas a binary string of 32 hex digits,\nor NULL if the argument was NULL.\nThe return value can, for example, be used as a hash key.\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'',''),(170,'<',26,' <\nLess than:\n','mysql> SELECT 2 < 2;\n -> 0',''),(171,'UNIX_TIMESTAMP',14,' UNIX_TIMESTAMP()\n UNIX_TIMESTAMP(date)\nIf called with no argument, returns a Unix timestamp (seconds since\n\'1970-01-01 00:00:00\' GMT) as an unsigned integer. If\nUNIX_TIMESTAMP() is called with a date argument, it\nreturns the value of the argument as seconds since \'1970-01-01\n00:00:00\' GMT. date may be a DATE string, a\nDATETIME string, a TIMESTAMP, or a number in the format\nYYMMDD or YYYYMMDD in local time.\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 882226357\nmysql> SELECT UNIX_TIMESTAMP(\'1997-10-04 22:23:00\');\n -> 875996580',''),(172,'DAYOFMONTH',14,' DAYOFMONTH(date)\nReturns the day of the month for date, in the range 1 to\n31.\n','mysql> SELECT DAYOFMONTH(\'1998-02-03\');\n -> 3',''),(173,'ASCII',23,' ASCII(str)\nReturns the numeric value of the leftmost character of the string\nstr. Returns 0 if str is the empty string. Returns\nNULL if str is NULL.\nASCII() works for characters with numeric values from 0 to\n255.\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100',''),(174,'DIV',4,'Integer division.\nSimilar to FLOOR() but safe with BIGINT values.\n','mysql> SELECT 5 DIV 2;\n -> 2',''),(175,'RENAME USER',7,'The RENAME USER statement renames existing MySQL accounts.\nTo use it, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql database.\nAn error occurs if any old account does not exist or any new\naccount exists. The old_user and new_user values are given the\nsame way as for the GRANT statement.\n','RENAME USER old_user TO new_user\n [, old_user TO new_user] ...',''),(176,'SHOW SLAVE STATUS',7,'SHOW SLAVE STATUS\n\nProvides status information on\nessential parameters of the slave threads. If you issue this statement using\nthe\nmysql client, you can use a \\G statement terminator rather than\nsemicolon to get a more readable vertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 3306\n Connect_Retry: 3\n Master_Log_File: gbichot-bin.005\n Read_Master_Log_Pos: 79\n Relay_Log_File: gbichot-relay-bin.005\n Relay_Log_Pos: 548\nRelay_Master_Log_File: gbichot-bin.005\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 79\n Relay_Log_Space: 552\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\nSeconds_Behind_Master: 8\n','',''),(177,'GEOMETRY',24,'MySQL provides a standard way of creating spatial columns for\ngeometry types, for example, with CREATE TABLE or ALTER TABLE.\nCurrently, spatial columns are supported only for MyISAM tables.\n','mysql> CREATE TABLE geom (g GEOMETRY);\nQuery OK, 0 rows affected (0.02 sec)',''),(178,'NUMPOINTS',18,' NumPoints(ls)\nReturns the number of points in the LineString value ls.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT NumPoints(GeomFromText(@ls));\n+------------------------------+\n| NumPoints(GeomFromText(@ls)) |\n+------------------------------+\n| 3 |\n+------------------------------+',''),(179,'&',27,' &\nBitwise AND:\n','mysql> SELECT 29 & 15;\n -> 13',''),(180,'LOCALTIMESTAMP',14,' LOCALTIMESTAMP\n LOCALTIMESTAMP()\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for\nNOW().\n','',''),(181,'ADDDATE',14,' ADDDATE(date,INTERVAL expr type)\n ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument,\nADDDATE() is a synonym for DATE_ADD(). The related\nfunction SUBDATE() is a synonym for DATE_SUB().\nFor information on the INTERVAL argument, see the\ndiscussion for DATE_ADD().\n\nmysql> SELECT DATE_ADD(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\nmysql> SELECT ADDDATE(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1998-02-02\'\n\nAs of MySQL 4.1.1, the second syntax is allowed, where expr is a date\nor datetime expression and days is the number of days to be added to\nexpr.\n\nmysql> SELECT ADDDATE(\'1998-01-02\', 31);\n -> \'1998-02-02\'\n','',''),(182,'SMALLINT',1,' SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The\nunsigned range is 0 to 65535.\n','',''),(183,'ORD',23,' ORD(str)\nIf the leftmost character of the string str is a multi-byte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a multi-byte character, ORD()\nreturns the same value as the ASCII() function.\n','mysql> SELECT ORD(\'2\');\n -> 50',''),(184,'ENVELOPE',19,' Envelope(g)\nReturns the Minimum Bounding Rectangle (MBR) for the geometry value g.\nThe result is returned as a Polygon value.\n\nmysql> SELECT AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\')));\n+-------------------------------------------------------+\n| AsText(Envelope(GeomFromText(\'LineString(1 1,2 2)\'))) |\n+-------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+-------------------------------------------------------+\n\nThe polygon is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','',''),(185,'IS_FREE_LOCK',21,' IS_FREE_LOCK(str)\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock),\n0 if the lock is in use, and\nNULL on errors (such as incorrect arguments).\n','',''),(186,'SHOW BINLOG',6,'SHOW BINLOG EVENTS\n [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\n\nShows the events in the binary log.\nIf you do not specify \'log_name\', the first binary log is displayed.\n','',''),(187,'TOUCHES',11,' Touches(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially touches\ng2. Two geometries /spatially touch/ if the interiors of\nthe geometries do not intersect, but the boundary of one of the geometries\nintersects either the boundary or the interior of the other.\n','',''),(188,'TIMESTAMPADD FUNCTION',14,'','mysql> SELECT TIMESTAMPADD(MINUTE,1,\'2003-01-02\');\n -> \'2003-01-02 00:01:00\'\nmysql> SELECT TIMESTAMPADD(WEEK,1,\'2003-01-02\');\n -> \'2003-01-09\'',''),(189,'INET_ATON',21,' INET_ATON(expr)\nGiven the dotted-quad representation of a network address as a string,\nreturns an integer that represents the numeric value of the address.\nAddresses may be 4- or 8-byte addresses.\n','mysql> SELECT INET_ATON(\'209.207.224.40\');\n -> 3520061480',''),(190,'AUTO_INCREMENT',1,'The AUTO_INCREMENT attribute can be used to generate a unique\nidentity for new rows:\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n );\nINSERT INTO animals (name) VALUES (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\nSELECT * FROM animals;',''),(191,'UNCOMPRESS',23,' UNCOMPRESS(string_to_uncompress)\nUncompresses a string compressed by the COMPRESS() function.\nIf the argument is not a compressed value, the result is NULL.\nThis function requires MySQL to have been compiled with a compression library\nsuch as zlib. Otherwise, the return value is always NULL.\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL',''),(192,'ISSIMPLE',19,' IsSimple(g)\n\nCurrently, this function is a placeholder and should not be used.\nIf implemented, its behavior will be as described in the next paragraph.\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. IsSimple() returns 0 if the\nargument is not simple, and -1 if it is NULL.\n\nThe description of each instantiable geometric class given earlier in\nthe chapter includes the specific conditions that cause an instance of\nthat class to be classified as not simple.\n','',''),(193,'- BINARY',4,' -\nSubtraction:\n','mysql> SELECT 3-5;\n -> -2',''),(194,'GEOMCOLLFROMTEXT',3,' GeomCollFromText(wkt[,srid])\n GeometryCollectionFromText(wkt[,srid])\nConstructs a GEOMETRYCOLLECTION value using its WKT representation and SRID.\n','',''),(195,'WKT DEFINITION',3,'The Well-Known Text (WKT) representation of Geometry is designed to\nexchange geometry data in ASCII form.\n','',''),(196,'CURRENT_TIME',14,' CURRENT_TIME\n CURRENT_TIME()\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for\nCURTIME().\n','',''),(197,'LAST_INSERT_ID',25,' LAST_INSERT_ID()\n LAST_INSERT_ID(expr)\nReturns the last automatically generated value that was inserted into\nan AUTO_INCREMENT column.\n','mysql> SELECT LAST_INSERT_ID();\n -> 195',''),(198,'LAST_DAY',14,' LAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for the\nlast day of the month. Returns NULL if the argument is invalid.\n','mysql> SELECT LAST_DAY(\'2003-02-05\');\n -> \'2003-02-28\'\nmysql> SELECT LAST_DAY(\'2004-02-05\');\n -> \'2004-02-29\'\nmysql> SELECT LAST_DAY(\'2004-01-01 01:01:01\');\n -> \'2004-01-31\'\nmysql> SELECT LAST_DAY(\'2003-03-32\');\n -> NULL',''),(199,'MEDIUMINT',1,' MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-size integer. The signed range is -8388608 to\n8388607. The unsigned range is 0 to 16777215.\n','',''),(200,'FLOOR',4,' FLOOR(X)\nReturns the largest integer value not greater than X.\n','mysql> SELECT FLOOR(1.23);\n -> 1\nmysql> SELECT FLOOR(-1.23);\n -> -2',''),(201,'RTRIM',23,' RTRIM(str)\nReturns the string str with trailing space characters removed.\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'',''),(202,'DEGREES',4,' DEGREES(X)\nReturns the argument X, converted from radians to degrees.\n','mysql> SELECT DEGREES(PI());\n -> 180.000000',''),(203,'EXPLAIN',6,'The EXPLAIN statement can be used either as a synonym for\nDESCRIBE or as a way to obtain information about how MySQL executes\na SELECT statement:\n\n --- The EXPLAIN tbl_name syntax is synonymous with DESCRIBE tbl_name\nor\nSHOW COLUMNS FROM tbl_name.\n --- When you precede a SELECT statement with the keyword EXPLAIN,\nMySQL explains how it would process the SELECT, providing\ninformation about how tables are joined and in which order.\n','EXPLAIN tbl_name',''),(204,'VARCHAR',1,' [NATIONAL] VARCHAR(M) [BINARY]\n\nA variable-length string. M represents the maximum column length.\nThe range of M is 1 to 255 before MySQL 4.0.2, 0 to 255 as of MySQL\n4.0.2, and 0 to 65,535 as of MySQL 5.0.3. (The maximum actual length of a\nVARCHAR in MySQL 5.0 is determined by the maximum row size and the\ncharacter set you use. The maximum effective length is 65,532 bytes.)\n\nNote: Before 5.0.3, trailing spaces were removed when\nVARCHAR values were stored, which differs from the standard SQL\nspecification.\n\nFrom MySQL 4.1.0 to 5.0.2, a VARCHAR column with a length\nspecification greater than 255 is converted to the smallest TEXT\ntype that can hold values of the given length. For example,\nVARCHAR(500) is converted to TEXT, and\nVARCHAR(200000) is converted to MEDIUMTEXT. This is a\ncompatibility feature. However, this conversion affects trailing-space\nremoval.\n\nVARCHAR is shorthand for CHARACTER VARYING.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nStarting from MySQL 5.0.3, VARCHAR is stored with a one-byte or\ntwo-byte length prefix + data. The length prefix is two bytes if the\nVARCHAR column is declared with a length greater than 255.\n','',''),(205,'UNHEX',23,' UNHEX(str)\n\nDoes the opposite of HEX(str). That is, it interprets each pair of\nhexadecimal digits in the argument as a number and converts it to the\ncharacter represented by the number. The resulting characters are returned as\na binary string.\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT 0x4D7953514C;\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'',''),(206,'- UNARY',4,' -\nUnary minus. Changes the sign of the argument.\n','mysql> SELECT - 2;\n -> -2',''),(207,'COS',4,' COS(X)\nReturns the cosine of X, where X is given in radians.\n','mysql> SELECT COS(PI());\n -> -1.000000',''),(208,'DATE FUNCTION',14,' DATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'',''),(209,'RESET MASTER',6,'RESET MASTER\n\nDeletes all binary logs listed in the index file,\nresets the binary log index file to be empty, and creates a new binary log\nfile.\n\nThis statement was named FLUSH MASTER before MySQL 3.23.26.\n','',''),(210,'TAN',4,' TAN(X)\nReturns the tangent of X, where X is given in radians.\n','mysql> SELECT TAN(PI()+1);\n -> 1.557408',''),(211,'PI',4,' PI()\nReturns the value of PI. The default number of decimals displayed is five, but\nMySQL internally uses the full double-precision value for PI.\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116',''),(212,'WEEKOFYEAR',14,' WEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the\nrange from 1 to 53. It is a compatibility function\nthat is equivalent to WEEK(date,3).\n','mysql> SELECT WEEKOFYEAR(\'1998-02-20\');\n -> 8',''),(213,'/',4,' /\nDivision:\n','mysql> SELECT 3/5;\n -> 0.60',''),(214,'STDDEV_SAMP',12,' STDDEV_SAMP(expr)\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP(). This function was added in MySQL 5.0.3.\n','',''),(215,'MLINEFROMWKB',13,' MLineFromWKB(wkb[,srid])\n MultiLineStringFromWKB(wkb[,srid])\nConstructs a MULTILINESTRING value using its WKB representation and SRID.\n','',''),(216,'UNCOMPRESSED_LENGTH',23,' UNCOMPRESSED_LENGTH(compressed_string)\nReturns the length of a compressed string before compression.\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30',''),(217,'LOG2',4,' LOG2(X)\nReturns the base-2 logarithm of X.\n','mysql> SELECT LOG2(65536);\n -> 16.000000\nmysql> SELECT LOG2(-100);\n -> NULL',''),(218,'SUBTIME',14,' SUBTIME(expr,expr2)\n\n\nSUBTIME() subtracts expr2 from expr and returns the result.\nexpr is a time or datetime expression, and expr2 is a time\nexpression.\n','mysql> SELECT SUBTIME(\'1997-12-31 23:59:59.999999\',\n -> \'1 1:1:1.000002\');\n -> \'1997-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'',''),(219,'DROP TABLE',28,'DROP TABLE removes one or more tables. You must have the DROP\nprivilege for each table. All table data and the table\ndefinition are /removed/, so /be careful/ with this statement!\n\nIn MySQL 3.22 or later, you can use the keywords IF EXISTS\nto prevent an error from occurring for tables that don\'t exist. As of\nMySQL 4.1, a NOTE is generated for each non-existent table when\nusing IF EXISTS.\nSee also : [SHOW WARNINGS, , SHOW WARNINGS].\n\nRESTRICT and CASCADE are allowed to make porting easier.\nFor the moment, they do nothing.\n\nNote: DROP TABLE automatically commits the current\nactive transaction, unless you are using MySQL 4.1 or higher and the\nTEMPORARY keyword.\n','DROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]',''),(220,'DUAL',22,'SELECT ... FROM DUAL is an alias for SELECT ....\n(To be compatible with some other databases).\n','',''),(221,'INSTR',23,' INSTR(str,substr)\nReturns the position of the first occurrence of substring substr in\nstring str. This is the same as the two-argument form of\nLOCATE(), except that the arguments are swapped.\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0',''),(222,'NOW',14,' NOW()\n\nReturns the current date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT NOW();\n -> \'1997-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 19971215235026',''),(223,'>=',26,' >=\nGreater than or equal:\n','mysql> SELECT 2 >= 2;\n -> 1',''),(224,'EXP',4,' EXP(X)\nReturns the value of e (the base of natural logarithms) raised to\nthe power of X.\n','mysql> SELECT EXP(2);\n -> 7.389056\nmysql> SELECT EXP(-2);\n -> 0.135335',''),(225,'SHA',17,' SHA1(str)\n SHA(str)\nCalculates an SHA1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of 40 hex\ndigits, or NULL if the argument was NULL.\nOne of the possible uses for this function is as a hash key. You can\nalso use it as a cryptographically safe function for storing passwords.\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'',''),(226,'LONGBLOB',1,' LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or\n4GB (2^32 - 1) bytes. Up to MySQL\n3.23, the client/server protocol and MyISAM tables had a limit\nof 16MB per communication packet / table row. From MySQL 4.0, the maximum\nallowed length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and available\nmemory.\n','',''),(227,'POINTN',18,' PointN(ls,n)\nReturns the n-th point in the Linestring value ls.\nPoint numbers begin at 1.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT AsText(PointN(GeomFromText(@ls),2));\n+-------------------------------------+\n| AsText(PointN(GeomFromText(@ls),2)) |\n+-------------------------------------+\n| POINT(2 2) |\n+-------------------------------------+',''),(228,'SUM',12,' SUM([DISTINCT] expr)\nReturns the sum of expr. If the return set has no rows,\nSUM() returns NULL.\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to sum only the\ndistinct values of expr.\n','',''),(229,'OCT',23,' OCT(N)\nReturns a string representation of the octal value of N, where\nN is a longlong (BIGINT)number. This is equivalent to\nCONV(N,10,8).\nReturns NULL if N is NULL.\n','mysql> SELECT OCT(12);\n -> \'14\'',''),(230,'SYSDATE',14,' SYSDATE()\n\nSYSDATE() is a synonym for NOW().\n','',''),(231,'ASBINARY',13,' AsBinary(g)\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n','SELECT AsBinary(g) FROM geom;',''),(232,'MAKEDATE',14,' MAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values.\ndayofyear must be greater than 0 or the result is NULL.\n','mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32);\n -> \'2001-01-31\', \'2001-02-01\'\nmysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365);\n -> \'2001-12-31\', \'2004-12-30\'\nmysql> SELECT MAKEDATE(2001,0);\n -> NULL',''),(233,'BINARY OPERATOR',23,' BINARY\nThe BINARY operator casts the string following it to a binary string.\nThis is an easy way to force a column comparison to be done byte by byte\nrather than character by character. This causes the comparison to be\ncase sensitive even\nif the column isn\'t defined as BINARY or BLOB.\nBINARY also causes trailing spaces to be significant.\n','mysql> SELECT \'a\' = \'A\';\n -> 1\nmysql> SELECT BINARY \'a\' = \'A\';\n -> 0\nmysql> SELECT \'a\' = \'a \';\n -> 1\nmysql> SELECT BINARY \'a\' = \'a \';\n -> 0',''),(234,'MBROVERLAPS',8,' MBROverlaps(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 overlap.\n','',''),(235,'SOUNDEX',23,' SOUNDEX(str)\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get\na standard soundex string. All non-alphabetic characters are ignored in the\ngiven string. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'',''),(236,'SHOW MASTER LOGS',6,'SHOW MASTER LOGS\nSHOW BINARY LOGS\n\nLists the binary log files on the server. This statement is used as part of\nthe procedure described in [PURGE MASTER LOGS, , PURGE MASTER LOGS]\nfor determining which logs can be purged.\n','',''),(237,'MBRTOUCHES',8,' MBRTouches(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 touch.\n','',''),(238,'INSERT SELECT',6,'INSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name [(col_name,...)]\n SELECT ...\n [ ON DUPLICATE KEY UPDATE col_name=expr, ... ]\n\nWith INSERT ... SELECT, you can quickly insert many rows\ninto a table from one or many tables.\n','INSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;',''),(239,'VARBINARY',1,' VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores\nbinary byte strings rather than non-binary character strings.\n\nThis type was added in MySQL 4.1.2.\n','',''),(240,'LOAD INDEX',6,'The LOAD INDEX INTO CACHE statement preloads a table index into the\nkey cache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise. LOAD INDEX INTO\nCACHE is used only for MyISAM tables.\n\nThe IGNORE LEAVES modifier causes only blocks for the non-leaf\nnodes of the index to be preloaded.\n','LOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [[INDEX|KEY] (index_name[, index_name] ...)]\n [IGNORE LEAVES]',''),(241,'UNION',6,'UNION is used to combine the result from many SELECT\nstatements into one result set. UNION is available from MySQL 4.0.0\non.\n\nSelected columns listed in corresponding positions of each SELECT\nstatement should have the same type. (For example, the first column selected\nby the first statement should have the same type as the first column selected\nby the other statements.) The column names used in\nthe first SELECT statement are used as the column names for the\nresults returned.\n','SELECT ...\nUNION [ALL | DISTINCT]\nSELECT ...\n [UNION [ALL | DISTINCT]\n SELECT ...]',''),(242,'TO_DAYS',14,' TO_DAYS(date)\nGiven a date date, returns a daynumber (the number of days since year\n0).\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'1997-10-07\');\n -> 729669',''),(243,'NOT REGEXP',23,' expr NOT REGEXP pat\n expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n','',''),(244,'NOT IN',26,' expr NOT IN (value,...)\nThis is the same as NOT (expr IN (value,...)).\n','',''),(245,'!',20,' NOT\n !\nLogical NOT.\nEvaluates to 1 if the operand is 0,\nto 0 if the operand is non-zero,\nand NOT NULL returns NULL.\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1',''),(246,'TEXT TYPE',1,' TEXT[(M)]\n\nA TEXT column with a maximum length of 65,535\n(2^16 - 1) characters.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest TEXT type largest\nenough to hold values M characters long.\n','',''),(247,'DOUBLE',1,' DOUBLE[(M,B)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Allowable values are\n-1.7976931348623157E+308 to -2.2250738585072014E-308,\n0, and 2.2250738585072014E-308 to 1.7976931348623157E+308.\nIf UNSIGNED is specified, negative values are disallowed. M is the\ndisplay width and B is the number of bits of precision. DOUBLE\nwithout arguments or FLOAT(p) (where p is in the range from\n25 to 53) stands for a double-precision floating-point number. A\nsingle-precision floating-point number is accurate to approximately 7 decimal\nplaces; a double-precision floating-point number is accurate to approximately 15\ndecimal places.\n\n DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL]\n REAL[(M,D)] [UNSIGNED] [ZEROFILL]\n\nThese are synonyms for DOUBLE.\nException: If the server SQL mode includes the REAL_AS_FLOAT option,\nREAL is a synonym for FLOAT rather than DOUBLE.\n','',''),(248,'TIME',1,' TIME\n\nA time. The range is \'-838:59:59\' to \'838:59:59\'.\nMySQL displays TIME values in \'HH:MM:SS\' format, but\nallows you to assign values to TIME columns using either strings or\nnumbers.\n','',''),(249,'&&',20,' AND\n &&\nLogical AND.\nEvaluates to 1 if all operands are non-zero and not NULL,\nto 0 if one or more operands are 0,\notherwise NULL is returned.\n','mysql> SELECT 1 && 1;\n -> 1\nmysql> SELECT 1 && 0;\n -> 0\nmysql> SELECT 1 && NULL;\n -> NULL\nmysql> SELECT 0 && NULL;\n -> 0\nmysql> SELECT NULL && 0;\n -> 0',''),(250,'X',16,' X(p)\nReturns the X-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT X(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| X(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 56.7 |\n+--------------------------------------+',''),(251,'FOUND_ROWS',25,'\nA SELECT statement may include a LIMIT clause to restrict the\nnumber of rows the server returns to the client.\nIn some cases, it is desirable to know how many rows the statement would have\nreturned without the LIMIT, but without running the statement again.\nTo get this row count, include a SQL_CALC_FOUND_ROWS option in the\nSELECT statement, then invoke FOUND_ROWS() afterward:\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();',''),(252,'SYSTEM_USER',25,' SYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n','',''),(253,'CROSSES',11,' Crosses(g1,g2)\nReturns 1 if g1 spatially crosses g2.\nReturns NULL if g1 is a Polygon or a MultiPolygon,\nor if g2 is a Point or a MultiPoint.\nOtherwise, returns 0.\n\nThe term /spatially crosses/ denotes a spatial relation between two given\ngeometries that has the following properties:\n\n\n --- The two geometries intersect\n\n --- Their intersection results in a geometry that has\na dimension that is one less than the maximum dimension of the two given\ngeometries\n\n --- Their intersection is not equal to either of the two given geometries\n','',''),(254,'TRUNCATE TABLE',6,'TRUNCATE TABLE empties a table completely.\nLogically, this is equivalent to a DELETE statement that deletes all\nrows, but there are practical differences under some circumstances.\n\nFor InnoDB before version 5.0.3, TRUNCATE TABLE is\nmapped to DELETE, so there is no difference. Starting with\nMySQL/InnoDB-5.0.3, fast TRUNCATE TABLE is available. The\noperation is still mapped to DELETE if there are foreign\nkey constraints that reference the table.\n\nFor other storage engines, TRUNCATE TABLE differs from\nDELETE FROM in the following ways from MySQL 4.0 and up:\n\n --- Truncate operations drop and re-create the table, which is much faster\nthan deleting rows one by one.\n --- Truncate operations are not transaction-safe; you get an error if\nyou have an active transaction or an active table lock.\n --- The number of deleted rows is not returned.\n --- As long as the table definition file *tbl_name.frm is\nvalid, the table can be re-created as an empty table with TRUNCATE\nTABLE, even if the data or index files have become corrupted.\n --- The table handler does not remember the last used AUTO_INCREMENT\nvalue, but starts counting from the beginning. This is true even for\nMyISAM and InnoDB, which normally does not reuse sequence values.\n\nIn MySQL 3.23, TRUNCATE TABLE is mapped to\nCOMMIT; DELETE FROM tbl_name, so it behaves like DELETE.\nSee also : [DELETE, , DELETE].\n\nTRUNCATE TABLE is an Oracle SQL extension.\nThis statement was added in MySQL 3.23.28, although from 3.23.28\nto 3.23.32, the keyword TABLE must be omitted.\n','TRUNCATE TABLE tbl_name',''),(255,'CURRENT_DATE',14,' CURRENT_DATE\n CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for\nCURDATE().\n','',''),(256,'BIT_XOR',12,' BIT_XOR(expr)\nReturns the bitwise XOR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','',''),(257,'AREA',0,' Area(poly)\nReturns as a double-precision number the area of the Polygon value\npoly, as measured in its spatial reference system.\n','mysql> SET @poly = \'Polygon((0 0,0 3,3 0,0 0),(1 1,1 2,2 1,1 1))\';\nmysql> SELECT Area(GeomFromText(@poly));\n+---------------------------+\n| Area(GeomFromText(@poly)) |\n+---------------------------+\n| 4 |\n+---------------------------+',''),(258,'START SLAVE',7,'START SLAVE [thread_type [, thread_type] ... ]\nSTART SLAVE [SQL_THREAD] UNTIL\n MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\nSTART SLAVE [SQL_THREAD] UNTIL\n RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n\nthread_type: IO_THREAD | SQL_THREAD\n\nSTART SLAVE with no options starts both of the slave threads.\nThe I/O thread reads queries from the master server and stores them in the\nrelay log. The SQL thread reads the relay log and executes the\nqueries.\nSTART SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it\nreturns without any error. However, even in that case, it might be that the slave\nthreads start and then later stop (for example, because they don\'t manage to\nconnect to the master or read its binary logs, or some other\nproblem). START SLAVE does not warn you about this. You must\ncheck your slave\'s error log for error messages generated by\nthe slave threads, or check that they are running fine with SHOW\nSLAVE STATUS.\n','',''),(259,'FLUSH',6,'You should use the FLUSH statement if you want to clear some of the\ninternal caches MySQL uses. To execute FLUSH, you must have\nthe RELOAD privilege.\n','FLUSH [LOCAL | NO_WRITE_TO_BINLOG] flush_option [, flush_option] ...',''),(260,'DESCRIBE',7,'{DESCRIBE | DESC} tbl_name [col_name | wild]\n\nDESCRIBE provides information about the columns in a table. It is a\nshortcut for SHOW COLUMNS FROM. As of MySQL 5.0.1, these statements\nalso display information for views.\n','',''),(261,'STDDEV_POP',12,' STDDEV_POP(expr)\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). This function was added in MySQL 5.0.3. Before 5.0.3,\nyou can use STD() or STDDEV(), which are equivalent but not\nstandard SQL.\n','',''),(262,'SUBSTRING',23,' SUBSTRING(str,pos)\n SUBSTRING(str FROM pos)\n SUBSTRING(str,pos,len)\n SUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument\nreturn a substring from string str starting at position pos.\nThe forms with a len argument\nreturn a substring len characters long from string str,\nstarting at position pos.\nThe forms that use FROM are standard SQL syntax.\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'',''),(263,'ISEMPTY',19,' IsEmpty(g)\nReturns 1 if the geometry value g is the empty geometry, 0 if it is not\nempty, and -1 if the argument is NULL.\nIf the geometry is empty, it represents the empty point set.\n','',''),(264,'LTRIM',23,' LTRIM(str)\nReturns the string str with leading space characters removed.\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'',''),(265,'REPAIR',7,'REPAIR TABLE repairs a possibly corrupted table.\nBy default,\nit has the same effect as myisamchk --recover tbl_name.\nREPAIR TABLE works only on MyISAM tables.\n','REPAIR [LOCAL | NO_WRITE_TO_BINLOG] TABLE\n tbl_name [, tbl_name] ... [QUICK] [EXTENDED] [USE_FRM]',''),(266,'INTERSECTS',11,' Intersects(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 spatially intersects\ng2.\n','',''),(267,'MBRDISJOINT',8,' MBRDisjoint(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n','',''),(268,'SUBSTRING_INDEX',23,' SUBSTRING_INDEX(str,delim,count)\nReturns the substring from string str before count\noccurrences of the delimiter delim.\nIf count is positive, everything to the left of the final delimiter\n(counting from the left) is returned.\nIf count is negative, everything to the right of the final delimiter\n(counting from the right) is returned.\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'',''),(269,'ENCODE',17,' ENCODE(str,pass_str)\nEncrypt str using pass_str as the password.\nTo decrypt the result, use DECODE().\n\nThe result is a binary string of the same length as str.\nIf you want to save it in a column, use a BLOB column type.\n','',''),(270,'TRUNCATE',4,' TRUNCATE(X,D)\nReturns the number X, truncated to D decimals. If D\nis 0, the result has no decimal point or fractional part.\nD can be negative to truncate (make zero) D digits left of the\ndecimal point of the value X.\n','mysql> SELECT TRUNCATE(1.223,1);\n -> 1.2\nmysql> SELECT TRUNCATE(1.999,1);\n -> 1.9\nmysql> SELECT TRUNCATE(1.999,0);\n -> 1\nmysql> SELECT TRUNCATE(-1.999,1);\n -> -1.9\nmysql> SELECT TRUNCATE(122,-2);\n -> 100',''),(271,'TIMESTAMPADD',14,' TIMESTAMPADD(interval,int_expr,datetime_expr)\n\nAdds the integer expression int_expr to the date or datetime expression\ndatetime_expr. The unit for int_expr is given by the\ninterval argument, which should be one of the following values:\nFRAC_SECOND,\nSECOND,\nMINUTE,\nHOUR,\nDAY,\nWEEK,\nMONTH,\nQUARTER,\nor\nYEAR.\n\nThe interval value may be specified using one of keywords as shown,\nor with a prefix of SQL_TSI_. For example, DAY or\nSQL_TSI_DAY both are legal.\n','',''),(272,'SHOW',6,'\nSHOW has many forms that provide information about databases,\ntables, columns, or status information about the server.\nThis section describes those following:\n\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [LIKE \'pattern\']\nSHOW CREATE DATABASE db_name\nSHOW CREATE TABLE tbl_name\nSHOW DATABASES [LIKE \'pattern\']\nSHOW [STORAGE] ENGINES\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW GRANTS FOR user\nSHOW INDEX FROM tbl_name [FROM db_name]\nSHOW INNODB STATUS\nSHOW [BDB] LOGS\nSHOW PRIVILEGES\nSHOW [FULL] PROCESSLIST\nSHOW STATUS [LIKE \'pattern\']\nSHOW TABLE STATUS [FROM db_name] [LIKE \'pattern\']\nSHOW [OPEN] TABLES [FROM db_name] [LIKE \'pattern\']\nSHOW [GLOBAL | SESSION] VARIABLES [LIKE \'pattern\']\nSHOW WARNINGS [LIMIT [offset,] row_count]\n\n\nThe SHOW statement also has forms that provide information about\nreplication master and slave servers and are described in [Replication\nSQL]:\n\nSHOW BINLOG EVENTS\nSHOW MASTER LOGS\nSHOW MASTER STATUS\nSHOW SLAVE HOSTS\nSHOW SLAVE STATUS\n\nIf the syntax for a given SHOW statement includes a LIKE\n\'pattern\' part, \'pattern\' is a string that can contain the SQL \'%\'\nand \'_\' wildcard characters.\nThe pattern is useful for restricting statement output to matching values.\n','',''),(273,'GREATEST',26,' GREATEST(value1,value2,...)\nWith two or more arguments, returns the largest (maximum-valued) argument.\nThe arguments are compared using the same rules as for LEAST().\n','mysql> SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'',''),(274,'OCTETLENGTH',23,' OCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n','',''),(275,'SECOND',14,' SECOND(time)\nReturns the second for time, in the range 0 to 59.\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3',''),(276,'BIT_AND',12,' BIT_AND(expr)\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n','mysql> SELECT order.custid, customer.name, MAX(payments)\n -> FROM order,customer\n -> WHERE order.custid = customer.custid\n -> GROUP BY order.custid;',''),(277,'ATAN2',4,' ATAN(Y,X)\n ATAN2(Y,X)\nReturns the arc tangent of the two variables X and Y. It is\nsimilar to calculating the arc tangent of Y / X, except that the\nsigns of both arguments are used to determine the quadrant of the\nresult.\n','mysql> SELECT ATAN(-2,2);\n -> -0.785398\nmysql> SELECT ATAN2(PI(),0);\n -> 1.570796',''),(278,'MBRCONTAINS',8,' MBRContains(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle of\ng1 contains the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1);\n----------------------+----------------------+\n| MBRContains(@g1,@g2) | MBRContains(@g2,@g1) |\n+----------------------+----------------------+\n| 1 | 0 |\n+----------------------+----------------------+',''),(279,'HOUR',14,' HOUR(time)\nReturns the hour for time. The range of the return value is\n0 to 23 for time-of-day values.\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10',''),(280,'TYPE SET',1,' SET(\'value1\',\'value2\',...)\n\nA set. A string object that can have zero or more values, each of which must\nbe chosen from the list of values \'value1\', \'value2\',\n... A SET column can have a maximum of 64 members.\nSET values are represented internally as integers.\n \n','',''),(281,'SELECT',6,'SELECT is used to retrieve rows selected from one or more tables.\nSupport for UNION statements and subqueries is available as of MySQL\n4.0 and 4.1, respectively.\nSee [UNION, , UNION] and [Subqueries].\n\n --- Each select_expr indicates a column you want to retrieve.\n\n --- table_references indicates the table or tables from which to retrieve rows.\nIts syntax is described in [JOIN, , JOIN].\n\n --- where_definition consists of the keyword WHERE followed by\nan expression that indicates the condition or conditions that rows\nmust satisfy to be selected.\n\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n','SELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr, ...\n [INTO OUTFILE \'file_name\' export_options\n | INTO DUMPFILE \'file_name\']\n [FROM table_references\n [WHERE where_definition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_definition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC] , ...]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [FOR UPDATE | LOCK IN SHARE MODE]]',''),(282,'COT',4,' COT(X)\nReturns the cotangent of X.\n','mysql> SELECT COT(12);\n -> -1.57267341\nmysql> SELECT COT(0);\n -> NULL',''),(283,'BACKUP TABLE',7,'Note: This statement is deprecated. We are working on a better\nreplacement for it that will provide online backup capabilities.\nIn the meantime, the mysqlhotcopy script can be used instead.\n\nBACKUP TABLE copies to the backup directory the minimum number of\ntable files needed to restore the table, after flushing any buffered changes\nto disk. The statement works only for MyISAM tables. It copies the\n*.frm definition and *.MYD data files. The *.MYI\nindex file can be rebuilt from those two files.\nThe directory should be specified as a full pathname.\n','BACKUP TABLE tbl_name [, tbl_name] ... TO \'/path/to/backup/directory\'',''),(284,'LOAD_FILE',23,' LOAD_FILE(file_name)\nReads the file and returns the file contents as a string. The file\nmust be located on the server, you must specify the full pathname to the\nfile, and you must have the FILE privilege. The file must\nbe readable by all and be smaller than max_allowed_packet bytes.\n\nIf the file doesn\'t exist or cannot be read because one of the preceding\nconditions is not satisfied, the function returns NULL.\n','mysql> UPDATE tbl_name\n SET blob_column=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;',''),(285,'POINTFROMTEXT',3,' PointFromText(wkt[,srid])\nConstructs a POINT value using its WKT representation and SRID.\n','',''),(286,'LOAD TABLE FROM MASTER',6,'LOAD TABLE tbl_name FROM MASTER\n\nTransfers a copy of the table from master to the slave. This statement is\nimplemented mainly for debugging of LOAD DATA FROM MASTER.\nIt requires that the account used for connecting to the master server has the\nRELOAD and SUPER privileges on the master and the\nSELECT privilege on the master table to load.\nOn the slave side, the user that issues LOAD TABLE FROM MASTER should\nhave privileges to drop and create the table.\n\nThe conditions for LOAD DATA FROM MASTER apply here, too. For\nexample, LOAD TABLE FROM MASTER works only for MyISAM tables.\nThe timeout notes for LOAD DATA FROM MASTER apply as well.\n','',''),(287,'GROUP_CONCAT',12,' GROUP_CONCAT(expr)\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL\nvalues. The full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val])\n','mysql> SELECT student_name,\n -> GROUP_CONCAT(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(288,'DATE_FORMAT',14,' DATE_FORMAT(date,format)\nFormats the date value according to the format string. The\nfollowing specifiers may be used in the format string:\n\n Specifier Description\n %a Abbreviated weekday name (Sun..Sat)\n %b Abbreviated month name (Jan..Dec)\n %c Month, numeric (0..12)\n %D Day of the month with English suffix (0th, 1st, 2nd, 3rd, ...)\n %d Day of the month, numeric (00..31)\n %e Day of the month, numeric (0..31)\n %f Microseconds (000000..999999)\n %H Hour (00..23)\n %h Hour (01..12)\n %I Hour (01..12)\n %i Minutes, numeric (00..59)\n %j Day of year (001..366)\n %k Hour (0..23)\n %l Hour (1..12)\n %M Month name (January..December)\n %m Month, numeric (00..12)\n %p AM or PM\n %r Time, 12-hour (hh:mm:ss followed by AM or PM)\n %S Seconds (00..59)\n %s Seconds (00..59)\n %T Time, 24-hour (hh:mm:ss)\n %U Week (00..53), where Sunday is the first day of the week\n %u Week (00..53), where Monday is the first day of the week\n %V Week (01..53), where Sunday is the first day of the week; used with %X\n %v Week (01..53), where Monday is the first day of the week; used with %x\n %W Weekday name (Sunday..Saturday)\n %w Day of the week (0=Sunday..6=Saturday)\n %X Year for the week where Sunday is the first day of the week, numeric, four digits; used with %V\n %x Year for the week, where Monday is the first day of the week, numeric, four digits; used with %v\n %Y Year, numeric, four digits\n %y Year, numeric, two digits\n %% A literal \'%\'.\n \n\nAll other characters are copied to the result without interpretation.\n\nThe %v, %V, %x, and %X format specifiers are\navailable as of MySQL 3.23.8. %f is available as of MySQL 4.1.1.\n\nAs of MySQL 3.23, the \'%\' character is required before\nformat specifier characters. In earlier versions of MySQL,\n\'%\' was optional.\n\nThe reason the ranges for the month and day specifiers begin with zero\nis that MySQL allows incomplete dates such as \'2004-00-00\' to be\nstored as of MySQL 3.23.\n','mysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Saturday October 1997\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%D %y %a %d %m %b %j\');\n -> \'4th 97 Sat 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'',''),(289,'BENCHMARK',25,' BENCHMARK(count,expr)\nThe BENCHMARK() function executes the expression expr\nrepeatedly count times. It may be used to time how fast MySQL\nprocesses the expression. The result value is always 0. The intended\nuse is from within the mysql client, which reports query execution times:\n','mysql> SELECT BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\'));\n+----------------------------------------------+\n| BENCHMARK(1000000,ENCODE(\'hello\',\'goodbye\')) |\n+----------------------------------------------+\n| 0 |\n+----------------------------------------------+\n1 row in set (4.74 sec)',''),(290,'YEAR',14,' YEAR(date)\nReturns the year for date, in the range 1000 to 9999.\n','mysql> SELECT YEAR(\'98-02-03\');\n -> 1998',''),(291,'RELEASE_LOCK',21,' RELEASE_LOCK(str)\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the\nlock wasn\'t locked by this thread (in which case the lock is not released),\nand NULL if the named lock didn\'t exist. The lock does not exist if\nit was never obtained by a call to GET_LOCK() or if it has previously\nbeen released.\n\nThe DO statement is convenient to use with RELEASE_LOCK().\nSee also : [DO, , DO].\n','',''),(292,'IS NULL',26,' IS NULL\n IS NOT NULL\nTests whether a value is or is not NULL.\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\nmysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0',''),(293,'CONVERT_TZ',14,' CONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ()\nconverts a datetime value dt from time zone given by from_tz\nto the time zone given by to_tz and returns the resulting value.\nTime zones may be specified as described in [Time zone support].\nThis function returns NULL if the arguments are invalid.\n','mysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'GMT\',\'MET\');\n -> \'2004-01-01 13:00:00\'\nmysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'+00:00\',\'-07:00\');\n -> \'2004-01-01 05:00:00\'',''),(294,'TIME_TO_SEC',14,' TIME_TO_SEC(time)\nReturns the time argument, converted to seconds.\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378',''),(295,'WEEKDAY',14,' WEEKDAY(date)\nReturns the weekday index for\ndate (0 = Monday, 1 = Tuesday, ... 6 = Sunday).\n','mysql> SELECT WEEKDAY(\'1998-02-03 22:23:00\');\n -> 1\nmysql> SELECT WEEKDAY(\'1997-11-05\');\n -> 2',''),(296,'EXPORT_SET',23,' EXPORT_SET(bits,on,off[,separator[,number_of_bits]])\nReturns a string in which for every bit set in the value bits, you\nget an on string and for every reset bit you get an off\nstring. Bits in bits are examined from right to left (from low-order\nto high-order bits). Strings are added to the result from left to right,\nseparated by the separator string (default \',\'). The number of\nbits examined is given by number_of_bits (default 64).\n','mysql> SELECT EXPORT_SET(5,\'Y\',\'N\',\',\',4);\n -> \'Y,N,Y,N\'\nmysql> SELECT EXPORT_SET(6,\'1\',\'0\',\',\',10);\n -> \'0,1,1,0,0,0,0,0,0,0\'',''),(297,'TIME FUNCTION',14,' TIME(expr)\n\nExtracts the time part of the time or datetime expression expr.\n','mysql> SELECT TIME(\'2003-12-31 01:02:03\');\n -> \'01:02:03\'\nmysql> SELECT TIME(\'2003-12-31 01:02:03.000123\');\n -> \'01:02:03.000123\'',''),(298,'CAST',23,'The CAST() and CONVERT() functions can be used to take a\nvalue of one type and produce a value of another type.\n\nThe type can be one of the following values:\n\n --- BINARY\n --- CHAR\n --- DATE\n --- DATETIME\n --- SIGNED [INTEGER]\n --- TIME\n --- UNSIGNED [INTEGER]\n\nBINARY produces a binary string. See the entry for the BINARY\noperator in this section for a description of how this affects comparisons.\n\nCAST() and CONVERT() are available as of MySQL 4.0.2.\nThe CHAR conversion type is available as of 4.0.6.\nThe USING form of CONVERT() is available as of 4.1.0.\n\nCAST() and CONVERT(... USING ...) are standard SQL syntax.\nThe non-USING form of CONVERT() is ODBC syntax.\n\nCONVERT() with USING is used to convert data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names. For example, this statement converts\nthe string \'abc\' in the server\'s default character set to the\ncorresponding string in the utf8 character set:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\n \n\nThe cast functions are useful when you want to create a column with\na specific type in a CREATE ... SELECT statement:\n','SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR);',''),(299,'SOUNDS LIKE',23,' expr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2). It is\navailable only in MySQL 4.1 or later.\n','',''),(300,'PERIOD_DIFF',14,' PERIOD_DIFF(P1,P2)\nReturns the number of months between periods P1 and P2.\nP1 and P2 should be in the format YYMM or YYYYMM.\nNote that the period arguments P1 and P2 are /not/\ndate values.\n','mysql> SELECT PERIOD_DIFF(9802,199703);\n -> 11',''),(301,'LIKE',23,' expr LIKE pat [ESCAPE \'escape-char\']\nPattern matching using\nSQL simple regular expression comparison. Returns 1 (TRUE) or 0\n(FALSE). If either expr or pat is NULL, the result is\nNULL.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nWith LIKE you can use the following two wildcard characters\nin the pattern:\n\n Character Description\n % Matches any number of characters, even zero characters\n _ Matches exactly one character\n \n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1',''),(302,'MULTIPOINT',2,' MultiPoint(pt1,pt2,...)\nConstructs a WKB MultiPoint value using WKB Point arguments.\nIf any argument is not a WKB Point, the return value is NULL.\n','',''),(303,'>>',27,' >>\nShifts a longlong (BIGINT) number to the right.\n','mysql> SELECT 4 >> 2;\n -> 1',''),(304,'TRUE FALSE',22,'TRUE and FALSE added as alias for 1 and 0, respectively.\n','',''),(305,'AVG',12,' AVG([DISTINCT] expr)\nReturns the average value of expr.\nThe DISTINCT option can be used as of MySQL 5.0.3 to return the averge\nof the distinct values of expr.\n','mysql> SELECT student_name, AVG(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(306,'MBRWITHIN',8,' MBRWithin(g1,g2)\nReturns 1 or 0 to indicate whether or not the Minimum Bounding Rectangle\nof g1 is within the Minimum Bounding Rectangle of g2.\n','mysql> SET @g1 = GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+',''),(307,'IN',26,' expr IN (value,...)\nReturns 1 if expr is any of the values in the IN list,\nelse returns 0. If all values are constants, they are\nevaluated according to the type of expr and sorted. The search for the\nitem then is done using a binary search. This means IN is very quick\nif the IN value list consists entirely of constants. If expr\nis a case-sensitive string expression, the string comparison is performed in\ncase-sensitive fashion.\n','mysql> SELECT 2 IN (0,3,5,\'wefwf\');\n -> 0\nmysql> SELECT \'wefwf\' IN (0,3,5,\'wefwf\');\n -> 1',''),(308,'QUOTE',23,' QUOTE(str)\nQuotes a string to produce a result that can be used as a properly escaped\ndata value in an SQL statement. The string is returned surrounded by single\nquotes and with each instance of single quote (\'\'\'), backslash (\'\\\'),\nASCII NUL, and Control-Z preceded by a backslash. If the argument is\nNULL, the return value is the word ``NULL\'\' without surrounding\nsingle quotes.\nThe QUOTE() function was added in MySQL 4.0.3.\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL',''),(309,'SESSION_USER',25,' SESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n','',''),(310,'QUARTER',14,' QUARTER(date)\nReturns the quarter of the year for date, in the range 1\nto 4.\n','mysql> SELECT QUARTER(\'98-04-01\');\n -> 2',''),(311,'POSITION',23,' POSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\',5);\n -> 7',''),(312,'IS_USED_LOCK',21,' IS_USED_LOCK(str)\nChecks whether the lock named str is in use (that is, locked).\nIf so, it returns the connection identifier of the client that holds\nthe lock.\nOtherwise, it returns NULL.\n','',''),(313,'POLYFROMTEXT',3,' PolyFromText(wkt[,srid])\n PolygonFromText(wkt[,srid])\nConstructs a POLYGON value using its WKT representation and SRID.\n','',''),(314,'DES_ENCRYPT',17,' DES_ENCRYPT(str[,(key_num|key_str)])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\nOn error, this function returns NULL.\n\nNote that this function works only if MySQL has been configured with\nSSL support. See also : [Secure connections].\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given:\n\n Argument Description\n No argument \nThe first key from the DES key file is used.\n key_num \nThe given key number (0-9) from the DES key file is used.\n key_str \nThe given key string is used to encrypt str.\n \n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character\nis CHAR(128 | key_num).\n\nThe 128 is added to make it easier to recognize an encrypted key.\nIf you use a string key, key_num is 127.\n\nThe string length for the result is\nnew_len = orig_len + (8-(orig_len % 8))+1.\n','key_num des_key_str',''),(315,'LENGTH',23,' LENGTH(str)\nReturns the length of the string str, measured in bytes.\nA multi-byte character counts as multiple bytes.\nThis means that for a string containing five two-byte characters,\nLENGTH() returns 10, whereas CHAR_LENGTH() returns\n5.\n','mysql> SELECT LENGTH(\'text\');\n -> 4',''),(316,'DISTANCE',11,' Distance(g1,g2)\nReturns as a double-precision number\nthe shortest distance between any two points in the two geometries.\n','',''),(317,'STR_TO_DATE',14,' STR_TO_DATE(str,format)\nThis is the reverse function of the DATE_FORMAT() function. It takes a\nstring str and a format string format.\nSTR_TO_DATE() returns a DATETIME value if the format\nstring contains both date and time parts, or a DATE or TIME\nvalue if the string contains only date or time parts.\n\nThe date, time, or datetime values contained in str should be given\nin the format indicated by format. For the specifiers that can be\nused in format, see the table in the DATE_FORMAT() function\ndescription. All other characters are just taken verbatim, thus not being\ninterpreted.\nIf str contains an illegal date, time, or datetime value,\nSTR_TO_DATE() returns NULL. Starting from MySQL 5.0.3, an\nillegal value also produces a warning.\n','@c next example commented out until format string becomes optional\n@c mysql> SELECT STR_TO_DATE(\'2003-10-03\');\n@c -> 2003-10-03 00:00:00\nmysql> SELECT STR_TO_DATE(\'03.10.2003 09.20\',\n -> \'%d.%m.%Y %H.%i\');\n -> \'2003-10-03 09:20:00\'\nmysql> SELECT STR_TO_DATE(\'10arp\', \'%carp\');\n -> \'0000-10-00 00:00:00\'\nmysql> SELECT STR_TO_DATE(\'2003-15-10 00:00:00\',\n -> \'%Y-%m-%d %H:%i:%s\');\n -> NULL',''),(318,'Y',16,' Y(p)\nReturns the Y-coordinate value for the point p as a double-precision\nnumber.\n','mysql> SELECT Y(GeomFromText(\'Point(56.7 53.34)\'));\n+--------------------------------------+\n| Y(GeomFromText(\'Point(56.7 53.34)\')) |\n+--------------------------------------+\n| 53.34 |\n+--------------------------------------+',''),(319,'NUMINTERIORRINGS',0,' NumInteriorRings(poly)\nReturns the number of interior rings in the Polygon value poly.\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT NumInteriorRings(GeomFromText(@poly));\n+---------------------------------------+\n| NumInteriorRings(GeomFromText(@poly)) |\n+---------------------------------------+\n| 1 |\n+---------------------------------------+',''),(320,'INTERIORRINGN',0,' InteriorRingN(poly,n)\nReturns the n-th interior ring for the Polygon value\npoly as a LineString.\nRing numbers begin at 1.\n','mysql> SET @poly =\n -> \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT AsText(InteriorRingN(GeomFromText(@poly),1));\n+----------------------------------------------+\n| AsText(InteriorRingN(GeomFromText(@poly),1)) |\n+----------------------------------------------+\n| LINESTRING(1 1,1 2,2 2,2 1,1 1) |\n+----------------------------------------------+',''),(321,'UTC_TIME',14,' UTC_TIME\n UTC_TIME()\nReturns the current UTC time as a value in \'HH:MM:SS\' or HHMMSS\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753',''),(322,'STDDEV',12,' STD(expr)\n STDDEV(expr)\nReturns the population standard deviation of expr. This is an\nextension to standard SQL. The STDDEV() form of this function is\nprovided for Oracle compatibility. As of MySQL 5.0.3, the standard SQL\nfunction STDDEV_POP() can be used instead.\n','',''),(323,'PERIOD_ADD',14,' PERIOD_ADD(P,N)\nAdds N months to period P (in the format YYMM or\nYYYYMM). Returns a value in the format YYYYMM.\nNote that the period argument P is /not/ a date value.\n','mysql> SELECT PERIOD_ADD(9801,2);\n -> 199803',''),(324,'|',27,' |\nBitwise OR:\n','mysql> SELECT 29 | 15;\n -> 31',''),(325,'GEOMFROMTEXT',3,' GeomFromText(wkt[,srid])\n GeometryFromText(wkt[,srid])\nConstructs a geometry value of any type using its WKT representation and SRID.\n','',''),(326,'RIGHT',23,' RIGHT(str,len)\nReturns the rightmost len characters from the string str.\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'',''),(327,'DATEDIFF',14,' DATEDIFF(expr,expr2)\n\n\nDATEDIFF() returns the number of days between the start date\nexpr and the end date expr2.\nexpr and expr2 are date or date-and-time expressions.\nOnly the date parts of the values are used in the calculation.\n','mysql> SELECT DATEDIFF(\'1997-12-31 23:59:59\',\'1997-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'1997-11-30 23:59:59\',\'1997-12-31\');\n -> -31',''),(328,'BIN',23,' BIN(N)\nReturns a string representation of the binary value of N, where\nN is a longlong (BIGINT) number. This is equivalent to\nCONV(N,10,2). Returns NULL if N is NULL.\n','mysql> SELECT BIN(12);\n -> \'1100\'',''),(329,'MULTILINESTRING',2,' MultiLineString(ls1,ls2,...)\nConstructs a WKB MultiLineString value using WKB LineString\narguments. If any argument is not a WKB LineString, the return\nvalue is NULL.\n','',''),(330,'LOAD DATA',6,'The LOAD DATA INFILE statement reads rows from a text file into a\ntable at a very high speed.\nFor more information about the efficiency of INSERT versus\nLOAD DATA INFILE and speeding up LOAD DATA INFILE,\n[Insert speed].\n\nAs of MySQL 4.1, the character set indicated by the\ncharacter_set_database system variable is used to interpret the\ninformation in the file. SET NAMES and the setting of\ncharacter_set_client do not affect input interpretation.\n\nYou can also load data files by using the mysqlimport utility; it\noperates by sending a LOAD DATA INFILE statement to the server. The\n--local option causes mysqlimport to read data files from the\nclient host. You can specify the --compress option to get better\nperformance over slow networks if the client and server support the\ncompressed protocol.\nSee also : [mysqlimport, , mysqlimport].\n\nIf you specify the LOW_PRIORITY keyword, execution of the\nLOAD DATA statement is delayed until no other clients are reading\nfrom the table.\n\nIf you specify the CONCURRENT keyword with a MyISAM table that\nsatisfies the condition for concurrent inserts (that is, it contains no free\nblocks in the middle),\nthen other threads can retrieve data from the table while LOAD DATA\nis executing. Using this option affects the performance of LOAD DATA\na bit, even if no other thread is using the table at the same time.\n\nIf the LOCAL keyword is specified, it is\ninterpreted with respect to the client end of the connection:\n\n\n --- If LOCAL is specified, the file is read by the client program on the\nclient host and sent to the server. The file can be given as a full pathname\nto specify its exact location. If given as a relative pathname, the name is\ninterpreted relative to the directory in which the client program was started.\n\n --- If LOCAL is not specified, the\nfile must be located on the server host and is read directly by the server.\n\n\nLOCAL is available in MySQL 3.22.6 or later.\n\nWhen locating files on the server host, the server uses the following rules:\n\n --- If an absolute pathname is given, the server uses the pathname as is.\n\n --- If a relative pathname with one or more leading components is given,\nthe server searches for the file relative to the server\'s data directory.\n\n --- If a filename with no leading components is given, the server looks for\nthe file in the database directory of the default database.\n\nNote that these rules mean that a file named as *./myfile.txt is read from\nthe server\'s data directory, whereas the same file named as *myfile.txt is\nread from the database directory of the default database. For example,\nthe following LOAD DATA statement reads the file *data.txt\nfrom the database directory for db1 because db1 is the current\ndatabase, even though the statement explicitly loads the file into a\ntable in the db2 database:\n\nmysql> USE db1;\nmysql> LOAD DATA INFILE \'data.txt\' INTO TABLE db2.my_table;\n\nNote that Windows pathnames are specified using forward slashes rather than\nbackslashes. If you do use backslashes, you must double them.\n\nFor security reasons, when reading text files located on the server, the\nfiles must either reside in the database directory or be readable by all.\nAlso, to use LOAD DATA INFILE on server files, you must have the\nFILE privilege.\n','LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE \'file_name.txt\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [FIELDS\n [TERMINATED BY \'\\t\']\n [[OPTIONALLY] ENCLOSED BY \'\']\n [ESCAPED BY \'\\\\\' ]\n ]\n [LINES\n [STARTING BY \'\']\n [TERMINATED BY \'\\n\']\n ]\n [IGNORE number LINES]\n [(col_name,...)]',''),(331,'BLOB TYPE',1,' BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535\n(2^16 - 1) bytes.\n\nBeginning with MySQL 4.1, an optional length M can be given.\nMySQL will create the column as the smallest BLOB type largest\nenough to hold values M bytes long.\n','',''),(332,'LOCALTIME',14,' LOCALTIME\n LOCALTIME()\n\nLOCALTIME and LOCALTIME() are synonyms for\nNOW().\n','',''),(333,'MPOINTFROMTEXT',3,' MPointFromText(wkt[,srid])\n MultiPointFromText(wkt[,srid])\nConstructs a MULTIPOINT value using its WKT representation and SRID.\n','',''),(334,'BLOB',1,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types, TINYBLOB, BLOB,\nMEDIUMBLOB, and LONGBLOB, differ only in the maximum length of\nthe values they can hold.\n','',''),(335,'PASSWORD',17,'','mysql> SELECT PASSWORD(\'badpwd\');\n -> \'7f84554057dd964b\'',''),(336,'CHAR',1,' [NATIONAL] CHAR(M) [BINARY | ASCII | UNICODE]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length. The\nrange of M is 0 to 255 characters (1 to 255 prior to MySQL 3.23).\n\nNote: Trailing spaces are removed when CHAR values are\nretrieved.\n\nFrom MySQL 4.1.0 to 5.0.2, a CHAR column with a length specification\ngreater than 255 is converted to the smallest TEXT type that can hold\nvalues of the given length. For example, CHAR(500) is converted to\nTEXT, and CHAR(200000) is converted to MEDIUMTEXT.\nThis is a compatibility feature. However, this conversion causes the column\nto become a variable-length column, and also affects trailing-space removal.\n\nCHAR is shorthand for CHARACTER.\nNATIONAL CHAR (or its equivalent short form, NCHAR) is the\nstandard SQL way to define that a CHAR column should use the default\ncharacter set. This is the default in MySQL.\n\nAs of MySQL 4.1.2, the BINARY attribute is shorthand for specifying\nthe binary collation of the column character set. Sorting and comparison is\nbased on numeric character values. Before 4.1.2, BINARY attribute\ncauses the column to be treated as a binary string. Sorting and comparison\nis based on numeric byte values.\n\nFrom MySQL 4.1.0 on, column type CHAR BYTE is an alias for\nCHAR BINARY. This is a compatibility feature.\n\nFrom MySQL 4.1.0 on, the ASCII attribute can be specified for\nCHAR. It assigns the latin1 character set.\n\nFrom MySQL 4.1.1 on, the UNICODE attribute can be specified for\nCHAR. It assigns the ucs2 character set.\n\nMySQL allows you to create a column of type CHAR(0). This is mainly\nuseful when you have to be compliant with some old applications that depend\non the existence of a column but that do not actually use the value. This\nis also quite nice when you need a column that can take only two values: A\nCHAR(0) column that is not defined as NOT NULL occupies only\none bit and can take only the values NULL and \'\' (the empty\nstring).\n\n CHAR\nThis is a synonym for CHAR(1).\n','',''),(337,'UTC_DATE',14,' UTC_DATE\n UTC_DATE()\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or\nYYYYMMDD format, depending on whether the function is used in a\nstring or numeric context.\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814',''),(338,'DIMENSION',19,' Dimension(g)\nReturns the inherent dimension of the geometry value g. The result\ncan be -1, 0, 1, or 2. (The meaning of these values is given in\n[GIS class geometry].)\n','mysql> SELECT Dimension(GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------+\n| Dimension(GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+',''),(339,'COUNT DISTINCT',12,' COUNT(DISTINCT expr,[expr...])\nReturns a count of the number of different non-NULL values.\n','mysql> SELECT COUNT(DISTINCT results) FROM student;',''),(340,'BIT',1,' BIT[(M)]\n\nA bit-field type. M indicates the number of bits per value, from 1 to\n64. The default is 1 if M is omitted.\n\nThis data type was added in MySQL 5.0.3 for MyISAM, and extended\nin 5.0.5 to MEMORY, InnoDB, and BDB. Before 5.0.3,\nBIT is a synonym for TINYINT(1).\n','',''),(341,'EQUALS',11,' Equals(g1,g2)\nReturns 1 or 0 to indicate whether or not g1 is spatially equal to\ng2.\n','',''),(342,'SHOW CREATE VIEW',24,'This statement shows a CREATE VIEW statement that creates\nthe given view.\n','SHOW CREATE VIEW view_name',''),(343,'INTERVAL',26,' INTERVAL(N,N1,N2,N3,...)\nReturns 0 if N < N1, 1 if N < N2\nand so on or -1 if N is NULL. All arguments are treated\nas integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because\na binary search is used (very fast).\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0',''),(344,'FROM_DAYS',14,' FROM_DAYS(N)\nGiven a daynumber N, returns a DATE value.\n','mysql> SELECT FROM_DAYS(729669);\n -> \'1997-10-07\'',''),(345,'BIT_COUNT',27,' BIT_COUNT(N)\nReturns the number of bits that are set in the argument N.\n','mysql> SELECT BIT_COUNT(29);\n -> 4',''),(346,'UTC_TIMESTAMP',14,' UTC_TIMESTAMP\n UTC_TIMESTAMP()\nReturns the current UTC date and time as a value in \'YYYY-MM-DD HH:MM:SS\'\nor YYYYMMDDHHMMSS format, depending on whether the function is used in\na string or numeric context.\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804',''),(347,'+',4,' +\nAddition:\n','mysql> SELECT 3+5;\n -> 8',''),(348,'INET_NTOA',21,' INET_NTOA(expr)\nGiven a numeric network address (4 or 8 byte), returns the dotted-quad\nrepresentation of the address as a string.\n','mysql> SELECT INET_NTOA(3520061480);\n -> \'209.207.224.40\'',''),(349,'ACOS',4,' ACOS(X)\nReturns the arc cosine of X, that is, the value whose cosine is\nX. Returns NULL if X is not in the range -1 to\n1.\n','mysql> SELECT ACOS(1);\n -> 0.000000\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.570796',''),(350,'ISOLATION',10,'SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL\n{ READ UNCOMMITTED | READ COMMITTED | REPEATABLE READ | SERIALIZABLE }\n\nThis statement\nsets the transaction isolation level for the next transaction, globally, or\nfor the current session.\n\nThe default behavior of SET TRANSACTION is to set the isolation level\nfor the next (not yet\nstarted) transaction. If you use the GLOBAL keyword, the statement\nsets the default transaction level globally for all new connections\ncreated from that point on. Existing connections are unaffected.\nYou need the SUPER\nprivilege to do this. Using the SESSION keyword sets the\ndefault transaction level for all future transactions performed on the\ncurrent connection.\n\nFor descriptions of each InnoDB transaction isolation level, see\n[InnoDB transaction isolation, InnoDB transaction isolation].\nInnoDB supports each of these levels\nfrom MySQL 4.0.5 on. The default level is REPEATABLE READ.\n\nYou can set the initial default global isolation level for mysqld with\nthe --transaction-isolation option.\nSee also : [Server options].\n','',''),(351,'CEILING',4,' CEILING(X)\n CEIL(X)\nReturns the smallest integer value not less than X.\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEIL(-1.23);\n -> -1',''),(352,'SIN',4,' SIN(X)\nReturns the sine of X, where X is given in radians.\n','mysql> SELECT SIN(PI());\n -> 0.000000',''),(353,'DAYOFWEEK',14,' DAYOFWEEK(date)\nReturns the weekday index\nfor date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n','mysql> SELECT DAYOFWEEK(\'1998-02-03\');\n -> 3',''),(354,'LINEFROMWKB',13,' LineFromWKB(wkb[,srid])\n LineStringFromWKB(wkb[,srid])\nConstructs a LINESTRING value using its WKB representation and SRID.\n','',''),(355,'GEOMETRYTYPE',19,' GeometryType(g)\nReturns as a string the name of the geometry type of which\nthe geometry instance g is a member.\nThe name corresponds to one of the instantiable Geometry subclasses.\n','mysql> SELECT GeometryType(GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------+\n| GeometryType(GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------+\n| POINT |\n+------------------------------------------+',''),(356,'GRANT TYPES',7,'For the GRANT and REVOKE statements, priv_type can be\nspecified as any of the following:\n\n Privilege Meaning\n ALL [PRIVILEGES] Sets all simple privileges except GRANT OPTION\n ALTER Allows use of ALTER TABLE\n ALTER ROUTINE Alter or drop stored routines\n CREATE Allows use of CREATE TABLE\n CREATE ROUTINE Create stored routines\n CREATE TEMPORARY TABLES Allows use of CREATE TEMPORARY TABLE\n CREATE USER Allows use of CREATE USER, DROP USER, RENAME USER, and REVOKE ALL PRIVILEGES.\n CREATE VIEW Allows use of CREATE VIEW\n DELETE Allows use of DELETE\n DROP Allows use of DROP TABLE\n EXECUTE Allows the user to run stored routines\n FILE Allows use of SELECT ... INTO OUTFILE and LOAD DATA INFILE\n INDEX Allows use of CREATE INDEX and DROP INDEX\n INSERT Allows use of INSERT\n LOCK TABLES Allows use of LOCK TABLES on tables for which you have the SELECT privilege\n PROCESS Allows use of SHOW FULL PROCESSLIST\n REFERENCES Not implemented\n RELOAD Allows use of FLUSH\n REPLICATION CLIENT Allows the user to ask where slave or master servers are\n REPLICATION SLAVE Needed for replication slaves (to read binary log events from the master)\n SELECT Allows use of SELECT\n SHOW DATABASES SHOW DATABASES shows all databases\n SHOW VIEW Allows use of SHOW CREATE VIEW\n SHUTDOWN Allows use of mysqladmin shutdown\n SUPER Allows use of CHANGE MASTER, KILL,\nPURGE MASTER LOGS, and SET GLOBAL statements, the mysqladmin debug command; allows you to connect (once) even if max_connections is reached\n UPDATE Allows use of UPDATE\n USAGE Synonym for ``no privileges\'\'\n GRANT OPTION Allows privileges to be granted\n \n','',''),(357,'CREATE VIEW',24,'This statement creates a new view, or replaces an existing one if the\nOR REPLACE clause is given. The select_statement is a\nSELECT statement that provides the definition of the view.\nThe statement can select from base tables or other views.\n\nThis statement requires the CREATE VIEW privilege for the view, and\nsome privilege for each column selected by the SELECT statement.\nFor columns used elsewhere in the SELECT statement you must have\nthe SELECT privilege. If the OR REPLACE clause is present,\nyou must also have the DELETE privilege for the view.\n\nA view belongs to a database. By default, a new view is created in the\ncurrent database. To create the view explicitly in a given database,\nspecify the name as db_name.view_name when you create it.\n\nmysql> CREATE VIEW test.v AS SELECT * FROM t;\n\nTables and views share the same namespace within a database, so a database\ncannot contain a table and a view that have the same name.\n\nViews must have unique column names with no duplicates, just like base\ntables. By default, the names of the columns retrieved by the SELECT\nstatement are used for the view column names. To define explicit names for\nthe view columns, the optional column_list clause can be given as a\nlist of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns. They can also be expressions that use functions, constant\nvalues, operators, and so forth.\n\nUnqualified table or view names in the SELECT statement are\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifying the table or view name with\nthe proper database name.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables. The\nfollowing example defines a view that selects two columns from another\ntable, as well as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\n\n --- The SELECT statement cannot contain a subquery in the FROM\nclause.\n\n --- The SELECT statement cannot refer to system or user variables.\n\n --- The SELECT statement cannot refer to prepared statement parameters.\n\n --- Within a stored routine, the definition cannot refer to routine\nparameters or local variables.\n\n --- Any table or view referred to in the definition must exist. However, after\na view has been created, it is possible to drop a table or view that the\ndefinition refers to. To check a view definition for problems of this kind,\nuse the CHECK TABLE statement.\n\n --- The definition cannot refer to a TEMPORARY table, and you cannot\ncreate a TEMPORARY view.\n\n --- The tables named in the view definition must already exist.\n\n --- You cannot associate a trigger with a view.\n\n\nORDER BY is allowed in a view definition, but it is ignored if you\nselect from a view using a statement that has its own ORDER BY.\n\nFor other options or clauses in the definition, they are added to the\noptions or clauses of the statement that references the view, but the effect\nis undefined. For example, if a view definition includes a LIMIT\nclause, and you select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same\nprinciple applies to options such as ALL, DISTINCT, or\nSQL_SMALL_RESULT that follow the SELECT keyword, and to\nclauses such as INTO, FOR UPDATE, LOCK IN SHARE MODE,\nand PROCEDURE.\n\nIf you create a view and then change the query processing environment by\nchanging system variables, that may affect the results you get from the\nview:\n\nmysql> CREATE VIEW v AS SELECT CHARSET(CHAR(65)), COLLATION(CHAR(65));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SET NAMES \'latin1\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| latin1 | latin1_swedish_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nmysql> SET NAMES \'utf8\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT * FROM v;\n+-------------------+---------------------+\n| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |\n+-------------------+---------------------+\n| utf8 | utf8_general_ci |\n+-------------------+---------------------+\n1 row in set (0.00 sec)\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL.\nALGORITHM takes three values: MERGE, TEMPTABLE, or\nUNDEFINED. The default algorithm is UNDEFINED if no\nALGORITHM clause is present. The algorithm affects how MySQL\nprocesses the view.\n\nFor MERGE, the text of a statement that refers to the view and the view\ndefinition are merged such that parts of the view definition replace\ncorresponding parts of the statement.\n\nFor TEMPTABLE, the results from the view are retrieved into a\ntemporary table, which then is used to execute the statement.\n\nFor UNDEFINED, MySQL chooses which algorithm to use. It prefers\nMERGE over TEMPTABLE if possible, because MERGE is\nusually more efficient and because a view cannot be updatable if a temporary\ntable is used.\n\nA reason to choose TEMPTABLE explicitly is that locks can be released\non underlying tables after the temporary table has been created and before\nit is used to finish processing the statement. This might result in quicker\nlock release than the MERGE algorithm so that other clients that use\nthe view are not blocked as long.\n\nA view algorithm can be UNDEFINED three ways:\n\n\n --- No ALGORITHM clause is present in the CREATE VIEW statement.\n\n --- The CREATE VIEW statement has an explicit ALGORITHM = UNDEFINED\nclause.\n\n --- ALGORITHM = MERGE is specified for a view that can be processed only\nwith a temporary table. In this case, MySQL generates a warning and sets\nthe algorithm to UNDEFINED.\n\n\n\nAs mentioned earlier, MERGE is handled by merging corresponding parts\nof a view definition into the statement that refers to the view. The\nfollowing examples briefly illustrate how the MERGE algorithm works.\nThe examples assume that there is a view v_merge that has this\ndefinition:\n\nCREATE ALGORITHM = MERGE VIEW v_merge (vc1, vc2) AS\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 1: Suppose that we issue this statement:\n\nSELECT * FROM v_merge;\n\nMySQL handles the statement as follows:\n\n\n --- v_merge becomes t\n\n --- * becomes vc1, vc2, which corresponds to c1, c2\n\n --- The view WHERE clause is added\n\n\nThe resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE c3 > 100;\n\nExample 2: Suppose that we issue this statement:\n\nSELECT * FROM v_merge WHERE vc1 < 100;\n\nThis statement is handled similarly to the previous one, except that\nvc1 < 100 becomes c1 < 100 and the view WHERE clause is\nadded to the statement WHERE clause using an AND connective\n(and parentheses are added to make sure the parts of the clause are executed\nwith correct precedence). The resulting statement to be executed becomes:\n\nSELECT c1, c2 FROM t WHERE (c3 > 100) AND (c1 < 100);\n\nEffectively, the statement to be executed has a WHERE clause of this\nform:\n\nWHERE (select WHERE) AND (view WHERE)\n\nThe MERGE algorithm requires a one-to relationship between the rows\nin the view and the rows in the underlying table. If this relationship does\nnot hold, a temporary table must be used instead. Lack of a one-to-one\nrelationship occurs if the view contains any of a number of constructs:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forth)\n\n --- DISTINCT\n\n --- GROUP BY\n\n --- HAVING\n\n --- UNION or UNION ALL\n\n --- Refers only to literal values (in this case, there is no underlying table)\n\n\nSome views are updatable. That is, you can use them in statements such as\nUPDATE, DELETE, or INSERT to update the contents of the\nunderlying table. For a view to be updatable, there must be a one-to\nrelationship between the rows in the view and the rows in the underlying\ntable. There are also certain other constructs that make a view\nnon-updatable. To be more specific, a view is not updatable if it contains\nany of the following:\n\n\n --- Aggregate functions (SUM(), MIN(), MAX(),\nCOUNT(), and so forth)\n\n --- DISTINCT\n\n --- GROUP BY\n\n --- HAVING\n\n --- UNION or UNION ALL\n\n --- Subquery in the select list\n\n --- Join\n\n --- Non-updatable view in the FROM clause\n\n --- A subquery in the WHERE clause that refers to a table in the\nFROM clause\n\n --- Refers only to literal values (in this case, there is no underlying table to\nupdate)\n\n --- ALGORITHM = TEMPTABLE (use of a temporary table always makes a view\nnon-updatable)\n\n\nWith respect to insertability (being updatable with INSERT\nstatements), an updatable view is insertable if it also satisfies these\nadditional requirements for the view columns:\n\n\n --- There must be no duplicate view column names.\n\n --- The view must contain all columns in the base table that do not have a\ndefault value.\n\n --- The view columns must be simple column references and not derived columns.\nA derived column is one that is not a simple column reference but is derived\nfrom an expression. These are examples of derived columns:\n\n3.14159\ncol1 + 3\nUPPER(col2)\ncol3 / col4\n(subquery)\n\n\nA view that has a mix of simple column references and derived columns is not\ninsertable, but it can be updatable if you update only those columns that\nare not derived. Consider this view:\n\nCREATE VIEW v AS SELECT col1, 1 AS col2 FROM t;\n\nThis view is not insertable because col2 is derived from an\nexpression. But it is updatable if the update does not try to update\ncol2. This update is allowable:\n\nUPDATE v SET col1 = 0;\n\nThis update is not allowable because it attempts to update a derived column:\n\nUPDATE v SET col2 = 0;\n\nIt is sometimes possible for a multiple-table view to be updatable, assuming\nthat it can be processed with the MERGE algorithm. For this to work,\nthe view must use an inner join (not an outer join or a UNION). Also,\nonly a single table in the view definition can be updated, so the SET\nclause must name only columns from one of the tables in the view. Views\nthat use UNION ALL are disallowed even though they might be\ntheoretically updatable, because the implementation uses temporary tables to\nprocess them.\n\n\nFor a multiple-table updatable view, INSERT can work if it inserts into a\nsingle table. DELETE is not supported.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n','',''),(358,'TRIM',23,' TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str)\n TRIM(remstr FROM] str)\nReturns the string str with all remstr prefixes and/or suffixes\nremoved. If none of the specifiers BOTH, LEADING, or\nTRAILING is given, BOTH is assumed. If remstr is optional\nand not specified, spaces are removed.\n','mysql> SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'',''),(359,'IS',26,' IS boolean_value\n IS NOT boolean_value\nTests whether a value against a boolean value, where boolean_value can\nbe TRUE, FALSE, or UNKNOWN.\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\nmysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0',''),(360,'GET_FORMAT',14,' GET_FORMAT(DATE|TIME|DATETIME, \'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\')\nReturns a format string. This function is useful in combination with the\nDATE_FORMAT() and the STR_TO_DATE() functions.\nThe three possible values for the first argument\nand the five possible values for the second argument result in 15 possible\nformat strings (for the specifiers used, see the table in the\nDATE_FORMAT() function description).\n Function Call Result\n GET_FORMAT(DATE,\'USA\') \'%m.%d.%Y\'\n GET_FORMAT(DATE,\'JIS\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'ISO\') \'%Y-%m-%d\'\n GET_FORMAT(DATE,\'EUR\') \'%d.%m.%Y\'\n GET_FORMAT(DATE,\'INTERNAL\') \'%Y%m%d\'\n GET_FORMAT(DATETIME,\'USA\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'JIS\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'ISO\') \'%Y-%m-%d %H:%i:%s\'\n GET_FORMAT(DATETIME,\'EUR\') \'%Y-%m-%d-%H.%i.%s\'\n GET_FORMAT(DATETIME,\'INTERNAL\') \'%Y%m%d%H%i%s\'\n GET_FORMAT(TIME,\'USA\') \'%h:%i:%s %p\'\n GET_FORMAT(TIME,\'JIS\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'ISO\') \'%H:%i:%s\'\n GET_FORMAT(TIME,\'EUR\') \'%H.%i.%S\'\n GET_FORMAT(TIME,\'INTERNAL\') \'%H%i%s\'\n \nISO format is ISO 9075, not ISO 8601.\n\nAs of MySQL 4.1.4, TIMESTAMP can also be used;\nGET_FORMAT() returns the same values as for DATETIME.\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> 2003-10-31\n@c Following is commented out because not yet implemented\n@c mysql> SET DATE_FORMAT=GET_FORMAT(DATE, \'USA\'); SELECT \'2003-10-31\';\n@c -> 10-31-2003',''),(361,'TINYBLOB',1,' TINYBLOB\n\nA BLOB column with a maximum length of 255\n(2^8 - 1) bytes.\n','',''),(362,'SAVEPOINT',10,'SAVEPOINT identifier\nROLLBACK TO SAVEPOINT identifier\n\nStarting from MySQL 4.0.14 and 4.1.1, InnoDB supports the SQL statements\nSAVEPOINT and ROLLBACK TO SAVEPOINT.\n','',''),(363,'IF',9,' IF(expr1,expr2,expr3)\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then\nIF() returns expr2, else it returns expr3.\nIF() returns a numeric or string value, depending on the context\nin which it is used.\n','mysql> SELECT IF(1>2,2,3);\n -> 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n -> \'no\'',''),(364,'PURGE',6,'','PURGE MASTER LOGS TO \'mysql-bin.010\';\nPURGE MASTER LOGS BEFORE \'2003-04-02 22:46:26\';',''),(365,'USER',25,' USER()\n\nReturns the current MySQL username and hostname.\n','mysql> SELECT USER();\n -> \'davida@localhost\'',''),(366,'MPOINTFROMWKB',13,' MPointFromWKB(wkb[,srid])\n MultiPointFromWKB(wkb[,srid])\nConstructs a MULTIPOINT value using its WKB representation and SRID.\n','',''),(367,'ALTER TABLE',28,'ALTER TABLE allows you to change the structure of an existing table.\nFor example, you can add or delete columns, create or destroy indexes, change\nthe type of existing columns, or rename columns or the table itself. You can\nalso change the comment for the table and type of the table.\n','ALTER [IGNORE] TABLE tbl_name\n alter_specification [, alter_specification] ...\n\nalter_specification:\n ADD [COLUMN] column_definition [FIRST | AFTER col_name ]\n | ADD [COLUMN] (column_definition,...)\n | ADD INDEX [index_name] [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n PRIMARY KEY [index_type] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n UNIQUE [index_name] [index_type] (index_col_name,...)\n | ADD [FULLTEXT|SPATIAL] [index_name] (index_col_name,...)\n | ADD [CONSTRAINT [symbol]]\n FOREIGN KEY [index_name] (index_col_name,...)\n [reference_definition]\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name column_definition\n [FIRST|AFTER col_name]\n | MODIFY [COLUMN] column_definition [FIRST | AFTER col_name]\n | DROP [COLUMN] col_name\n | DROP PRIMARY KEY\n | DROP INDEX index_name\n | DROP FOREIGN KEY fk_symbol\n | DISABLE KEYS\n | ENABLE KEYS\n | RENAME [TO] new_tbl_name\n | ORDER BY col_name\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | [DEFAULT] CHARACTER SET charset_name [COLLATE collation_name]\n | DISCARD TABLESPACE\n | IMPORT TABLESPACE\n | table_options',''),(368,'CHAR BYTE',22,'CHAR BYTE is an alias for CHAR BINARY.\n','',''),(369,'MERGE',7,'\n@menu\n* MERGE table problems:: MERGE Table Problems\n@end menu\n\nThe MERGE storage engine was introduced in MySQL 3.23.25. It\nis also known as the MRG_MyISAM engine.\n\nA MERGE table is a collection of identical MyISAM tables that\ncan be used as one. ``Identical\'\' means that all tables have\nidentical column and index information. You can\'t merge tables in which the\ncolumns are listed in a different order, don\'t have exactly the same columns, or\nhave the indexes in different order. However, any or all of the tables can be\ncompressed with myisampack.\nSee also : [myisampack, , myisampack].\nDifferences in table options such as AVG_ROW_LENGTH, MAX_ROWS,\nor PACK_KEYS do not matter.\n','mysql> CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20));\nmysql> INSERT INTO t1 (message) VALUES (\'Testing\'),(\'table\'),(\'t1\');\nmysql> INSERT INTO t2 (message) VALUES (\'Testing\'),(\'table\'),(\'t2\');\nmysql> CREATE TABLE total (\n -> a INT NOT NULL AUTO_INCREMENT,\n -> message CHAR(20), INDEX(a))\n -> TYPE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;',''),(370,'CREATE TABLE',28,'CREATE TABLE creates a table with the given name.\nYou must have the CREATE privilege for the table.\n\nRules for allowable table names are given in [Legal names].\nBy default, the table is created in the current database.\nAn error occurs if the table exists, if there is no current database,\nor if the database does not exist.\n','CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n [(create_definition,...)]\n [table_options] [select_statement]',''),(371,'>',26,' >\nGreater than:\n','mysql> SELECT 2 > 2;\n -> 0',''),(372,'MICROSECOND',14,' MICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'1997-12-31 23:59:59.000010\');\n -> 10',''),(373,'ANALYZE',7,'This statement analyzes and stores the key distribution for a table.\nDuring the analysis, the table is locked with a read lock. This works on\nMyISAM and BDB tables and (as of MySQL 4.0.13) InnoDB\ntables. For MyISAM tables, this\nstatement is equivalent to using myisamchk -a.\n\nMySQL uses the stored key distribution to decide the order in which\ntables should be joined when you perform a join on something other than a\nconstant.\n','ANALYZE [LOCAL | NO_WRITE_TO_BINLOG] TABLE tbl_name [, tbl_name] ...',''),(374,'CONSTRAINT',7,'The syntax of a foreign key constraint definition in InnoDB looks like\nthis:\n\n[CONSTRAINT symbol] FOREIGN KEY [id] (index_col_name, ...)\n REFERENCES tbl_name (index_col_name, ...)\n [ON DELETE {RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT}]\n [ON UPDATE {RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT}]\n','CREATE TABLE product (category INT NOT NULL, id INT NOT NULL,\n price DECIMAL,\n PRIMARY KEY(category, id)) TYPE=INNODB;\nCREATE TABLE customer (id INT NOT NULL,\n PRIMARY KEY (id)) TYPE=INNODB;\nCREATE TABLE product_order (no INT NOT NULL AUTO_INCREMENT,\n product_category INT NOT NULL,\n product_id INT NOT NULL,\n customer_id INT NOT NULL,\n PRIMARY KEY(no),\n INDEX (product_category, product_id),\n FOREIGN KEY (product_category, product_id)\n REFERENCES product(category, id)\n ON UPDATE CASCADE ON DELETE RESTRICT,\n INDEX (customer_id),\n FOREIGN KEY (customer_id)\n REFERENCES customer(id)) TYPE=INNODB;',''),(375,'FIELD',23,' FIELD(str,str1,str2,str3,...)\nReturns the index of str in the str1, str2,\nstr3, ... list.\nReturns 0 if str is not found.\n\nIf all arguments to FIELD() are strings, all arguments are compared\nas strings. If all arguments are numbers, they are compared as\nnumbers. Otherwise, the arguments are compared as double.\n\nIf str is NULL, the return value is 0 because\nNULL fails equality comparison with any value.\nFIELD() is the complement of ELT().\n','mysql> SELECT FIELD(\'ej\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 2\nmysql> SELECT FIELD(\'fo\', \'Hej\', \'ej\', \'Heja\', \'hej\', \'foo\');\n -> 0',''),(376,'MAKETIME',14,' MAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and\nsecond arguments.\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'',''),(377,'CURDATE',14,' CURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in a string or numeric\ncontext.\n','mysql> SELECT CURDATE();\n -> \'1997-12-15\'\nmysql> SELECT CURDATE() + 0;\n -> 19971215',''),(378,'MIN MAX',12,' MIN([DISTINCT] expr)\n MAX([DISTINCT] expr)\nReturns the minimum or maximum value of expr. MIN() and\nMAX() may take a string argument; in such cases they return the\nminimum or maximum string value. See also : [MySQL indexes].\nThe DISTINCT keyword can be used as of MySQL 5.0.0 to find the minimum\nor maximum of the distinct values of expr; this is supported, but\nproduces the same result as omitting DISTINCT.\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n -> FROM student\n -> GROUP BY student_name;',''),(379,'SET PASSWORD',7,'','SET PASSWORD = PASSWORD(\'some password\')\nSET PASSWORD FOR user = PASSWORD(\'some password\')',''),(380,'ENUM',1,' ENUM(\'value1\',\'value2\',...)\n\nAn enumeration. A string object that can have only one value, chosen\nfrom the list of values \'value1\', \'value2\', ...,\nNULL or the special \'\' error value. An ENUM column can\nhave a maximum of 65,535 distinct values.\nENUM values are represented internally as integers.\n','',''),(381,'DATABASE',25,' DATABASE()\nReturns the default (current) database name.\nAs of MySQL 4.1, the string has the utf8 character set.\n','mysql> SELECT DATABASE();\n -> \'test\'',''),(382,'POINTFROMWKB',13,' PointFromWKB(wkb[,srid])\nConstructs a POINT value using its WKB representation and SRID.\n','',''),(383,'POWER',4,' POW(X,Y)\n POWER(X,Y)\nReturns the value of X raised to the power of Y.\n','mysql> SELECT POW(2,2);\n -> 4.000000\nmysql> SELECT POW(2,-2);\n -> 0.250000',''),(384,'ATAN',4,' ATAN(X)\nReturns the arc tangent of X, that is, the value whose tangent is\nX.\n','mysql> SELECT ATAN(2);\n -> 1.107149\nmysql> SELECT ATAN(-2);\n -> -1.107149',''),(385,'STRCMP',23,' STRCMP(expr1,expr2)\nSTRCMP()\nreturns 0 if the strings are the same, -1 if the first\nargument is smaller than the second according to the current sort order,\nand 1 otherwise.\n','mysql> SELECT STRCMP(\'text\', \'text2\');\n -> -1\nmysql> SELECT STRCMP(\'text2\', \'text\');\n -> 1\nmysql> SELECT STRCMP(\'text\', \'text\');\n -> 0',''),(386,'INSERT DELAYED',6,'The DELAYED option for the INSERT statement is a\nMySQL extension to standard SQL that is very useful if you have clients\nthat can\'t wait for the INSERT to complete. This is a common\nproblem when you use MySQL for logging and you also\nperiodically run SELECT and UPDATE statements that take a\nlong time to complete. DELAYED was introduced in MySQL\n3.22.15.\n\nWhen a client uses INSERT DELAYED, it gets an okay from the server at\nonce, and the row is queued to be inserted when the table is not in use by\nany other thread.\n\nAnother major benefit of using INSERT DELAYED is that inserts\nfrom many clients are bundled together and written in one block. This is much\nfaster than doing many separate inserts.\n\nThere are some constraints on the use of DELAYED:\n\n\n --- INSERT DELAYED works only with MyISAM and ISAM\ntables.\nFor MyISAM tables, if there are no free blocks in the middle of the\ndata file, concurrent SELECT and INSERT statements are supported.\nUnder these circumstances, you very seldom need to use INSERT\nDELAYED with MyISAM.\nSee also : [MyISAM storage engine, , MyISAM storage engine].\n\n --- INSERT DELAYED should be used only for INSERT statements that\nspecify value lists. This is enforced as of MySQL 4.0.18. The server ignores\nDELAYED for INSERT DELAYED ... SELECT statements.\n\n --- The server ignores\nDELAYED for INSERT DELAYED ... ON DUPLICATE UPDATE statements.\n\n --- Because the statement returns immediately before the rows are inserted,\nyou cannot use LAST_INSERT_ID() to get the AUTO_INCREMENT\nvalue the statement might generate.\n\n --- DELAYED rows are not visible to SELECT statements until they\nactually have been inserted.\n','INSERT DELAYED ...',''),(387,'MEDIUMTEXT',1,' MEDIUMTEXT\n\nA TEXT column with a maximum length of 16,777,215\n(2^24 - 1) characters.\n','',''),(388,'LN',4,' LN(X)\nReturns the natural logarithm of X.\n','mysql> SELECT LN(2);\n -> 0.693147\nmysql> SELECT LN(-2);\n -> NULL',''),(389,'LOG',4,' LOG(X)\n LOG(B,X)\nIf called with one parameter, this function returns the natural logarithm\nof X.\n','mysql> SELECT LOG(2);\n -> 0.693147\nmysql> SELECT LOG(-2);\n -> NULL',''),(390,'SET SQL_LOG_BIN',6,'SET SQL_LOG_BIN = {0|1}\n\nDisables or enables binary logging for the current connection\n(SQL_LOG_BIN is a session variable)\nif the client connects using an account that has the SUPER privilege.\nThe statement is refused with an error if the client does not have that\nprivilege. (Before MySQL 4.1.2, the statement was simply ignored in that case.)\n','',''),(391,'!=',26,' <>\n !=\nNot equal:\n','mysql> SELECT \'.01\' <> \'0.01\';\n -> 1\nmysql> SELECT .01 <> \'0.01\';\n -> 0\nmysql> SELECT \'zapp\' <> \'zappp\';\n -> 1',''),(392,'AES_DECRYPT',17,' AES_ENCRYPT(str,key_str)\n AES_DECRYPT(crypt_str,key_str)\nThese functions allow encryption and decryption of data using the official\nAES (Advanced Encryption Standard) algorithm, previously known as \"Rijndael.\"\nEncoding with a 128-bit key length is used, but you can extend it up to\n256 bits by modifying the source. We chose 128 bits because it is much\nfaster and it is usually secure enough.\n\nThe input arguments may be any length. If either argument is NULL,\nthe result of this function is also NULL.\n\nBecause AES is a block-level algorithm, padding is used to encode uneven length\nstrings and so the result string length may be calculated as\n16*(trunc(string_length/16)+1).\n\nIf AES_DECRYPT() detects invalid data or incorrect padding, it\nreturns NULL. However, it is possible for AES_DECRYPT()\nto return a non-NULL value (possibly garbage) if the input data or\nthe key is invalid.\n\nYou can use the AES functions to store data in an encrypted form by\nmodifying your queries:\n','INSERT INTO t VALUES (1,AES_ENCRYPT(\'text\',\'password\'));',''),(393,'DAYNAME',14,' DAYNAME(date)\nReturns the name of the weekday for date.\n','mysql> SELECT DAYNAME(\'1998-02-05\');\n -> \'Thursday\'',''),(394,'COERCIBILITY',25,' COERCIBILITY(str)\nReturns the collation coercibility value of the string argument.\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n -> 0\nmysql> SELECT COERCIBILITY(USER());\n -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n -> 4',''),(395,'INT',1,' INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to\n2147483647. The unsigned range is 0 to 4294967295.\n\n INTEGER[(M)] [UNSIGNED] [ZEROFILL]\n\nThis is a synonym for INT.\n','',''),(396,'RLIKE',23,' expr REGEXP pat\n expr RLIKE pat\n\nPerforms a pattern match of a string expression expr against a pattern\npat. The pattern can be an extended regular expression. The syntax\nfor regular expressions is discussed in [Regexp]. Returns 1\nif expr matches pat, otherwise returns 0. If either\nexpr or pat is NULL, the result is NULL.\nRLIKE is a synonym for REGEXP, provided for mSQL\ncompatibility.\n\nThe pattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\nNote: Because MySQL uses the C escape syntax in strings (for example,\n\'\\n\' to represent newline), you must double any \'\\\' that you\nuse in your REGEXP strings.\n\nAs of MySQL 3.23.4, REGEXP is not case sensitive for normal (not\nbinary) strings.\n','mysql> SELECT \'Monty!\' REGEXP \'m%y%%\';\n -> 0\nmysql> SELECT \'Monty!\' REGEXP \'.*\';\n -> 1\nmysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\';\n -> 1\nmysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\';\n -> 1 0\nmysql> SELECT \'a\' REGEXP \'^[a-d]\';\n -> 1',''),(397,'GLENGTH',18,' GLength(ls)\nReturns as a double-precision number the length of the LineString\nvalue ls in its associated spatial reference.\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n| 2.8284271247462 |\n+----------------------------+',''),(398,'RADIANS',4,' RADIANS(X)\nReturns the argument X, converted from degrees to radians.\n','mysql> SELECT RADIANS(90);\n -> 1.570796',''),(399,'COLLATION',25,' COLLATION(str)\nReturns the collation for the character set of the string argument.\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'',''),(400,'COALESCE',26,' COALESCE(value,...)\nReturns the first non-NULL value in the list.\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NULL',''),(401,'VERSION',25,' VERSION()\nReturns a string that indicates the MySQL server version.\nAs of MySQL 4.1, the string has the utf8 character set.\n','mysql> SELECT VERSION();\n -> \'4.1.3-beta-log\'',''),(402,'MAKE_SET',23,' MAKE_SET(bits,str1,str2,...)\nReturns a set value (a string containing substrings separated by \',\'\ncharacters) consisting of the strings that have the corresponding bit in\nbits set. str1 corresponds to bit 0, str2 to bit 1,\nand so on. NULL values in str1, str2, ...\nare not appended to the result.\n','mysql> SELECT MAKE_SET(1,\'a\',\'b\',\'c\');\n -> \'a\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',\'world\');\n -> \'hello,world\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',NULL,\'world\');\n -> \'hello\'\nmysql> SELECT MAKE_SET(0,\'a\',\'b\',\'c\');\n -> \'\'',''),(403,'FIND_IN_SET',23,' FIND_IN_SET(str,strlist)\nReturns a value 1 to N if the string str is in the string list\nstrlist consisting of N substrings. A string list is a string\ncomposed of substrings separated by \',\' characters. If the first\nargument is a constant string and the second is a column of type SET,\nthe FIND_IN_SET() function is optimized to use bit arithmetic.\nReturns 0 if str is not in strlist or if strlist\nis the empty string. Returns NULL if either argument is NULL.\nThis function does not work properly if the first argument contains a comma\n(\',\') character.\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n -> 2',''); UNLOCK TABLES; /*!40000 ALTER TABLE `help_topic` ENABLE KEYS */; -- -- Table structure for table `host` -- DROP TABLE IF EXISTS `host`; CREATE TABLE `host` ( `Host` char(60) collate utf8_bin NOT NULL default '', `Db` char(64) collate utf8_bin NOT NULL default '', `Select_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Insert_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Update_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Delete_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Create_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Drop_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Grant_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `References_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Index_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Alter_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Create_tmp_table_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Lock_tables_priv` enum('N','Y') character set utf8 NOT NULL default 'N', PRIMARY KEY (`Host`,`Db`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Host privileges; Merged with database privileges'; -- -- Dumping data for table `host` -- /*!40000 ALTER TABLE `host` DISABLE KEYS */; LOCK TABLES `host` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `host` ENABLE KEYS */; -- -- Table structure for table `tables_priv` -- DROP TABLE IF EXISTS `tables_priv`; CREATE TABLE `tables_priv` ( `Host` char(60) collate utf8_bin NOT NULL default '', `Db` char(64) collate utf8_bin NOT NULL default '', `User` char(16) collate utf8_bin NOT NULL default '', `Table_name` char(64) collate utf8_bin NOT NULL default '', `Grantor` char(77) collate utf8_bin NOT NULL default '', `Timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter') character set utf8 NOT NULL default '', `Column_priv` set('Select','Insert','Update','References') character set utf8 NOT NULL default '', PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`), KEY `Grantor` (`Grantor`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table privileges'; -- -- Dumping data for table `tables_priv` -- /*!40000 ALTER TABLE `tables_priv` DISABLE KEYS */; LOCK TABLES `tables_priv` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `tables_priv` ENABLE KEYS */; -- -- Table structure for table `time_zone` -- DROP TABLE IF EXISTS `time_zone`; CREATE TABLE `time_zone` ( `Time_zone_id` int(10) unsigned NOT NULL auto_increment, `Use_leap_seconds` enum('Y','N') NOT NULL default 'N', PRIMARY KEY (`Time_zone_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zones'; -- -- Dumping data for table `time_zone` -- /*!40000 ALTER TABLE `time_zone` DISABLE KEYS */; LOCK TABLES `time_zone` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone` ENABLE KEYS */; -- -- Table structure for table `time_zone_leap_second` -- DROP TABLE IF EXISTS `time_zone_leap_second`; CREATE TABLE `time_zone_leap_second` ( `Transition_time` bigint(20) NOT NULL default '0', `Correction` int(11) NOT NULL default '0', PRIMARY KEY (`Transition_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Leap seconds information for time zones'; -- -- Dumping data for table `time_zone_leap_second` -- /*!40000 ALTER TABLE `time_zone_leap_second` DISABLE KEYS */; LOCK TABLES `time_zone_leap_second` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_leap_second` ENABLE KEYS */; -- -- Table structure for table `time_zone_name` -- DROP TABLE IF EXISTS `time_zone_name`; CREATE TABLE `time_zone_name` ( `Name` char(64) NOT NULL default '', `Time_zone_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`Name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone names'; -- -- Dumping data for table `time_zone_name` -- /*!40000 ALTER TABLE `time_zone_name` DISABLE KEYS */; LOCK TABLES `time_zone_name` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_name` ENABLE KEYS */; -- -- Table structure for table `time_zone_transition` -- DROP TABLE IF EXISTS `time_zone_transition`; CREATE TABLE `time_zone_transition` ( `Time_zone_id` int(10) unsigned NOT NULL default '0', `Transition_time` bigint(20) NOT NULL default '0', `Transition_type_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`Time_zone_id`,`Transition_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transitions'; -- -- Dumping data for table `time_zone_transition` -- /*!40000 ALTER TABLE `time_zone_transition` DISABLE KEYS */; LOCK TABLES `time_zone_transition` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_transition` ENABLE KEYS */; -- -- Table structure for table `time_zone_transition_type` -- DROP TABLE IF EXISTS `time_zone_transition_type`; CREATE TABLE `time_zone_transition_type` ( `Time_zone_id` int(10) unsigned NOT NULL default '0', `Transition_type_id` int(10) unsigned NOT NULL default '0', `Offset` int(11) NOT NULL default '0', `Is_DST` tinyint(3) unsigned NOT NULL default '0', `Abbreviation` char(8) NOT NULL default '', PRIMARY KEY (`Time_zone_id`,`Transition_type_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transition types'; -- -- Dumping data for table `time_zone_transition_type` -- /*!40000 ALTER TABLE `time_zone_transition_type` DISABLE KEYS */; LOCK TABLES `time_zone_transition_type` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `time_zone_transition_type` ENABLE KEYS */; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `Host` varchar(60) collate utf8_bin NOT NULL default '', `User` varchar(16) collate utf8_bin NOT NULL default '', `Password` varchar(41) collate utf8_bin NOT NULL default '', `Select_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Insert_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Update_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Delete_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Create_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Drop_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Reload_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Shutdown_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Process_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `File_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Grant_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `References_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Index_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Alter_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Show_db_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Super_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Create_tmp_table_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Lock_tables_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Execute_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Repl_slave_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `Repl_client_priv` enum('N','Y') character set utf8 NOT NULL default 'N', `ssl_type` enum('','ANY','X509','SPECIFIED') character set utf8 NOT NULL default '', `ssl_cipher` blob NOT NULL, `x509_issuer` blob NOT NULL, `x509_subject` blob NOT NULL, `max_questions` int(11) unsigned NOT NULL default '0', `max_updates` int(11) unsigned NOT NULL default '0', `max_connections` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`Host`,`User`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges'; -- -- Dumping data for table `user` -- /*!40000 ALTER TABLE `user` DISABLE KEYS */; LOCK TABLES `user` WRITE; INSERT INTO `user` VALUES ('localhost','root','2be8f2857bf57178','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0),('d0www.fnal.gov','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0),('d0www.fnal.gov','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost','whod0','3b7b1711276f0614','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost','wwwsrv','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0),('localhost','WWW','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0),('localhost','lxr','','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0),('localhost','backup','','Y','N','N','N','N','N','Y','N','N','N','N','N','N','N','Y','N','N','Y','N','N','N','','','','',0,0,0); UNLOCK TABLES; /*!40000 ALTER TABLE `user` ENABLE KEYS */; -- -- Table structure for table `user_info` -- DROP TABLE IF EXISTS `user_info`; CREATE TABLE `user_info` ( `User` varchar(16) collate utf8_bin NOT NULL default '', `Full_name` varchar(60) collate utf8_bin default NULL, `Description` varchar(255) collate utf8_bin default NULL, `Email` varchar(80) collate utf8_bin default NULL, `Contact_information` text collate utf8_bin, `Icon` blob, PRIMARY KEY (`User`), KEY `user_info_Full_name` (`Full_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Stores additional user information'; -- -- Dumping data for table `user_info` -- /*!40000 ALTER TABLE `user_info` DISABLE KEYS */; LOCK TABLES `user_info` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `user_info` ENABLE KEYS */; -- -- Current Database: `notes` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `notes` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `notes`; -- -- Table structure for table `d0notes` -- DROP TABLE IF EXISTS `d0notes`; CREATE TABLE `d0notes` ( `number` int(11) NOT NULL default '0', `title` text, `authors` text, `pub_info` varchar(200) default NULL, `requestor` varchar(50) default NULL, `notes_group` varchar(20) default NULL, `class` varchar(10) default NULL, `distribution` varchar(10) default NULL, `file_type` varchar(12) default NULL, `file_name` varchar(100) default NULL, `revision` varchar(10) default NULL, `date_req_y` int(11) default NULL, `date_req_m` int(11) default NULL, `date_req_d` int(11) default NULL, `date_req_jd` int(11) default NULL, `date_fil_y` int(11) default NULL, `date_fil_m` int(11) default NULL, `date_fil_d` int(11) default NULL, `date_fil_jd` int(11) default NULL, PRIMARY KEY (`number`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `d0notes` -- /*!40000 ALTER TABLE `d0notes` DISABLE KEYS */; LOCK TABLES `d0notes` WRITE; INSERT INTO `d0notes` VALUES (1,'On the Importance of Measuring Leptons Well at D0','Gordon, H.','','','','','','','','',1983,8,23,2445570,1983,8,23,2445570),(2,'CDF Notes Index','CDF','','','','','','','','',1987,8,3,2447011,0,0,0,0),(3,'Proposal to Make Comparative Monte Carlo\'s on Different Geometriesfor Electromagnetic Calorimeters','Lanou, R.','','','','','','','','',1983,8,18,2445565,0,0,0,0),(4,'A Tower Design for the Central EM Calorimeter','Selove, G.Theodosiou','','','','','','','','',1983,7,31,2445547,0,0,0,0),(5,'Effect on Z-Zero Width from Overlapping Hits','Grannis, P.','','','','','','','','',1983,7,31,2445547,0,0,0,0),(6,'Slides Shown at the Preview of D0 Review','Grannis, P.','','','','','','','','',1983,6,1,2445487,0,0,0,0),(7,'Side View E740 End Cap Electromagnetic Detector','Grannis, P.','','','','','','','','',1983,8,29,2445576,0,0,0,0),(8,'Comparison of Hadron Rejection Efficiency','Grannis, P.','','','','','','','','',1983,9,4,2445582,0,0,0,0),(9,'D0 Design Report - Assignment','D0','','','','','','','','',1983,9,11,2445589,0,0,0,0),(10,'Tests Beam Plan for End Plug','Haggerty, Kononeko, Selove,Theodosiou','','','','','','','','',1983,9,20,2445598,0,0,0,0),(11,'Triggers','Monitors, Goldman, Haggerty','','','','','','','','',1983,9,21,2445599,0,0,0,0),(12,'D0 Test Beam Request Form','None','','','','','','','','',1983,9,21,2445599,0,0,0,0),(13,'Calibration - B. Interleaved PWC\'s','Ficenec, Haggerty','','','','','','','','',1983,9,21,2445599,0,0,0,0),(14,'A Vertex Detector For D0','Lee-Franzini, Youssef','','','','','','','','',1983,9,21,2445599,0,0,0,0),(15,'Muons in UA1','Aronson','','','','','','','','',1983,9,18,2445596,0,0,0,0),(16,'An Architecture for Triggering and Data Acquisition in D0','Gibbard','','','','','','','','',1983,9,2,2445580,0,0,0,0),(17,'End Cap Electromagnetic Detector','Cox, Mazur, Turkot,Abolins, Owen, Pope','','','','','','','','',1983,9,21,2445599,0,0,0,0),(18,'Observations on Magnetic Fields in Toroids','Brown','','','','','','','','',1983,9,19,2445597,0,0,0,0),(19,'E740 Electromagnetci Calorimeter Mark 10**63 Version of EM Cal','Cox','','','','','','','','',1983,9,27,2445605,0,0,0,0),(20,'End Plug Geometry and Costs','Kononenko, Selove, Theodosiou','','','','','','','','',1983,9,29,2445607,0,0,0,0),(21,'Pad Chamber Test','Haggerty, Green','','','','','','','','',1983,10,1,2445609,0,0,0,0),(22,'Resolution of EM Calorimeter LA vs Gas Sampling','Green, D.','','','','','','','','',1983,10,10,2445618,0,0,0,0),(23,'D0 Muon Monte Carlo','Hedin','','','','','','','','',1983,9,29,2445607,0,0,0,0),(24,'The D0 Experiment - Physics at 2 TeV','None','','','','','','','','',1983,10,4,2445612,0,0,0,0),(25,'Summary Proposal for High Speed Data Acquisition System','Zeller','','','','','','','','',1983,10,13,2445621,0,0,0,0),(26,'D0 Data Acquisition Design','Cutts','','','','','','','','',1983,9,30,2445608,0,0,0,0),(27,'Studies of Missing PT Resolution','Protopopescu','','','','','','','','',1983,10,26,2445634,0,0,0,0),(28,'A Fast Vertex Finder Based on Cylindrical Drift Chambers withSegmented Delay Lines','Finocchiaro, Owen','','','','','','','','',1983,10,18,2445626,0,0,0,0),(29,'Cylindrical Drift Chambers for Central Tracking','Finocchiaro, Owen','','','','','','','','',1983,10,26,2445634,0,0,0,0),(30,'Contributions to Missing ET','Aronson, Protopopescu','','','','','','','','',1983,10,14,2445622,0,0,0,0),(31,'Jet Trigger Rates','Protopopescu','','','','','','','','',1983,10,26,2445634,0,0,0,0),(32,'D0 Muons (UrAr II)','Hedin','','','','','','','','',1983,10,1,2445609,0,0,0,0),(33,'Triggering/On-Line Filtering','Linn','','','','','','','','',1983,9,23,2445601,0,0,0,0),(34,'D0 Collaboration Meeting: Mintues','Schamberger','','','','','','','','',1983,11,5,2445644,0,0,0,0),(35,'Overlap Probabilities for Jets and Direct Photons','Weisberg','','','','','','','','',1983,11,8,2445647,0,0,0,0),(36,'NW E740 Muon Test ','Green, D.','','','','','','','','',1983,11,1,2445640,0,0,0,0),(37,'D0 Data Acquisition Design: A Proposal','Cutts, Schamberger,VanBerg, Zeller','','','','','','','','',1983,11,30,2445669,0,0,0,0),(38,'Programming Standards','Protopopescu','','','','','','','','',1983,12,6,2445675,0,0,0,0),(39,'E740 Collaboration Meeting','Malamud','','','','','','','','',1983,12,2,2445671,0,0,0,0),(40,'Calorimeter Trigger Simulation','Linn','','','','','','','','',1983,12,15,2445684,0,0,0,0),(41,'D0 Data Acquisition Design: Update','Cutts, Schamberger,VanBerg, Zeller','','','','','','','','',1983,12,15,2445684,0,0,0,0),(42,'Data Acquisition in D0 (A Comparison)','Gibbard','','','','','','','','',1983,12,7,2445676,0,0,0,0),(43,'PDT Electronics, PDT Electronics & Organization','Green, D.','','','','','','','','',1983,12,1,2445670,0,0,0,0),(44,'Minutes of D0 General Collaborators Meeting at Fermilab','None','','','','','','','','',1983,12,16,2445685,0,0,0,0),(45,'Programming Standards #2','Protopopescu','','','','','','','','',1984,1,4,2445704,0,0,0,0),(46,'My Reactions to the \"Comparison\" (D0 Note 42)','VanBerg','','','','','','','','',1983,12,15,2445684,0,0,0,0),(47,'A Commentary on B. C. Gibbard\'s \"Comparison\" (D0 Note 42)','Zeller','','','','','','','','',1983,12,1,2445670,0,0,0,0),(48,'Data Acquisition and FASTBUS for the Mark II Detector (SLAC-PUB3241)','Lankford, Glanzman','','','','','','','','',1983,10,1,2445609,0,0,0,0),(49,'A Proposal for Moving Mechanism and Cable System for D0 Setup','Yamada','','','','','','','','',1984,1,12,2445712,0,0,0,0),(50,'Uranium Plate Fabrication Discussions (Fermilab - RockwellINternational meeting at Rocky Flats)','Cox, Krempetz, Mazur ','','','','','','','','',1984,1,12,2445712,0,0,0,0),(51,'Preliminary Design for D0 Luminosity Monitor','Lee-Franzini,Franzini','','','','','','','','',1984,1,19,2445719,0,0,0,0),(52,'Notes on D0 Data Aquisistion','Zeller','','','','','','','','',1984,1,18,2445718,0,0,0,0),(53,'D0 Data Acquisition Desgin: A Summary','Cutts, Zeller, Schamberger,VanBerg','','','','','','','','',1983,12,21,2445690,0,0,0,0),(54,'Preliminary Engineering Study for D0 Calorimeter','Johnson','','','','','','','','',1984,1,1,2445701,0,0,0,0),(55,'Signal Processing for Uranium - Liquid Argon Calorimeter Notes fromtalks with Veljka Radeka (Version III)','Johnson','','','','','','','','',1984,1,20,2445720,0,0,0,0),(56,'Programming Standards #3','Protopopescu','','','','','','','','',1984,1,30,2445730,0,0,0,0),(57,'Minutes of the D0 General Meeting at Brookhaven on January 27, 1984','None','','','','','','','','',1984,1,27,2445727,0,0,0,0),(58,'PDT Electrostatics','Green, D.','','','','','','','','',1984,2,1,2445732,0,0,0,0),(59,'Progress in the Design of the Central Drift Chamber for D0 (Abstr.)','Behnke, Finocchiaro, Godfrey, Owen','','','','','','','','',1984,2,21,2445752,0,0,0,0),(60,'Proposal for a Detailed Simulation the D0 Detector','Youssef','','','','','','','','',1984,2,7,2445738,0,0,0,0),(61,'D0 First Level Trigger','MSU Group','','','','','','','','',1984,2,21,2445752,0,0,0,0),(62,'Status of Electronics for Calorimeter','Franzini, Schamberger, Tuts','','','','','','','','',1984,2,20,2445751,0,0,0,0),(63,'Minutes, General Group Meeting, Fermilab','Martin, P.','','','','','','','','',1984,2,27,2445758,0,0,0,0),(64,'Beam Model for Non-Planar Orbits in Synchrotrons','Month','','','','','','','','',1984,3,26,2445786,0,0,0,0),(65,'UA1, UA2 Upgrades (Novosibirsk D0 Speech)','Aronson','','','','','','','','',1984,3,28,2445788,0,0,0,0),(66,'Proposal for a Readout Scheme of ULA for D0','Marx','','','','','','','','',1984,4,12,2445803,0,0,0,0),(67,'D0 Group Meeting Minutes','Tuts','','','','','','','','',1984,4,20,2445811,0,0,0,0),(68,'D0: Missing PT Physics and Detector Design Considerations (BernWorkshop Speech)','Theodosiou','','','','','','','','',1984,3,5,2445765,0,0,0,0),(69,'Raw Punchthru Rates','Green, D.','','','','','','','','',1984,3,1,2445761,0,0,0,0),(70,'D0 Platform, Mainframe and Detector','Stredde','','','','','','','','',1984,5,24,2445845,0,0,0,0),(71,'D0 Programs Structure','Protopopescu','','','','','','','','',1984,5,21,2445842,0,0,0,0),(72,'D0 Platform Structure','Davidson','','','','','','','','',1984,5,25,2445846,0,0,0,0),(73,'UA1 Short Term Improvement Programme','UA1 Collab.','','','','','','','','',1984,4,16,2445807,0,0,0,0),(74,'Proposal to Improve the Performance of the UA2 Detector','UA2 Collab.','','','','','','','','',1984,5,15,2445836,0,0,0,0),(75,'A First Attempt to Design the Endcap Drift Chambers for the D0Detector ','None','','','','','','','','',1984,5,15,2445836,0,0,0,0),(76,'D0 First Level Trigger Design Report','Abolins, Edmunds','','','','','','','','',1984,6,5,2445857,0,0,0,0),(77,'Electronics for the Liquid Argon Calorimeter','Franzini','','','','','','','','',1984,6,1,2445853,0,0,0,0),(78,'Electronics and Data Acquisition for the D0 Experiment at Fermilab(Novosibirsk Conf. 1984)','Tuts','','','','','','','','',1984,6,1,2445853,0,0,0,0),(79,'The D0 Experiment: Its Trigger, Data Acquisition and Computers (Guanajuato, Mex., May 1984) (D0CONF-84-1)','Cutts, Zeller,Schamberger, VanBerg','','','','','','','','',1984,6,1,2445853,0,0,0,0),(80,'Review of D0 Computing','Gibbard','','','','','','','','',1984,6,11,2445863,0,0,0,0),(81,'Choice of Tevatron Tune with Matched Low Beta INsertions','Month','','','','','','','','',1984,6,20,2445872,0,0,0,0),(82,'Workshop Plans','Grannis','','','','','','','','',1984,6,18,2445870,0,0,0,0),(83,'Deciding the Options for the D0 Calorimeter','Gordon, Johnson','','','','','','','','',1984,6,1,2445853,0,0,0,0),(84,'Data Structure for D0 Analysis','Protopopescu','','','','','','','','',1984,6,12,2445864,0,0,0,0),(85,'Magnetized Muon Toroids','Yamada, Takasaki, Oleksiuk','','','','','','','','',1984,6,6,2445858,0,0,0,0),(86,'The Muon Detector','Jostlein','','','','','','','','',1984,6,14,2445866,0,0,0,0),(87,'Analysis of the Effects of a Large Liquid Argon Spill at the D0Detector','Cryogenic Consultants, Inc.','','','','','','','','',1984,7,2,2445884,0,0,0,0),(88,'Shape of Signal for Trigger','Franzini','','','','','','','','',1984,7,5,2445887,0,0,0,0),(89,'Response of Preamp BLS for Test Setup','Franzini','','','','','','','','',1984,4,28,2445819,0,0,0,0),(90,'E740 NW Muon Tests','Green, D.','','','','','','','','',1984,7,1,2445883,0,0,0,0),(91,'Large Argon Calorimeter Cooling','Watt, Barrera','','','','','','','','',1981,4,10,2444705,0,0,0,0),(92,'Documents Relating to Compensation in Uranium Liquid Argon','Gordon','','','','','','','','',1984,7,31,2445913,0,0,0,0),(93,'D0 Workshop Summary (Transparencies from East Lansing)','Grannis','','','','','','','','',1984,8,10,2445923,0,0,0,0),(94,'Central Detectors (East Lansing Workshop)','Finocchiaro, Lanou,Lloyd-Owen, Theodosiou','','','','','','','','',1984,8,1,2445914,0,0,0,0),(95,'Calorimetry (East Lancing Workshop)','Gordon, Cox, Aronson, Linn,Youssef, Johnson','','','','','','','','',1984,8,1,2445914,0,0,0,0),(96,'Muon System (East Lancing Workshop)','Malamud, Eartly, Yamada,Martin P., Rapp, Ficenec, Brown, Strovink, Jostlein','','','','','','','','',1984,8,1,2445914,0,0,0,0),(97,'Test Calorimeter (East Lansing Workshop)','Cox, Gardella,Selove, Johnson','','','','','','','','',1984,8,1,2445914,0,0,0,0),(98,'On-Line Computing (East Lansing Workshop)','Gibbard','','','','','','','','',1984,8,1,2445914,0,0,0,0),(99,'Electronics (East Lansing Workshop)','Franzini, Tuts','','','','','','','','',1984,8,1,2445914,0,0,0,0),(100,'Level 2 Trigger (East Lansing Workshop)','Zeller','','','','','','','','',1984,8,1,2445914,0,0,0,0),(101,'Monte Carol (East Lansing Workshop)','Protopopescu, Youssef,Linn, Lloyd-Owen','','','','','','','','',1984,8,1,2445914,0,0,0,0),(102,'A New Algorithm for Ray Casting in Computer Graphics','Youssef','','','','','','','','',1984,8,1,2445914,0,0,0,0),(103,'Updated Analysis of the Effects of a Large Liquid Argon Spill atthe D0 Detector','Cryogenic Consultants','','','','','','','','',1984,8,31,2445944,0,0,0,0),(104,'D0 Experimental Area Overview -- Criteria STatus','None','','','','','','','','',1984,8,16,2445929,0,0,0,0),(105,'Depleted Uranium Rquirements for HEP Experimental Use','Selph','','','','','','','','',1984,8,14,2445927,0,0,0,0),(106,'Depleted Uranium Requirements of SLD','Wallenmeyer','','','','','','','','',1984,8,8,2445921,0,0,0,0),(107,'Specifications of the Uranium Plate Calorimeter for the UA1Collaboration (Version I)','UA1 Collab.','','','','','','','','',1984,8,13,2445926,0,0,0,0),(108,'Government Activity - Status Overview (HEP Detector)','None','','','','','','','','',1984,8,14,2445927,0,0,0,0),(109,'D0 Calorimeter Status','Gordon','','','','','','','','',1984,8,14,2445927,0,0,0,0),(110,'Cryogenic Service Issues - Work List','Marx','','','','','','','','',1984,8,17,2445930,0,0,0,0),(111,'Monte Carlo Calculation of the TRD Performance Cluster CountingMethod','The Saclay Group','','','','','','','','',1984,8,9,2445922,0,0,0,0),(112,'Cost Estimation of Coils for D0','Yamada, Jagger','','','','','','','','',1984,8,7,2445920,0,0,0,0),(113,'D0 Cabling Information','Kononenko','','','','','','','','',1984,8,17,2445930,0,0,0,0),(114,'CD Requirements','None','','','','','','','','',1984,8,23,2445936,0,0,0,0),(115,'List of Poisoning Times for Materials Tested in the Materials TestChamber','Brown, Hadley, Miller, Pettersen, Phan, Przybylski, Robrish','','','','','','','','',1984,8,23,2445936,0,0,0,0),(116,'Engineering Guidelines for the Design of the Calorimeter','Davidson, Gubler, Koehler, Krempetz, Kroon, Lindenmeyer, Pitas,Wands','','','','','','','','',1984,8,23,2445936,0,0,0,0),(117,'Calorimetry - An Alternative Approach','Pope','','','','','','','','',1984,8,23,2445936,0,0,0,0),(118,'Comparison Between the Octagonal and Rectangular Shapes for theCentral Muon Toroid','Yamada','','','','','','','','',1984,3,21,2445781,0,0,0,0),(119,'Preliminary Results on TRD Tests','Lanou','','','','','','','','',1984,6,2,2445854,0,0,0,0),(120,'Study of Transition Radiation Cluster Counting','Lanou, Shinkawa,Diwan','','','','','','','','',1984,8,4,2445917,0,0,0,0),(121,'Missing PT Due to a Dead Area Between the Central and EndCalorimeters','Linn','','','','','','','','',1984,7,17,2445899,0,0,0,0),(122,'Liquid Argon-Uranium Modular Calorimeter for DZ','Wenzel','','','','','','','','',1984,8,4,2445917,0,0,0,0),(123,'End Plug Calorimeter Depth Structure and Other Parameters','Kononenko','','','','','','','$D0_PRI/123/m_d0note_123.pdf','',1984,8,5,2445918,2004,11,4,2453314),(124,'Axial Installation of Modular Central and Endcap Calorimeters','Wenzel','','','','','','','','',1984,8,12,2445925,0,0,0,0),(125,'Coils for the D0 Muon Iron - A Proposal','Jostlein','','','','','','','','',1984,9,12,2445956,0,0,0,0),(126,'Dead Region Effects - Cylindrical/Conical','Selove','','','','','','','','',1984,9,6,2445950,0,0,0,0),(127,'Chamber Gas Leaks and Safety','H. Jostlein','','','','','','','','',1984,9,17,2445961,0,0,0,0),(128,'Muon Trigger Rates','Green','','','','','','','','',1984,9,1,2445945,0,0,0,0),(129,'Beam Tube Storage and Insertion into the Detector','Jostlein','','','','','','','','',1984,9,19,2445963,0,0,0,0),(130,'Summary of the Calorimeter Meeting','Gordon','','','','','','','','',1984,9,7,2445951,0,0,0,0),(131,'Calorimetry - Going Round in Circles','Pope','','','','','','','','',1984,9,19,2445963,0,0,0,0),(132,'Dimensional Parameters of D0','Marx','','','','','','','','',1984,9,20,2445964,0,0,0,0),(133,'Fluctuations in Shower Parameterizations','Linn','','','','','','','','',1984,9,1,2445945,0,0,0,0),(134,'How to Squeeze a Calorimeter','Lobkowicz','','','','','','','','',1984,9,25,2445969,0,0,0,0),(135,'CERN Trip Report to Analyze Mechanical Configuration of the UA1Colliding Detector','Eartly, Stredde','','','','','','','','',1984,9,28,2445972,0,0,0,0),(136,'CERN Liquid Argon Safety','Nuttall, Leskens','','','','','','','','',1984,10,1,2445975,0,0,0,0),(137,'Design Report, The D0 Experiment at the Fermilab Antiproton-ProtonCollider','None','','','','','','','','',1984,11,1,2446006,0,0,0,0),(138,'A Purification System from the Removal of Electro-NegativeImpurities from Nobel Gases for Nobel -Liquid Nuclear-Particle Detectors(reference only)','Zakland','','','','','','','','',1984,10,1,2445975,0,0,0,0),(139,'Cable Support System for the D0 Detector ','Kononenko','','','','','','','','',1984,10,10,2445984,0,0,0,0),(140,'D0 Microvertex Considerations...I (Corrected version)','Theodosiou','','','','','','','','',1984,10,10,2445984,0,0,0,0),(141,'ISAJET on the Fermilab VAX','Hedin','','','','','','','','',1984,10,16,2445990,0,0,0,0),(142,'Simulation of Interior Volume of D0','Wenzel','','','','','','','','',1984,10,18,2445992,0,0,0,0),(143,'Properties of Liquid Argon (for reference only, no distribution)','None','','','','','','','','',1984,10,1,2445975,0,0,0,0),(144,'Proposed Router for D0 Calorimeter Readout Circuit Boards','Lindenmeyer','','','','','','','','',1984,10,24,2445998,0,0,0,0),(145,'Minutes of the D0 Calorimeter Meeting, Brookhaven, October 19 - 20,','Pope','','','','','','','','',1984,10,20,2445994,0,0,0,0),(146,'FORTRAN Input/Output in Level-2 Programs','Hoftun','','','','','','','','',1984,11,6,2446011,0,0,0,0),(147,'Support for Level-2 Programming; use of DECNET','Hoftun','','','','','','','','',1984,11,6,2446011,0,0,0,0),(148,'Notes on Material for TRD (Permeability of materials for D0, forreference only, no distribution)','Hubbard','','','','','','','','',1984,9,15,2445959,0,0,0,0),(149,'Notes on Material for TRD (X-Ray absorption for D0, for referenceonly, no distribution)','Hubbard','','','','','','','','',1984,9,15,2445959,0,0,0,0),(150,'Notes on Material for TRD (D0 Transition Radiation Detector, forreference only, no distribution)','Hubbard','','','','','','','','',1984,9,15,2445959,0,0,0,0),(151,'Notes on Material for TRD (Electron attachment in D0 TRD, forreference only, no distribution)','Hubbard','','','','','','','','',1984,9,17,2445961,0,0,0,0),(152,'Trigger Based on TRD','Zylberstejn','','','','','','','','',1984,11,1,2446006,0,0,0,0),(153,'Calorimeter Support on a Short Backbone','Jostlein','','','','','','','','',1984,11,16,2446021,0,0,0,0),(154,'Missing PT Resolution Studies','Linn','','','','','','','','',1984,11,11,2446016,0,0,0,0),(155,'Design Proposal for a Vacuum System for the D0 CalorimeterCryostats','Bellinger, Jostlein','','','','','','','','',1984,11,21,2446026,0,0,0,0),(156,'Minutes of D0 Calorimeter Meeting at Fermilab','Selove','','','','','','','','',1984,11,8,2446013,0,0,0,0),(157,'D0 Software Manpower Estimate','Gibbard','','','','','','','','',1984,11,21,2446026,0,0,0,0),(158,'D0 Central Tracking Detector Workshop (Summary) at SUNY StonyBrook, Nov. 11-12, 1984','Strovink','','','','','','','','',1984,11,12,2446017,0,0,0,0),(159,'Notes of Noise Pickup','Selove','','','','','','','','',1984,11,29,2446034,0,0,0,0),(160,'What Happens When an Electron Goes in the Crack Between CentralCalorimeter Modules','Murtagh, Aronson','','','','','','','','',1984,12,5,2446040,0,0,0,0),(161,'Effects on Plug Position on Missing PT','Protopopescu','','','','','','','','',1984,12,5,2446040,0,0,0,0),(162,'D0 Engineering Numbering System','Stredde, Eartly','','','','','','','','',1984,12,13,2446048,0,0,0,0),(163,'Comments About the Present D0 Central Detector','Sadoulet','','','','','','','','',1985,1,2,2446068,0,0,0,0),(164,'More Missing Pt Resolution Studies','Giokaris, Linn','','','','','','','','',1985,1,10,2446076,0,0,0,0),(165,'Calorimeter Design for D0','Wenzel','','','','','','','','',1984,12,12,2446047,0,0,0,0),(166,'Muons in Jets: Hit Density','Hedin','','','','','','','','',1985,1,20,2446086,0,0,0,0),(167,'W, Z and Top Geometric Acceptances','Hedin','','','','','','','','',1985,1,22,2446088,0,0,0,0),(168,'BNL E-734 Drift Tubes','Hedin','','','','','','','','',1985,1,2,2446068,0,0,0,0),(169,'Calorimeter Newsletter','Gordon','','','','','','','','',1985,1,28,2446094,0,0,0,0),(170,'The Absence of Umbilical Connections on the D0 Platform and MovingCounting House','Eartly','','','','','','','','',1985,1,25,2446091,0,0,0,0),(171,'Re: D0 Note 164 \"More Missing Pt Resolution Studies\"','Giokaris,Linn','','','','','','','','',1985,1,29,2446095,0,0,0,0),(172,'Report on Monte Carlo Muon Track Reconstruction','Goldman','','','','','','','','',1985,1,31,2446097,0,0,0,0),(173,'Scope of D0 R&D Work (memorandum)','Cox','','','','','','','','',1985,2,5,2446102,0,0,0,0),(174,'Some Studies with Load II and Status of Electronics','Selove','','','','','','','','',1985,2,7,2446104,0,0,0,0),(175,'A Low Cost Steel/Scintillator Sampling Plug Calorimter Design','Kononenko, Selove','','','','','','','','',1985,2,12,2446109,0,0,0,0),(176,'Use of Eyelets Instead of Plated Through Holes inCircuit Boards atCryogenic Temperature','Weerts','','','','','','','','',1985,2,12,2446109,0,0,0,0),(177,'Description of Load II and III for the D0-Test Calorimeter','Weerts','','','','','','','','',1985,2,12,2446109,0,0,0,0),(178,'Test-Calorimetry Transverse Segmenting','Selove','','','','','','','','',1985,2,13,2446110,0,0,0,0),(179,'Gas Calorimetry: The End-Plug Case Example','Theodosiou','','','','','','','','',1985,3,7,2446132,0,0,0,0),(180,'Double-Track Resolution Requirements, A Monte Carlo Study of W--tb','Trippe','','','','','','','','',1985,2,19,2446116,0,0,0,0),(181,'Depleted Uranium Rolled Plate Linear Coefficient of ThermalExpansion','Koehler','','','','','','','','',1985,2,15,2446112,0,0,0,0),(182,'The Electronics and CAbling Preparations at Unviersity ofPennsylvania for Test Calorimeter Load II','Kononeko','','','','','','','','',1985,2,22,2446119,0,0,0,0),(183,'D0 Microvertex Design...II','Theodosiou','','','','','','','','',1985,2,27,2446124,0,0,0,0),(184,'D0 Test Beam Meeting','Cox','','','','','','','','',1985,3,14,2446139,0,0,0,0),(185,'Automatic Geometry Program for D0 Design Studies','Youssef','','','','','','','','',1985,3,15,2446140,0,0,0,0),(186,'Geometry for Particle Detector Simulations','Youssef','','','','','','','','',1985,2,15,2446112,0,0,0,0),(187,'Readout Scheme Cost Comparison Central Calorimeter','Kroon','','','','','','','','',1985,3,18,2446143,0,0,0,0),(188,'Revised D0 Programming Standards','Protopopescu','','','','','','','','',1985,3,25,2446150,0,0,0,0),(189,'Load-0: LA/U (Cu) Calorimeter Prototype','Theodosiou','','','','','','','','',1985,3,28,2446153,0,0,0,0),(190,'Detector Moving System','Stredde','','','','','','','','',1985,3,27,2446152,0,0,0,0),(191,'Some Results from a Noise-Test Tape','Gardella, Selove','','','','','','','','',1985,3,29,2446154,0,0,0,0),(192,'Test Matrix for the High Energy PHysics Group (HEPG)Uranium-Niobium Plates','Selph, Bieber','','','','','','','','',1985,3,22,2446147,0,0,0,0),(193,'E-740 Proportional Drift Tube Tests','Brown, Green, Haggerty,Hansen, Hedin, Jostlein, Krempetz, Kunori, Martin P, Owen, Rapp, Takasaki','','','','','','','','',1985,3,15,2446140,0,0,0,0),(194,'Drawings of the Short Prototype Microvertex Cell','Goozen','','','','','','','','',1985,4,11,2446167,0,0,0,0),(195,'Calorimeter Geometry: Absorption Length vs. Theta Comparison','Kroon','','','','','','','','',1985,4,16,2446172,0,0,0,0),(196,'Minutes of the D0 Calorimeter Meeting at BNL, April 18, 1985','Pope','','','','','','','','',1985,4,18,2446174,0,0,0,0),(197,'The Proposed D0 Monitoring System','Goodwin, Shea','','','','','','','','',1985,4,18,2446174,0,0,0,0),(198,'Alternate Modular Design for the Endcap Calorimeter','Kroon,Montag','','','','','','','','',1985,4,25,2446181,0,0,0,0),(199,'FASTBUS Crates vs. D0 Platform Rack as Proposed','Eartly','','','','','','','','',1985,4,24,2446180,0,0,0,0),(200,'e/pi Rejection in D0','Grannis','','','','','','','','',1985,5,2,2446188,0,0,0,0),(201,'Collider Performance iwth Ideal Collisions','Month','','','','','','','','',1985,6,1,2446218,0,0,0,0),(202,'Cable Bundle for Tracking Detectors','Strovink','','','','','','','','',1985,5,8,2446194,0,0,0,0),(203,'D0 Inner (Vertex) Chamber Cost Estimate (Rev. 3)','Goozen,Loken, Strovink','','','','','','','','',1985,5,14,2446200,0,0,0,0),(204,'Calorimeter Meeting Minutes May 17, 1985','Gordon','','','','','','','','',1985,5,17,2446203,0,0,0,0),(205,'Fabrication of Cryogenic Electrical Feedthroughs, FNAL TM-596','Kuchnir (submitted by Biallas)','','','','','','','','',1985,8,8,2446286,0,0,0,0),(206,'Minutes of the D0 Software Group Meeting, BNL, April 18, 1985','Linn','','','','','','','','',1985,4,18,2446174,0,0,0,0),(207,'D0 Tracking Electronics Cost Estimate (Rev. 3)','Grannis, Strovink','','','','','','','','',1985,5,22,2446208,0,0,0,0),(208,'Staging D0','Marx','','','','','','','','',1985,3,5,2446130,0,0,0,0),(209,'Stress Analysis of D0 Platform','Wands','','','','','','','','',1985,5,24,2446210,0,0,0,0),(210,'D0 Data Acquisition Design (IEEE May 22, 1985, ChicagoIL)(D0CONF-85-1)','Cutts, Hoftun, Zeller, Trojak, VanBerg,Johnson','','','','','','','','',1985,5,22,2446208,0,0,0,0),(211,'Software Watchdog Report','Ficenec, Hoftun, Loken, Schamberger','','','','','','','','',1985,6,4,2446221,0,0,0,0),(212,'D0 Detector Master Schedule','Koehler','','','','','','','','',1985,5,29,2446215,0,0,0,0),(213,'Effect of Central Tracking Boundary on Calorimeter Cost','Strovink','','','','','','','','',1985,6,5,2446222,0,0,0,0),(214,'Summary of Meeting on Skins vs. Tie Rods','Biallas','','','','','','','','',1985,5,3,2446189,0,0,0,0),(215,'\"Frankenstein\" Type Muon A-Layer Chambers','Jostlein','','','','','','','','',1985,6,17,2446234,0,0,0,0),(216,'Electronic Logbook Description','Gardella','','','','','','','','',1985,6,18,2446235,0,0,0,0),(217,'Estimate of Uranium Noise in D0 Calorimeter','Franzini','','','','','','','','',1984,10,12,2445986,0,0,0,0),(218,'Memo from P. Franzini to D. Green','Franzini','','','','','','','','',1985,5,27,2446213,0,0,0,0),(219,'Crosstalk Measurements','Franzini, Tuts','','','','','','','','',1985,6,4,2446221,0,0,0,0),(220,'Crosstalk in Test Setup','Franzini','','','','','','','','',1985,6,15,2446232,0,0,0,0),(221,'Connecting Signal Cables to the Calorimeter and Other Topics','Franzini','','','','','','','','',1985,6,18,2446235,0,0,0,0),(222,'Calibration of Calorimeter Electronics and a Request to the MonteCarlo People','Franzini','','','','','','','','',1985,6,19,2446236,0,0,0,0),(223,'ADC Data Format (Preliminary)','Schamberger','','','','','','','','',1985,10,25,2446364,0,0,0,0),(224,'\"Are Forward TRD\'s Useful with Material Upstream?\"','Strovink','','','','','','','','',1985,6,19,2446236,0,0,0,0),(225,'Data Acquisition for the D0 Experiment (D0CONF-85-2)','Cutts, Hoftun, Johnson, Zeller, Trojak, VanBerg','','','','','','','','',1985,6,24,2446241,0,0,0,0),(226,'D0 Detector (Talk Presented at the International Symposium onPhysics of Proton-Antiproton Collision at Tsukuba, Japan, March 1985)(D0CONF-85-3)','Yamada','','','','','','','','',1985,3,1,2446126,0,0,0,0),(227,'Lift Cylinder Positional Stability','Stredde','','','','','','','','',1985,6,28,2446245,0,0,0,0),(228,'D0 Detector Design and Developments, (presented at the 15th Int.Conf. on Physics in Collision, Autun, France July 3-5, 1985)','Lloyd-Owen','','','','','','','','',1985,7,5,2446252,0,0,0,0),(229,'Geometry Generation Users Guide','Youssef','','','','','','','','',1985,5,1,2446187,0,0,0,0),(230,'Energy-Dependence of Resolution Component Due to Unequal Hadron-Electron Response','Strovink','','','','','','','','',1985,7,8,2446255,0,0,0,0),(231,'Goals of the BNL Workshop','P. Grannis','','','','','','','','',1985,7,8,2446255,0,0,0,0),(232,'Considerations on Magnetic Shielding for Main Ring Beam Through D0 Detector','R. Yamada','','','','','','','','',1985,7,1,2446248,0,0,0,0),(233,'D0 Inner Driftchamber, Standard Model for D0SIM Detector Simulation','Trippe','','','','','','','','',1985,7,16,2446263,0,0,0,0),(234,'Central Tracking Meeting Schedule -- D0 Workshop at Brookhaven','Strovink','','','','','','','','',1985,7,19,2446266,0,0,0,0),(235,'Minutes of Calorimeter Meeting on June 25th at FNAL','Guryn','','','','','','','','',1985,7,25,2446272,0,0,0,0),(236,'Memo to Maris Abolins on Some Trigger Requirements','Selove','','','','','','','','',1985,8,12,2446290,0,0,0,0),(237,'Experimetnal Study of a Uranium Liquid Argon Calorimeter','Weerts','','','','','','','','',1985,7,1,2446248,0,0,0,0),(238,'Uranium Hadron Calorimetry in the Energy Range 135-350 GeV','WA78 Collaboration','','','','','','','','',1985,7,1,2446248,0,0,0,0),(239,'Insertion of Muon Geometry into D0SIM','Takasaki, Kunori, Yamada','','','','','','','','',1985,6,27,2446244,0,0,0,0),(240,'Topics in the Test Calorimeter Analysis - I, Problems ik MeasuringLeakage Out of the Back','Selove','','','','','','','','',1985,7,26,2446273,0,0,0,0),(241,'Topics in the Test Calorimeter Analysis __ II, On Energy Resolutionin Load II','Selove','','','','','','','','',1985,8,2,2446280,0,0,0,0),(242,'The D0 Experiment (D0CONF-85-4)','Ferbel','','','','','','','','',1985,8,1,2446279,0,0,0,0),(243,'Not Assigned','Not Assigned','','','','','','','','',1985,8,1,2446279,0,0,0,0),(244,'Central Tracking Decisions Made at the 1985 BNL Workshop','Strovink','','','','','','','','',1985,8,14,2446292,0,0,0,0),(245,'Radiation Damage in Scintillator','Selove, Kononenko','','','','','','','','',1985,8,13,2446291,0,0,0,0),(246,'Uranium Meeting Held at ANL 7/30/85','Gordon','','','','','','','','',1985,8,15,2446293,0,0,0,0),(247,'Position Requirements on Muon PDP Pads & Wires','Green, D.','','','','','','','','',1985,9,5,2446314,0,0,0,0),(248,'Transparencies from the BNL Workshop: Muon Chambers','None','','','','','','','','',1985,8,1,2446279,0,0,0,0),(249,'Transparencies from the BNL Workshop:Status of Detector andStandards','None','','','','','','','','',1985,8,1,2446279,0,0,0,0),(250,'Transparencies from the BNL Workshop: Central Detector, TestChambers, Electronics','None','','','','','','','','',1985,8,1,2446279,0,0,0,0),(251,'Transparencies from the BNL Workshop: Software','None','','','','','','','','',1985,8,1,2446279,0,0,0,0),(252,'Transparencies from the BNL Workshop: Level 1 and Level 2 Trigger','None','','','','','','','','',1985,8,1,2446279,0,0,0,0),(253,'Transparencies from the BNL Workshop: Calorimeter Tests and Design','None','','','','','','','','',1985,8,1,2446279,0,0,0,0),(254,'Uranium - Liquid Argon Calorimetry','Cox','','','','','','','','',1985,8,12,2446290,0,0,0,0),(255,'Noise Unavoidable and Avoidable and Erros (Pile up) and Calibration','Franzini','','','','','','','','',1985,8,7,2446285,0,0,0,0),(256,'FORTRAN Static Analyzer','Youssef','','','','','','','','',1985,9,3,2446312,0,0,0,0),(257,'Preliminary Specifications of D0 Muon Front End Electronics','Green, D.','','','','','','','','',1985,9,3,2446312,0,0,0,0),(258,'D0 Organization','Grannis','','','','','','','','',1985,10,9,2446348,0,0,0,0),(259,'Level 1 Trigger Studies for D0','Abolins, Edmunds, Linnemann','','','','','','','','',1985,9,12,2446321,0,0,0,0),(260,'Support of ALEPH Software Development by the SASD Methodology,ALEP{H Note #127','Kellner','','','','','','','','',1985,9,1,2446310,0,0,0,0),(261,'Practical Guidelines for the Use of SASD, ALEPH Note #142','Kellner','','','','','','','','',1985,9,1,2446310,0,0,0,0),(262,'Use of SASAD for ALEPH','Kellner','','','','','','','','',1985,9,1,2446310,0,0,0,0),(263,'Preliminary Results from the D0 Uranium/Liquid Argon TestCalorimeter - Sept. 1985','Aronson','','','','','','','','',1985,9,16,2446325,0,0,0,0),(264,'Radiative Material in the Central Detectors','Lloyd-Owen','','','','','','','','',1985,9,16,2446325,0,0,0,0),(265,'Material in Forward Drift Chambers','Gobbi','','','','','','','','',1985,8,1,2446279,0,0,0,0),(266,'Drift Chamber Results, Continued.','Buchholz, Claes, Gobbi,Park','','','','','','','','',1985,9,12,2446321,0,0,0,0),(267,'Drift Chamber Performance','Buchholz, Claes, Gobbi, Park','','','','','','','','',1985,6,1,2446218,0,0,0,0),(268,'Transparencies from September 14 Collaborators Meeting','None','','','','','','','','',1985,9,1,2446310,0,0,0,0),(269,'D0 Muon Gas System','Rapp','','','','','','','','',1985,9,17,2446326,0,0,0,0),(270,'Tungsten Information: Teledyne Visit at University of Pennsylvania','Kononenko, Selove','','','','','','','','',1985,9,18,2446327,0,0,0,0),(271,'Uranium Flatness Measurement','Pitas, Miller','','','','','','','','',1985,9,25,2446334,0,0,0,0),(272,'Note from R. Raja: For Load III, Analysis the Follwoing Files HaveBeen Placed in the Area V2903','Raja','','','','','','','','',1985,9,23,2446332,0,0,0,0),(273,'Status of the Calorimeter Design','Aronson','','','','','','','','',1985,8,20,2446298,0,0,0,0),(274,'Tevatron I Commissioing Status Report','Malamud','','','','','','','','',1985,9,14,2446323,0,0,0,0),(275,'On Boundaries -- A Better Detector at a Lower Cost?','Selove','','','','','','','','',1985,9,30,2446339,0,0,0,0),(276,'A Color Graphics Package for D0SIM Geometry','Youssef','','','','','','','','',1985,9,20,2446329,0,0,0,0),(277,'Muon Trajectories and Hadron Showers in Thick Absorber from 25GeV/c to 150 GeV/c','Takasaki','','','','','','','','',1984,10,1,2445975,0,0,0,0),(278,'Report on Uranium Task Force Meeting','Cox','','','','','','','','',1985,10,19,2446358,0,0,0,0),(279,'Ground Plane for D0 Platform','Krafczyk','','','','','','','','',1985,10,2,2446341,0,0,0,0),(280,'Transparencies fro D0 Calorimeter Jamboree September 27-28, 1985','None','','','','','','','','',1985,9,29,2446338,0,0,0,0),(281,'Initial Attempts to Adhere to Uranium','Pitas, Ito, Miller','','','','','','','','',1985,10,1,2446340,0,0,0,0),(282,'Azimuthal Wedge Design for Central Calorimeter with UniformContainment and Energy Resolution','Wenzel','','','','','','','','',1985,10,6,2446345,0,0,0,0),(283,'Update on Muon Trigger Rate Calculations','Green','','','','','','','','',1985,9,1,2446310,0,0,0,0),(284,'A Report on the D0 Data Acquisition Prototype','Cutts, Hoftun','','','','','','','','',1985,10,30,2446369,0,0,0,0),(285,'Summary of Resistive Coating Development for D0 Calorimeter','Planes, Escobar, Guryn, Hassell','','','','','','','','',1985,10,1,2446340,0,0,0,0),(286,'Plan for Endcap Calorimeter (EC)','Wenzel','','','','','','','','',1985,10,16,2446355,0,0,0,0),(287,'GEANT III Evaluation','Aboins, Kunori, Linn, Youssef','','','','','','','','',1985,10,16,2446355,0,0,0,0),(288,'Transparencies of Testbeam Analysis Meeting, FNAL','None','','','','','','','','',1985,10,11,2446350,0,0,0,0),(289,'Initial Thoughts on PDT Monitoring','Green, D.','','','','','','','','',1985,10,1,2446340,0,0,0,0),(290,'Geometry Generation Users Guide, Version 2.4','Youssef','','','','','','','','',1985,10,5,2446344,0,0,0,0),(291,'Monolithic Center for Endcap Calorimeter','Wenzel','','','','','','','','',1985,10,23,2446362,0,0,0,0),(292,'U-LAr Calorimeter Prototype Tests: Beam Set Up and Trigger Logic','Theodosiou','','','','','','','','',1985,10,20,2446359,0,0,0,0),(293,'Electornic and Uranium Noise in the D0 Liquid Argon TestCalorimeter','Weerts','','','','','','','','',1985,10,1,2446340,0,0,0,0),(294,'Minutes of Calorimeter Engineering Meeting - June 5, 1985','Kroon','','','','','','','','',1985,6,5,2446222,0,0,0,0),(295,'D0 Requirements Document, Version 1.0, D0 System Design Team','Gibbard','','','','','','','','',1985,10,29,2446368,0,0,0,0),(296,'D0 Data Flow Diagrms, Version 1.0, D0 System Design Team','Gibbard','','','','','','','','',1985,10,31,2446370,0,0,0,0),(297,'Some Conclusions from October 25, 1985, Calorimeter Meeting','Gordon','','','','','','','','',1985,10,25,2446364,0,0,0,0),(298,'D0 Muon Gas System','Rapp','','','','','','','','',1985,10,29,2446368,0,0,0,0),(299,'Hadron Calorimeter Test Results','Azemoon (Sumbitted by G.Theodosiou)','','','','','','','','',1985,11,11,2446381,0,0,0,0),(300,'Minutes of the Monte Carlo Meeting Held at Brookhaven on October23, 1985','Raja','','','','','','','','',1985,10,23,2446362,0,0,0,0),(301,'Why Structured Design','Linnemann','','','','','','','','',1985,11,1,2446371,0,0,0,0),(302,'Transparencies of the D0 Monte Carlo Meeting','None','','','','','','','','',1985,11,8,2446378,0,0,0,0),(303,'Minutes and Agenda D0 Calorimeter Meeting Nov. 8, 1985, at FNAL','Gordon','','','','','','','','',1985,11,8,2446378,0,0,0,0),(304,'Hadron Showers and Muon Trajectories in Thick Absorber from 25GeV/c to 150 GeV/c ( D0PUB-85-1)','Green, Fenker, Martin P,Takasaki, Yamada, Kunori, Rapp, Owen, Grannis, Hedin','','','','','','','','',1985,11,1,2446371,0,0,0,0),(305,'Requirements for the Level 0 Trigger','Grannis','','','','','','','','',1985,11,1,2446371,0,0,0,0),(306,'Absorption Lenght Plots for Varous Geometries','Ito','','','','','','','','',1985,11,18,2446388,0,0,0,0),(307,'The Standard 5 Degree Cone Versus Reversed Cone or Close ApproachGemetries','Jonckheere','','','','','','','','',1985,10,21,2446360,0,0,0,0),(308,'\"Inputs\" a command and Data Input System','Gibbard','','','','','','','','',1985,12,2,2446402,0,0,0,0),(309,'Some Test Beam Calorimeter Results Presented at6 the TallahasseeMeeting','Weerts','','','','','','','','',1986,1,1,2446432,0,0,0,0),(310,'Argon Purity Measurements for the \'85 Test Run','Ito','','','','','','','','',1985,12,17,2446417,0,0,0,0),(311,'Electron/Pion Discrimination using the D0 Uranium Load','Augst,Ferbel, Prebys','','','','','','','','',1985,12,24,2446424,0,0,0,0),(312,'Evaluation of the Use of Transformers for D0','Gordon','','','','','','','','',1985,12,1,2446401,0,0,0,0),(313,'Possible Central Driftchamber Dimensions and ElectrostaticCharacteristics','Strovink','','','','','','','','',1985,12,5,2446405,0,0,0,0),(314,'Vertex Chamber Geometry and Expected Performance','Strovink','','','','','','','','',1985,12,6,2446406,0,0,0,0),(315,'Vetoing Events with Non-Interacting Punchthrough','Grannis','','','','','','','','',1985,12,9,2446409,0,0,0,0),(316,'Crude Monte Carlo Study of the Effect of the Depth of theCaloriemter versus Resolution and Containment','Gordon','','','','','','','','',1985,12,1,2446401,0,0,0,0),(317,'A Stainless Steel Box Design for Enclosing Uranium Plates for Usein Gas Calorimeter Test','Kononenko','','','','','','','','',1985,11,27,2446397,0,0,0,0),(318,'Central Tracking Cable Requirements','Strovink','','','','','','','','',1985,12,20,2446420,0,0,0,0),(319,'Support Scheme for Central Tracking Detectors','Strovink','','','','','','','','',1986,1,3,2446434,0,0,0,0),(320,'Jet Cell -- A Spreadsheet for Jet Chambers','Strovink','','','','','','','','',1986,1,20,2446451,0,0,0,0),(321,'D0 Context Diagram Version 2.0, D0 System Design Team','None','','','','','','','','',1985,12,20,2446420,0,0,0,0),(322,'Summary of the Calorimeter Meetings at FSU ','Aronson','','','','','','','','',1985,12,13,2446413,0,0,0,0),(323,'D0 PDT Module Design','Jostlein, Fenker, Green D.','','','','','','','','',1985,12,9,2446409,0,0,0,0),(324,'ORACLE and DEC Rdb/VMS Comparison','Featherly','','','','','','','','',1985,12,31,2446431,0,0,0,0),(325,'D0 Library Protocol','Protopopescu','','','','','','','','',1985,12,16,2446416,0,0,0,0),(326,'FADC Simulation Studies','Buchholz, Claes, Gobbi, Park','','','','','','','','',1985,12,1,2446401,0,0,0,0),(327,'The Effect of Geometry and Cladding on the Electron/Muon Responseof Calorimeters','Davis, Ferbel, Lanaro, Prebys','','','','','','','','',1985,12,1,2446401,0,0,0,0),(328,'D0 Trigger Framework','Abolins, Edmunds, Linnemann','','','','','','','','',1986,2,24,2446486,0,0,0,0),(329,'Simulating TC3 Drift Cell Electrostatics','Buchholz, Claes,Gobbi, Park','','','','','','','','',1985,11,1,2446371,0,0,0,0),(330,'Depleted Uranium Rolled Plate Effect of Repetitive Thermal Cycling','Koehler','','','','','','','','',1985,12,13,2446413,0,0,0,0),(331,'Uranium-Liquid Argon Calorimetry: Preliminary Results from the D0Tests (D0CONF-86-1)','Cox','','','','','','','','',1986,1,9,2446440,0,0,0,0),(332,'Preliminary Results on GEANT-based Simulation of the TestCalorimeter','Zajc','','','','','','','','',1986,1,7,2446438,0,0,0,0),(333,'A Model Study for the Effect of e/pi on Jet Resolution','Zajc','','','','','','','','',1986,1,7,2446438,0,0,0,0),(334,'The Muon PDT - Requirements in the Non Bend Coordinate','Green, D.','','','','','','','','',1986,1,1,2446432,0,0,0,0),(335,'None','Pitas','','','','','','','','',1986,1,1,2446432,0,0,0,0),(336,'A Better Vacuum System for the D0 Cryostats','Jostlein','','','','','','','','',1986,1,15,2446446,0,0,0,0),(337,'Position Resolution and Distortion in the D0 Test Calorimeter (InterimResults)','Stampke','','','','','','','','',1986,1,1,2446432,0,0,0,0),(338,'Tests of the Proposed Analog Differential Driver, Receiver andCables','Smith, P.','','','','','','','','',1986,1,15,2446446,0,0,0,0),(339,'Report on the LBL Workshop on Radiation Damage to Wire Chambers','Klopfenstein, Strovink','','','','','','','','',1986,1,18,2446449,0,0,0,0),(340,'Modelling Microprocessor Farms for SSC Data Acquisition','Cutts','','','','','','','','',1986,1,7,2446438,0,0,0,0),(341,'How to Use the Additional 3\" Between the Calor and Magnet','Hedin','','','','','','','','',1986,1,15,2446446,0,0,0,0),(342,'Summary of Indiana D0 Muon ADC Design','Smith P, Crittenden','','','','','','','','',1986,1,20,2446451,0,0,0,0),(343,'Summary of Indiana Recommendations for D0 Muon Detector Calibration','Smith P, Crittenden','','','','','','','','',1986,1,20,2446451,0,0,0,0),(344,'Parameterization of Hadron Longitudinal Shower Development (LoadIII)','Marshall','','','','','','','','',1986,2,8,2446470,0,0,0,0),(345,'Calorimeter Plate Thickness and Flatness Tolerances','Jonckheere','','','','','','','','',1985,12,12,2446412,0,0,0,0),(346,'Transparencies from D0 Calorimeter Meeting, BNL, Jan 23-24, 1986','None','','','','','','','','',1986,1,31,2446462,0,0,0,0),(347,'Testing ULA Electronics in the Final Detector Configuration (FirstDraft)','Schamberger','','','','','','','','',1986,1,25,2446456,0,0,0,0),(348,'ADC Data Format (Revision 2)','Schamberger','','','','','','','','',1986,2,20,2446482,0,0,0,0),(349,'12 Bit ADC Specifications (First Draft)','Schamberger','','','','','','','','',1986,2,20,2446482,0,0,0,0),(350,'Nomeclature for Platfrom Relay Racks, Crate Locations, and CardSlots','Koehler','','','','','','','','',1986,2,24,2446486,0,0,0,0),(351,'D0 Calorimter Pad and Lead Capacitances ANSYS Calculation','Jonckheere','','','','','','','','',1986,2,26,2446488,0,0,0,0),(352,'D0 Muon Gas System: Update 2/25/86','Rapp','','','','','','','','',1986,2,25,2446487,0,0,0,0),(353,'Analysis of Combined Results of Venus Group (KEK) and Brown Groupon Transition Radiation Tests','Lanou','','','','','','','','',1986,3,3,2446493,0,0,0,0),(354,'Rules for ZEBRA Banks','Protopopescu','','','','','','','','',1986,3,4,2446494,0,0,0,0),(355,'None','Schamberger','','','','','','','','',1986,3,1,2446491,0,0,0,0),(356,'Analog Driver Tests','Regan, Green','','','','','','','','',1986,3,10,2446500,0,0,0,0),(357,'Comparison of Two Fujitsu Preamps','Buchholz, Claes, Gobbi,Park','','','','','','','','',1986,3,1,2446491,0,0,0,0),(358,'Zero-Suppression of Drift Chamber Data','Kaplan','','','','','','','','',1986,3,19,2446509,0,0,0,0),(359,'Pad Size and the Probability that pi 0 Can Fake Single Electrons inthe End Cap Calorimeter','Stevenson','','','','','','','','',1986,3,3,2446493,0,0,0,0),(360,'Muon Triggering at Small Angles','Green, D','','','','','','','','',1986,3,1,2446491,0,0,0,0),(361,'Essential Modeling of a High Energy Phsyics DataCollection/Analysis System, Software Design','None','','','','','','','','',1986,2,23,2446485,0,0,0,0),(362,'Muon Trigger Studies','Hedin','','','','','','','','',1986,4,2,2446523,0,0,0,0),(363,'Electronic Logbook Version 1.00 User\'s Guide','Gardella','','','','','','','','',1986,4,16,2446537,0,0,0,0),(364,'e/pi and /pi degree Separation in the Calorimeter Test Data','Zieminski A','','','','','','','','',1986,4,9,2446530,0,0,0,0),(365,'Predicting Energy Losses in Cracks from the Matrix ShowerParameterization','Zieminski A','','','','','','','$D0_PRI/365/m_d0note_365.pdf','',1986,2,7,2446469,2004,11,5,2453315),(366,'None','Indiana','','','','','','','','',1986,4,1,2446522,0,0,0,0),(367,'Central Calorimeter Signals for High Pt Jets','Protopopescu,Zieminski A.','','','','','','','','',1986,3,12,2446502,0,0,0,0),(368,'Negatvie Transverse Crosstalk in Load III','Stampke','','','','','','','','',1986,4,1,2446522,0,0,0,0),(369,'Lead Pickup in Load III','Stampke','','','','','','','','',1986,4,1,2446522,0,0,0,0),(370,'Some Notes on Uranium Plate Quality Control','Wahl','','','','','','','','',1986,3,21,2446511,0,0,0,0),(371,'Pixie-Version 1.0 Event Display Prototype for Cosmic Ray Muon Test','Kramer','','','','','','','','',1986,4,29,2446550,0,0,0,0),(372,'D0 Muon H Plot - DI-3000 User\'s Guide','Hagopian','','','','','','','','',1986,4,4,2446525,0,0,0,0),(373,'First Crosstalk Studies with Multilayer Boards','Hofmann','','','','','','','','',1986,4,2,2446523,0,0,0,0),(374,'A Simple Argument About Calorimeters','Youssef','','','','','','','','',1986,3,1,2446491,0,0,0,0),(375,'A Family of Cluster Algorithms','Youssef','','','','','','','$D0_PRI/375/m_d0note_375.pdf','',1986,4,7,2446528,2004,11,5,2453315),(376,'Slides from General Calorimeter Meeting','None','','','','','','','','',1986,4,12,2446533,0,0,0,0),(377,'EC Status Meeting Transparencies','None','','','','','','','','',1986,4,10,2446531,0,0,0,0),(378,'Slides from Calorimetry General Meeting, Saturday, March 15, 1986','None','','','','','','','','',1986,3,15,2446505,0,0,0,0),(379,'Uranium Safety and Handling Procedures - Some Observations','Kononenko','','','','','','','','',1986,4,14,2446535,0,0,0,0),(380,'D0 Muon System to Control System Interface','Shea','','','','','','','','',1986,1,6,2446437,0,0,0,0),(381,'Results of a 100 MHz FADC System Built in FASTBUS used by the UA2Vertex Detector (CERN-EP/86-30)','Bourgeois, et al.','','','','','','','','',1986,3,3,2446493,0,0,0,0),(382,'Yourdon Course in Structured Analysis for Real Time Systems','Loken, Trippe','','','','','','','','',1986,4,28,2446549,0,0,0,0),(383,'D0 Data Flow Diagrams, Version 2.0','D0 Software Group','','','','','','','','',1986,4,23,2446544,0,0,0,0),(384,'Comments on Shape of Pads','Eberhard','','','','','','','','',1986,4,8,2446529,0,0,0,0),(385,'Dead-Material Effects of the CC/EC Cryostat Walls','Gerecht,Selove','','','','','','','','',1986,5,13,2446564,0,0,0,0),(386,'Signal from the National Radioactivity of Depleted Uranium inLiquid Argon','Giokaris, Anderson, Kross','','','','','','','','',1986,4,19,2446540,0,0,0,0),(387,'Noise in Test Calorimeter Due to Resistive Coat','Weerts','','','','','','','','',1986,5,5,2446556,0,0,0,0),(388,'Summary of GEANT Simulation of the D0 Test Calorimeter Load III','Zajc','','','','','','','','',1986,5,8,2446559,0,0,0,0),(389,'TRD Status Report','Ducros, Zylberstejn, Teiger, Mansoulie,Mangeot, Hubbard de Toeuf, Feinstein','','','','','','','','',1986,5,8,2446559,0,0,0,0),(390,'Heavy, Stable Exotics at D0','Green, D.','','','','','','','','',1986,5,10,2446561,0,0,0,0),(391,'The SLAC Analog Memory Unit for Waveform Dititizing in D0','Finocchiaro, Manzella, Rijssenbeek','','','','','','','','',1986,5,12,2446563,0,0,0,0),(392,'Test of Wire Diameters and Gas Types','Heintz','','','','','','','','',1986,5,1,2446552,0,0,0,0),(393,'Transition Radiation Detectors in Colliding Beams Experiments','Zylberstejn','','','','','','','','',1986,5,1,2446552,0,0,0,0),(394,'Massive Stable Neutral Hadrons','Walker','','','','','','','','',1986,4,5,2446526,0,0,0,0),(395,'General Calorimeter Meeting Transparencies','None','','','','','','','','',1986,5,10,2446561,0,0,0,0),(396,'Preliminary Results on Electron Shower Shape and PositionResolution in Load III','Stampke','','','','','','','','',1986,5,27,2446578,0,0,0,0),(397,'Transparencies from Installation Schedule and Review','None','','','','','','','','',1986,5,8,2446559,0,0,0,0),(398,'Magnetzied Insert Plug Proposal','Green, Jostlein, Martin','','','','','','','','',1986,5,29,2446580,0,0,0,0),(399,'Radiation Doses in Tev I','Grannis','','','','','','','','',1986,6,2,2446584,0,0,0,0),(400,'On /h Overlap Rejection, EM3 Pad Shapes, and Other Ravings','Stampke','','','','','','','','',1986,6,1,2446583,0,0,0,0),(401,'A LATEX Format for D0 Notes','Zajc','','','','','','','','',1986,5,8,2446559,0,0,0,0),(402,'Long Lived Heavy Particles in D0','Hedin','','','','','','','','',1986,6,10,2446592,0,0,0,0),(403,'On the Need for Low Energy Test Beam data','Zajc, Selove','','','','','','','','',1986,6,2,2446584,0,0,0,0),(404,'Characteristics of Coherent Noise in Test Calorimeter','Weerts','','','','','','','','',1986,6,9,2446591,0,0,0,0),(405,'An Alternative Implementation of Dummy Pads and Its Impact on TheADC-design','Weerts','','','','','','','','',1986,6,9,2446591,0,0,0,0),(406,'ISAZEB I/O for ISAJET using Zebra','Protopopescu','','','','','','','','',1986,6,9,2446591,0,0,0,0),(407,'D0SIM User Manual','None','','','','','','','','',1986,6,16,2446598,0,0,0,0),(408,'FNAL Collider Physics on an Abacus','Green, D.','','','','','','','','',1986,6,1,2446583,0,0,0,0),(409,'D0 EC-EM Preliminary Engineering Design Review','Haughian, Madaras,Scalise','','','','','','','','',1986,6,12,2446594,0,0,0,0),(410,'D0 Calorimeter Preliminary Cost Estimate for Two End Cap/EMSections','Haughian, Madaras, Scalise','','','','','','','','',1986,6,7,2446589,0,0,0,0),(411,'D0 Calorimetry Summary','Gordon','','','','','','','','',1986,6,13,2446595,0,0,0,0),(412,'Data Throughput for Calorimeter Beam Test','Linnemann, Gibbard,Cutts','','','','','','','','',1986,6,19,2446601,0,0,0,0),(413,'Level 2 Size Requirements','Linnemann','','','','','','','','',1986,6,20,2446602,0,0,0,0),(414,'Central Tracking Software Meeting -- BNL','Trippe','','','','','','','','',1986,6,12,2446594,0,0,0,0),(415,'COMPAK: A Command Input Package for Interactive Programs. UsersGuide and Programmers Manual','Hoftun','','','','','','','','',1986,7,2,2446614,0,0,0,0),(416,'Muon PDT Layout','Martin, P.','','','','','','','','',1986,6,26,2446608,0,0,0,0),(417,'Rate Limitations: Radiation Damage Effects in Muon PDT Systems atHigh Luminosity','Dugan','','','','','','','','',1986,6,26,2446608,0,0,0,0),(418,'Note by M. Mayberry regarding different ways of transferring FADCdata from 20 cards of 8 channels each to the next level','Mayberry','','','','','','','','',1986,6,27,2446609,0,0,0,0),(419,'Design Review of the D0 Cryostats','Rosenfeld, Saffell','','','','','','','','',1986,6,26,2446608,0,0,0,0),(420,'Short Summary of High-Voltage Breakdown Measuremetns in LiquidArgon at LBL','Madaras, Smits','','','','','','','','',1986,6,30,2446612,0,0,0,0),(421,'Summary of Acceptance Measurements of 3\' x 7\' D0 EC-EM prototypeUranium Plates','Madaras, Taylor','','','','','','','','',1986,7,8,2446620,0,0,0,0),(422,'Accurate 2 Dimensional Drift Tube Readout Using Time Division andVernier Pads ( D0PUB-86-1)','Green, Haggerty, Hansen, Takasaki','','','','','','','','',1986,7,1,2446613,0,0,0,0),(423,'D0 Uranium Liquid Argon Calorimeter - Transparencies from talkgiven at the VIth International Conference on Proton-Antiproton Physics,Aaechen, W. Germany','Weerts','','','','','','','','',1986,7,1,2446613,0,0,0,0),(424,'Epilogue to June 1986 Beam Test at BNL','Strovink','','','','','','','','',1986,6,30,2446612,0,0,0,0),(425,'Technical Proposal for the H1 Detector','H1 Collaboartion','','','','','','','','',1986,7,1,2446613,0,0,0,0),(426,'The Use of Waveform Digitizers with Drift Chambers for D0','Buchholz, Claes, Gobbi, Park, Behnke, Carcano, Engelmann,Finocchiaro, Nishikawa, Pizzuto','','','','','','','','',1986,7,1,2446613,0,0,0,0),(427,'A Monte Carlo Study of the TRD Trigger','Abolins, Edmunds, Linnemann','','','','','','','','',1986,7,7,2446619,0,0,0,0),(428,'Plan for D0 Test Beam Setup','None','','','','','','','','',1986,7,1,2446613,0,0,0,0),(429,'Parameterization of Preliminary Electron Longitudinal Shower Shapesfrom Load III','Stampke, Cantley','','','','','','','','',1986,7,25,2446637,0,0,0,0),(430,'Design Criteria fro the Anti-warp Bolts','Eberhard','','','','','','','','',1986,7,24,2446636,0,0,0,0),(431,'Theoretical Calculation of Stiffness and Flexibility Matrices forLarge (3\' x 7\') DU Plates','Edwards','','','','','','','','',1986,5,5,2446556,0,0,0,0),(432,'Methodology for Compliance/Stiffness Matrix Measurements andCalculations to Determine Plate Warp and Anti-Warp Bolt (AWB) Requirements','Scalise','','','','','','','','',1986,3,1,2446491,0,0,0,0),(433,'Performance of Uranium-Liquid Argon Calorimeter - Talk given by M.Tuts at the International High Energy Physics Conference held in Berkeley,CA','Tuts','','','','','','','','',1986,7,1,2446613,0,0,0,0),(434,'VAXELN - Dedicated Real-Time Systems for VAX Processors','Hoftun','','','','','','','','',1986,7,1,2446613,0,0,0,0),(435,'Physics Opportunities at FNAL Tevatron I - Transparencies presentedat the D0 Summer Workshop at Brown University','Berger, Marciano','','','','','','','','',1986,7,1,2446613,0,0,0,0),(436,'Transparencies from the Summary Talks given at the D0 SummerWorkshop at Brown University','None','','','','','','','','',1986,7,1,2446613,0,0,0,0),(437,'Transparencies from Central Tracking Talks given at the D0 SummerWorkshop at Brown University','None','','','','','','','','',1986,7,1,2446613,0,0,0,0),(438,'Trip to CERN and to the Aachen Conference','Selove','','','','','','','','',1986,7,7,2446619,0,0,0,0),(439,'GEANT Simulation of the Test Calorimeter','Winer','','','','','','','','',1986,8,8,2446651,0,0,0,0),(440,'Rate Estimates for the Low Energy Beam Line','Zajc','','','','','','','','',1986,7,23,2446635,0,0,0,0),(441,'Cosmic Ray Hodoscope','Wojcikiewicz, Gerecht','','','','','','','','',1986,8,20,2446663,0,0,0,0),(442,'Effect of Thickness and Flatness Variations of Uranium Plates onResolution in D-Zero','Ferbel','','','','','','','','',1986,8,5,2446648,0,0,0,0),(443,'D0 ? CYGNUS','Green, D.','','','','','','','','',1986,8,1,2446644,0,0,0,0),(444,'Timing Test on A Prototype Level 2 Calorimeter Trigger','Linnemann,Nilsen, Abolins','','','','','','','','',1986,9,2,2446676,0,0,0,0),(445,'Comparison of Hit Finders on Vertex Chamber Test Data','Klopfenstein, Strovink','','','','','','','','',1986,9,9,2446683,0,0,0,0),(446,'Contribution to E (T) From Pedestal Cut','Linnemann','','','','','','','','',1986,8,21,2446664,0,0,0,0),(447,'Transparencies Shown at 9/86 Central Tracking Meetings','None','','','','','','','','',1986,9,1,2446675,0,0,0,0),(448,'Transparencies for General Calorimeter Meetings 9/86 ','None','','','','','','','','',1986,9,1,2446675,0,0,0,0),(449,'12 Bit ADC Specifications (2nd Draft)','Schamberger','','','','','','','','',1986,9,15,2446689,0,0,0,0),(450,'ADC Data Format (Revision 3)','Schamberger','','','','','','','','',1986,9,15,2446689,0,0,0,0),(451,'Special Notes for the First Muon ADC','Schamberger','','','','','','','','',1986,9,15,2446689,0,0,0,0),(452,'Report on the High Level Electronics Specification Committee','Johnson','','','','','','','','',1986,9,18,2446692,0,0,0,0),(453,'Translating from VAX FORTRAN to FORTRAN77 using FORSE and ASPIRIN','Youssef','','','','','','','','',1986,9,1,2446675,0,0,0,0),(454,'Comparison of Hit Finders Using Reconstructed Tracks','Zieminska','','','','','','','','',1986,9,18,2446692,0,0,0,0),(455,'CC Signal Routing','Christenson, Nesic','','','','','','','','',1986,9,29,2446703,0,0,0,0),(456,'Single Tower Trigger Studies','Abolins, Edmunds, Pi','','','','','','','','',1986,10,1,2446705,0,0,0,0),(457,'On the Size of Hadronic Trigger Clusters','Abolins, Edmunds','','','','','','','','',1986,10,1,2446705,0,0,0,0),(458,'HV Edge Breakdown Tests','Draper','','','','','','','','',1986,10,1,2446705,0,0,0,0),(459,'Performance of Liquid Argon Calorimeters','Franzini','','','','','','','','',1986,10,1,2446705,0,0,0,0),(460,'A Uranium Scintillator Calorimeter with Plastic Fiber Readout,CERN-EP 86-131','Wahl','','','','','','','','',1986,9,18,2446692,0,0,0,0),(461,'Dead Material Hermiticity Studies in the D0 Calorimeter','Raja','','','','','','','$D0_PRI/461/m_d0note_461.pdf','',1986,10,1,2446705,2004,11,5,2453315),(462,'The D0 Beam Pipe','Jostlein','','','','','','','','',1986,10,15,2446719,0,0,0,0),(463,'Central Tracking Electronics Meeting Transparencies','None','','','','','','','','',1986,10,1,2446705,0,0,0,0),(464,'General Calorimeter Meeting Transparencies','None','','','','','','','','',1986,10,1,2446705,0,0,0,0),(465,'Vertex Chamber Review Transparencies','None','','','','','','','','',1986,10,1,2446705,0,0,0,0),(466,'Faraday Cage Materials','McCarthy','','','','','','','','',1986,10,16,2446720,0,0,0,0),(467,'ELNCON, A Set of Functions for Communication with VAXELN Tasks.Users Guide Version 0.1','Hoftun','','','','','','','','',1986,10,22,2446726,0,0,0,0),(468,'User\'s Guide to EVEDT 2.0','Featherly, Paige, Protopopescu','','','','','','','','',1986,10,1,2446705,0,0,0,0),(469,'D0 ? - CYGNUS, D. Green, talk given on October 24, 1986 at the D0General Group Meeting','Green, D.','','','','','','','','',1986,10,24,2446728,0,0,0,0),(470,'Status of the D0 Detector, M. Marx, presented at the 6th TopicalWorkshop on Proton-Antiproton Collider Physics, Aachen','Marx','','','','','','','','',1986,7,1,2446613,0,0,0,0),(471,'Considerations Concerning Coherent and Random Noise in the D0Calorimeter','Franzini','','','','','','','','',1986,10,24,2446728,0,0,0,0),(472,'512-Channel FADC System for 1987 Central Tracking Tests','Johnson,Strovink','','','','','','','','',1986,10,31,2446735,0,0,0,0),(473,'Central Tracking Cable Requirements - Revision 1','Strovink','','','','','','','','',1986,10,22,2446726,0,0,0,0),(474,'Note on OCH Support Structures','Blazey, Kewley','','','','','','','','',1986,11,1,2446736,0,0,0,0),(475,'Transparencies from General Calorimeter Meeting','None','','','','','','','','',1986,11,1,2446736,0,0,0,0),(476,'A Quick Guide to the D0User Program','Protopopescu','','','','','','','','',1986,12,1,2446766,0,0,0,0),(477,'The Level 0 Trigger','Partridge, Lanou','','','','','','','','',1986,12,1,2446766,0,0,0,0),(478,'Talk Given at VIth International Converence on Proton-AntiprotonPhsyics, Aachen, June 30 - July 4, 1986','Weerts','','','','','','','','',1986,7,5,2446617,0,0,0,0),(479,'Transparencies from Central Detector Software Groupe','Trippe','','','','','','','','',1986,11,1,2446736,0,0,0,0),(480,'Transparencies from Wigman\'s Talk','None','','','','','','','','',1986,11,26,2446761,0,0,0,0),(481,'Transparencies of the Central Detector Group','None','','','','','','','','',1986,11,26,2446761,0,0,0,0),(482,'Electron Capture of Gas Pollutant: 02','Rapp','','','','','','','','',1986,12,17,2446782,0,0,0,0),(483,'D0 HPLOT - DI3000 User\'s Guide','Hagopian','','','','','','','','',1986,12,1,2446766,0,0,0,0),(484,'HPLOT Interface to the DI-3000 Graphics System','Constanto-Fanourakis','','','','','','','','',1986,12,1,2446766,0,0,0,0),(485,'D0 Enhancements to the HPLOT-DI3000 Plotting Package D0H3 LibraryReference Guide','Hagopian','','','','','','','','',1986,12,1,2446766,0,0,0,0),(486,'PIXIE - Version 1.0','Kramer, Hagopian','','','','','','','','',1986,12,22,2446787,0,0,0,0),(487,'CC EM Uranium Thickness Data','Kroon','','','','','','','','',1986,12,30,2446795,0,0,0,0),(488,'Capacitance Measurements of CCEM','Ahn','','','','','','','','',1987,4,21,2446907,0,0,0,0),(489,'Dead Area Estimatino of CCEM Signal Boards','Ahn','','','','','','','','',1987,4,24,2446910,0,0,0,0),(490,'Test Results from a Precision Drift Chamber Vertex DetectorPrototype Using Dimethyl Ether ( D0PUB-87-1)','Klopfenstein et al.','','','','','','','','',1987,1,6,2446802,0,0,0,0),(491,'Central Tracking Meeting Transparencies','None','','','','','','','','',1987,1,7,2446803,0,0,0,0),(492,'General Calorimeter Meeting','None','','','','','','','','',1987,1,9,2446805,0,0,0,0),(493,'Considerations for Signal Wire Connection of D0 Muon PDT','Yamada','','','','','','','','',1987,1,16,2446812,0,0,0,0),(494,'Trip Reprots for Visit to Manufacturing Sciences Corp on January6-7, 1987','Eberhard et al','','','','','','','','',1987,1,23,2446819,0,0,0,0),(495,'D0 EC-EM Calorimeter','LBL Inernal Design Review','','','','','','','','',1987,1,22,2446818,0,0,0,0),(496,'D0 Controls and Downloading','None','','','','','','','','',1987,1,1,2446797,0,0,0,0),(497,'Effect of the Resistive Coat on Capacitance Measurements','Good','','','','','','','','',1987,1,23,2446819,0,0,0,0),(498,'Central Tracking Installation Meeting','None','','','','','','','','',1987,1,7,2446803,0,0,0,0),(499,'The W Mass','Selove','','','','','','','','',1987,2,2,2446829,0,0,0,0),(500,'D0 Central Tarcking Zero Suppression Circuit Specification','DeGroot','','','','','','','','',1987,2,3,2446830,0,0,0,0),(501,'D0 Central Tracking Trigger and Clock Fanout','DeGroot','','','','','','','','',1987,2,3,2446830,0,0,0,0),(502,'Get the Lead In','Wenzel','','','','','','','','',1986,12,25,2446790,0,0,0,0),(503,'Lead - Liquid Argon - II','Wenzel','','','','','','','','',1987,1,30,2446826,0,0,0,0),(504,'Uranium Support in EC EM','Wenzel','','','','','','','','',1987,1,24,2446820,0,0,0,0),(505,'Buttons, Bolts, and EC EM Uranium Support','Wenzel','','','','','','','','',1987,1,28,2446824,0,0,0,0),(506,'High Voltage Tests of an MFH Calorimeter Gap','Womersley','','','','','','','','',1987,1,25,2446821,0,0,0,0),(507,'Small Angle Calorimetry and Full Energy Signal','Selove','','','','','','','','',1987,2,6,2446833,0,0,0,0),(508,'Signal Board Spacer Spacing Evaluation','Gallas','','','','','','','','',1987,2,6,2446833,0,0,0,0),(509,'The Use of SA/SD Methods in D0/Software Development (D0CONF-87-1)','Linnemann, Featherly, Gibbard, Kahn, Protopopescu, Cutts,Hoftun, Brown, Ito, Jonckheere, Raja, Hagopina, Linn, Zieminska, Zieminski,Clark, Klopfenstein, Loken, Trippe, Kunori, Buchholz, Gardella, Ducros,Zylbertejn, Engelmann, Hedin, Ng, Nishikawa','','','','','','','','',1987,3,1,2446856,0,0,0,0),(510,'Coherent Tower Geometry for EC','Wenzel','','','','','','','','',1987,2,16,2446843,0,0,0,0),(511,'Summary, Central Detector Layout Meeting','Strovink','','','','','','','','',1987,2,20,2446847,0,0,0,0),(512,'Revised Chapter 5 for Design Report','None','','','','','','','','',1987,2,1,2446828,0,0,0,0),(513,'Test Beam Proposal','None','','','','','','','','',1987,2,1,2446828,0,0,0,0),(514,'Methane Doping of LAr','Anderson','','','','','','','','',1987,2,24,2446851,0,0,0,0),(515,'Flatness Measurements of CCEM Uranium Plates','Aronson','','','','','','','','',1987,2,24,2446851,0,0,0,0),(516,'EC Towers and Triggers II','Wenzel','','','','','','','','',1987,3,5,2446860,0,0,0,0),(517,'Safe Concentrations of Methane in the D0 LAr Calorimeter','Anderson','','','','','','','','',1987,3,3,2446858,0,0,0,0),(518,'Update on Methane Doping of LAr','Anderson','','','','','','','','',1987,3,3,2446858,0,0,0,0),(519,'Note on Possibilities for very small-angle calorimetry for D0','Kononenko','','','','','','','','',1987,2,24,2446851,0,0,0,0),(520,'Software Effort for the Calorimeter Test Beam: Outline of Plans','Linnemann et al','','','','','','','','',1987,3,9,2446864,0,0,0,0),(521,'Monte Carlo Studies of CCEM Modules in a Test Beam Configuration','Linn','','','','','','','','',1987,3,12,2446867,0,0,0,0),(522,'ZBDUMP, A Package for Inspecting Data in Operating Level 2 Nodes,Users Guide','McLean','','','','','','','','',1987,3,16,2446871,0,0,0,0),(523,'Uniformity of ECEM','Wenzel','','','','','','','','',1987,3,15,2446870,0,0,0,0),(524,'Compensation for Gap Nonuniformity in Liquid Ion ChamberCalorimetry','Wenzel','','','','','','','','',1987,3,26,2446881,0,0,0,0),(525,'CC Board Lamination Tests','Richards','','','','','','','','',1987,3,1,2446856,0,0,0,0),(526,'Triggering on Jets with One x One Clusters','Abolins et al','','','','','','','','',1987,3,20,2446875,0,0,0,0),(527,'Muon Physics at Low Angles','Hedin','','','','','','','','',1987,3,13,2446868,0,0,0,0),(528,'The D0 Transition Radiation Detector (D0CONF-87-2)','Ducros et al','','','','','','','','',1987,3,24,2446879,0,0,0,0),(529,'Choice of Shaping Amplifier for the TRD','D0 Saclay Group','','','','','','','','',1987,3,24,2446879,0,0,0,0),(530,'A Suggested Uranium Antiwarp-bolt Pattern for ECEM','Stevenson','','','','','','','','',1987,3,25,2446880,0,0,0,0),(531,'A Query Language for RZ','Gardella','','','','','','','','',1987,4,9,2446895,0,0,0,0),(532,'Level 0 Review','Partridge, Lanou','','','','','','','','',1987,3,30,2446885,0,0,0,0),(533,'User\'s Manual for the 2000 Channel Test','Zieminski et al','','','','','','','','',1987,4,13,2446899,0,0,0,0),(534,'Programmer and User\'s Guide to EVTMON V1.1','Protopopescu,Gibbard','','','','','','','','',1987,4,2,2446888,0,0,0,0),(535,'D0: DAQ Review/Discussion','Cutts et al','','','','','','','','',1987,4,2,2446888,0,0,0,0),(536,'None','Eric W. (Un. of Penn)','','','','','','','','',1987,4,3,2446889,0,0,0,0),(537,'\"DAQFIL: - D0\'s Global Shared Common Filler, Version 3','Gibbard','','','','','','','','',1987,4,3,2446889,0,0,0,0),(538,'W? and Z0 Physics from the UA1 Collaboration, Electroweak and HighPT Physics','Wimpenny','','','','','','','','',1987,4,10,2446896,0,0,0,0),(539,'Compilation of Information on Large Scale High Voltage Systems','Wimpenny','','','','','','','','',1987,4,20,2446906,0,0,0,0),(540,'Compilation of High Voltage Information for D0 Equipment','Wimpenny, Roberts','','','','','','','','',1987,4,27,2446913,0,0,0,0),(541,'Clustering with Local Equivalence Relations','Youssef','','','','','','','$D0_PRI/541/m_d0note_541.pdf','',1987,4,23,2446909,2004,11,5,2453315),(542,'COMPAK, A Command Input Package for Interactive Programs, UsersGuide','Hoftun','','','','','','','','',1987,4,23,2446909,0,0,0,0),(543,'COMPAK, A Command Input Package for Interactive Programs,Programmers Manual','Hoftun','','','','','','','','',1987,4,23,2446909,0,0,0,0),(544,'A Proposal for a High Voltage System to Gracefully Replace Old Red','Droege','','','','','','','','',1987,4,27,2446913,0,0,0,0),(545,'Transparencies from Presentation by Dan Amidei at the D0 TriggeringMeeting held during April Collaboration Meeting','Amidei','','','','','','','','',1987,4,27,2446913,0,0,0,0),(546,'Discussion Document on a High Voltage System for the D0 Experiment','Wimpenny, Roberts','','','','','','','','',1987,4,28,2446914,0,0,0,0),(547,'None','Klopfenstein','','','','','','','','',1987,4,28,2446914,0,0,0,0),(548,'Minutes of the D0 High Voltage Meeting Held at Fermilab','Wimpenny','','','','','','','','',1987,4,24,2446910,0,0,0,0),(549,'Development of a Database for the Calorimeter Modules','Neal','','','','','','','','',1987,4,30,2446916,0,0,0,0),(550,'Transparencies for D0 Central Detector General Meeting','Strovink','','','','','','','','',1987,4,24,2446910,0,0,0,0),(551,'Programs to Monitor the Contents of HBOOK Histograms','Youssef','','','','','','','','',1987,5,4,2446920,0,0,0,0),(552,'Uranium Background in the D0 TRD','Hubbard et al','','','','','','','','',1987,5,5,2446921,0,0,0,0),(553,'D0 Calorimeter Meeting','None','','','','','','','','',1987,4,24,2446910,0,0,0,0),(554,'Calorimeter Calibration Meeting','None','','','','','','','','',1987,4,23,2446909,0,0,0,0),(555,'Central Tracking Gas Systems in D0 Hall','Strovink','','','','','','','','',1987,5,15,2446931,0,0,0,0),(556,'A Proposal for the Multiplexing of the D0 High Voltage Supplies and for the Removal of the Supplies from the Platform','S. Wimpenny, K. Roberts','','','','','','','','',1987,6,9,2446956,0,0,0,0),(557,'Muon Trigger Electronics Upgrades','Green, D.','','','','','','','','',1987,5,12,2446928,0,0,0,0),(558,'The D0 Detector at the Fermilab Collider (D0CONF-87-3)','Grannis','','','','','','','','',1987,5,20,2446936,0,0,0,0),(559,'Uranium Carcks in ECEM','Wenzel','','','','','','','','',1987,5,10,2446926,0,0,0,0),(560,'Specifications for the D0 Detector','Grannis','','','','','','','$D0_PRI/560/m_d0note_560.pdf','',1987,5,22,2446938,2004,11,5,2453315),(561,'Finding Miscabling by Software','Youssef','','','','','','','','',1987,5,28,2446944,0,0,0,0),(562,'Test Results from a Precision Drift Chamber Vertex DetectorProttype using Dimethyl Ether ( D0PUB-87-2)','Clark et al','','','','','','','','',1987,5,1,2446917,0,0,0,0),(563,'None','Rijssenbeek','','','','','','','','',1987,6,1,2446948,0,0,0,0),(564,'EVEDT, User Guide and Reference Manual','Callot et al','','','','','','','','',1987,6,1,2446948,0,0,0,0),(565,'Capacitance Measurements on the MH Model','Womersley','','','','','','','','',1987,6,2,2446949,0,0,0,0),(566,'Trigger Summing Resistors for EC','Abolins','','','','','','','','',1991,6,19,2448427,0,0,0,0),(567,'How to Find Missing HV Connections - Charge-up Tests of the MHModel','Womersley','','','','','','','','',1987,6,8,2446955,0,0,0,0),(568,'W? and Z0 Physics from the UA Collaboration - Electroweak and HighPT Physics Part 2','Wimpenny','','','','','','','','',1987,6,8,2446955,0,0,0,0),(569,'Uranium Antiwarp-bolt Pattern for ECEM Revisited','Stevenson','','','','','','','','',1987,6,15,2446962,0,0,0,0),(570,'Central Detector General Meeting','None','','','','','','','','',1987,6,11,2446958,0,0,0,0),(571,'Open for re-assignment','N/A','','','','','','','','',0,0,0,0,0,0,0,0),(572,'The D0 Software Library','Protopopescu','','','','','','','','',1987,6,1,2446948,0,0,0,0),(573,'Plate Thickness Effect on Calibration, Module CCEM-4','Heuring,Selove','','','','','','','','',1987,6,18,2446965,0,0,0,0),(574,'Measuring CP-Violation at D0','Hedin','','','','','','','','',1987,6,20,2446967,0,0,0,0),(575,'Minutes of the D0 High Voltage Meeting Held at Fermilab on 10thJune 1987','Wimpenny','','','','','','','','',1987,6,10,2446957,0,0,0,0),(576,'CP Violation, Bd Mixing and Dimuons in the Standard Model','Franzini','','','','','','','','',1987,6,18,2446965,0,0,0,0),(577,'Invisible Calorimeter Penetrations','Wenzel','','','','','','','','',1987,6,24,2446971,0,0,0,0),(578,'Using an Integrator to Measure HV Charging Current','Womersley','','','','','','','','',1987,6,24,2446971,0,0,0,0),(579,'Preliminary Observations on Inter-Cryostat Scintillator andMassless Gaps','Blazey','','','','','','','','',1987,6,1,2446948,0,0,0,0),(580,'Test Beam Parameters','Ruland','','','','','','','','',1987,6,30,2446977,0,0,0,0),(581,'Top Signatures at 2 TeV','Protopopescu','','','','','','','','',1987,6,30,2446977,0,0,0,0),(582,'The Microvax-based Data Acquisition System for D0 (D0CONF-87-4)','Cutts','','','','','','','','',1987,6,1,2446948,0,0,0,0),(583,'Cryogenic Design of the D0 Liquid Argon Collider Calorimeter(D0CONF-87-5)','Mulholland et al','','','','','','','','',1987,7,10,2446987,0,0,0,0),(584,'Calculation of Electron Energy Resolutions in a GEANT Simulation ofthe Load III Test Calorimeter','Treadwell','','','','','','','','',1987,9,1,2447040,0,0,0,0),(585,'Loading of the Test Beam Cryostat','Ruland','','','','','','','','',1987,7,13,2446990,0,0,0,0),(586,'Are We Placing the CCEM Temperature Sensors in the Right Place','Barasch','','','','','','','','',1987,7,30,2447007,0,0,0,0),(587,'None','Barasch','','','','','','','','',1987,7,14,2446991,0,0,0,0),(588,'None','Barasch','','','','','','','','',1987,7,14,2446991,0,0,0,0),(589,'None','Barasch','','','','','','','','',1987,7,14,2446991,0,0,0,0),(590,'None','Barasch','','','','','','','','',1987,7,14,2446991,0,0,0,0),(591,'None','Barasch','','','','','','','','',1987,7,14,2446991,0,0,0,0),(592,'Support Structures for the Test Arrays','Ruland','','','','','','','','',1987,7,20,2446997,0,0,0,0),(593,'Proposal for Calorimeter High Voltage Cabling from the Cryostat HVPorts to the Power Supplis in the MCH','Johnson et al','','','','','','','','',1987,7,30,2447007,0,0,0,0),(594,'Proposal for Muon High Voltage Cabling from the Chambers to thePower Supplies in the MCH','Wimpenny','','','','','','','','',1987,9,10,2447049,0,0,0,0),(595,'Proposal for CDC High Voltage Cabling from the Chambers to thePower Supplies in the MCH','Wimpenny','','','','','','','','',1987,9,10,2447049,0,0,0,0),(596,'Proposal for FDC High Voltage Cabling from the Chambers to thePower Supplies in the MCH','Wimpenny','','','','','','','','',1987,9,10,2447049,0,0,0,0),(597,'Proposal for VTX High Voltage Cabling from the Chambers to thePower Supplies in the MCH','Wimpenny','','','','','','','','',1987,9,10,2447049,0,0,0,0),(598,'Proposal for TRD High Voltage Cabling from the Chambers to thePower Supplies in the MCH','Wimpenny','','','','','','','','',1987,9,10,2447049,0,0,0,0),(599,'Graphics for ISAJET','Hedin, Kramer','','','','','','','','',1987,9,15,2447054,0,0,0,0),(600,'None','VOID','','','','','','','','',1987,9,1,2447040,0,0,0,0),(601,'Calorimeter High Voltage','Bross et al','','','','','','','','',1987,7,29,2447006,0,0,0,0),(602,'Vertex Detector FNAL Test Module Description for Graphics and MonteCarlo','Trippe, Goozen','','','','','','','','',1987,8,12,2447020,0,0,0,0),(603,'Online Displays for the Vertex Chamber','Clark','','','','','','','','',1987,10,6,2447075,0,0,0,0),(604,'Electrons, Pions, Muons at 50 GeV','Wang, Selove','','','','','','','','',1987,8,6,2447014,0,0,0,0),(605,'Physics at (sqrt) (s)=2 TeV (lecture given at the 2nd school ofParticle Physics, Cuernevaca, Mexico 12/4-12/86) (D0CONF-87-6)','Raja','','','','','','','','',1987,8,1,2447009,0,0,0,0),(606,'CCEM High Voltage Results and Criteria','Wojcikiewicz ','','','','','','','','',1987,8,1,2447009,0,0,0,0),(607,'Central Detector Software Meeting Transparencies','None','','','','','','','','',1987,8,5,2447013,0,0,0,0),(608,'Central Tracking General Meeting Transparencies','None','','','','','','','','',1987,8,5,2447013,0,0,0,0),(609,'Calorimeter Electronics Review Transparencies','None','','','','','','','','',1987,8,5,2447013,0,0,0,0),(610,'D0 General Calorimeter Meeting Transparencies','None','','','','','','','','',1987,8,5,2447013,0,0,0,0),(611,'User\'s Manual for the CALIB Program','Hedin et al','','','','','','','','',1987,9,1,2447040,0,0,0,0),(612,'Test Beam Cooldown of Five CCEM Modules','Blazey, Kewley','','','','','','','','',1987,9,1,2447040,0,0,0,0),(613,'Segmentation in the MH Calorimeter','Linn','','','','','','','','',1987,12,22,2447152,0,0,0,0),(614,'Properties of Electromagnetic Showers in the Central CalorimeterModules','Ferbel','','','','','','','','',1987,9,1,2447040,0,0,0,0),(615,'Comments on the D0 Director\'s Review - June 1987','Lockyer,Para','','','','','','','','',1987,9,1,2447040,0,0,0,0),(616,'Central Detector Software Meeting Transparencies ','None','','','','','','','','',1987,9,17,2447056,0,0,0,0),(617,'Central Detector General Meeting Transparencies ','None','','','','','','','','',1987,9,17,2447056,0,0,0,0),(618,'B Physics in D0 Transparencies','None','','','','','','','','',1987,9,17,2447056,0,0,0,0),(619,'Transparencies from D0 High Voltage Meeting','None','','','','','','','','',1987,9,17,2447056,0,0,0,0),(620,'CC/EC Study Status Transparencies','White','','','','','','','','',1987,9,17,2447056,0,0,0,0),(621,'Backgrounds at D0','Martin, P.','','','','','','','','',1987,9,17,2447056,0,0,0,0),(622,'The D0 Downloading and Control System (D0CONF-87-7)','Shea et al','','','','','','','','',1987,9,25,2447064,0,0,0,0),(623,'Noise and Pileup in Liquid Sampling Calorimeter (D0CONF-87-8)','Franzini','','','','','','','','',1987,9,28,2447067,0,0,0,0),(624,'Limits on CP Violating Asymmetries from B0B0 Mixing Results','Franzini','','','','','','','','',1987,9,1,2447040,0,0,0,0),(625,'Central Tracker Test Beam Discussion Transparencies','None','','','','','','','','',1987,9,18,2447057,0,0,0,0),(626,'HV Charge-up Tests of the MCH Copper Prototype','Womersley','','','','','','','','',1987,10,1,2447070,0,0,0,0),(627,'Capacitance Fitting in the MCH Copper Prototype','Womersley','','','','','','','','',1987,10,3,2447072,0,0,0,0),(628,'Tables for Pt Calculations','Linnemann et al','','','','','','','','',1987,10,30,2447099,0,0,0,0),(629,'Systematic Studies of Capacitance Fitting on an individualuncoating MCH Board','Womersley','','','','','','','','',1987,10,6,2447075,0,0,0,0),(630,'The D0 Experiment High Voltage System','Wimpenny','','','','','','','','',1987,10,16,2447085,0,0,0,0),(631,'Physics Implications of some EC-IH Design Choices','Forden','','','','','','','','',1987,11,2,2447102,0,0,0,0),(632,'Pt and Vertex Uncertainties','Linnemann, Settles','','','','','','','','',1988,2,10,2447202,0,0,0,0),(633,'Single Channel Test D0 Central Tracking Electornics','Dickey','','','','','','','','',1987,8,1,2447009,0,0,0,0),(634,'Silicon Vertex Detector (Status Report)','Smith et al','','','','','','','','',1987,10,21,2447090,0,0,0,0),(635,'Massless Gaps for the Central Calorimeter','Good','','','','','','','','',1987,11,20,2447120,0,0,0,0),(636,'An Initial (Statistical) Determination of the Effective CC-EM CrackWidth','Forden','','','','','','','','',1987,11,11,2447111,0,0,0,0),(637,'Acceptance Test of E740 (D0) Muon Chambers','Oshima, Haggerty','','','','','','','','',1987,11,16,2447116,0,0,0,0),(638,'Simulating D0 and Hermiticity Studies or How to Effect a DetectorDesign (D0CONF-87-9)','Jonckheere','','','','','','','','',1987,11,12,2447112,0,0,0,0),(639,'Muon Energy Loss at High Energy and Implications for DetectorDesign','Eastman, Loken','','','','','','','','',1987,11,13,2447113,0,0,0,0),(640,'D0 Muon Chamber Gases','Green, D.','','','','','','','','',1987,11,13,2447113,0,0,0,0),(641,'Results on Light Neutrino Counting from the UA1 Collaboration','Wimpenny','','','','','','','','',1987,11,16,2447116,0,0,0,0),(642,'B Physics with Existing Collider Detectors','Kernan','','','','','','','','',1987,11,16,2447116,0,0,0,0),(643,'Transparencies from Paul Draper\'s talk at the D0 Friday Seminar on11/13/87','Draper','','','','','','','','',1987,11,13,2447113,0,0,0,0),(644,'Can We Correct for Energy Loss in Cracks','Linn','','','','','','','$D0_PRI/644/m_d0note_644.pdf','',1987,11,9,2447109,2004,11,5,2453315),(645,'The D0 High Voltage System','Droege et al','','','','','','','','',1987,11,20,2447120,0,0,0,0),(646,'Hadron and Electron Response in a Uranium Liquid Argon Calorimeterfrom 10-150 GeV ( D0PUB-87-3)','Aronson et al','','','','','','','','',1987,11,1,2447101,0,0,0,0),(647,'Central Detector Status Transparencies (Nov. 1987 CollaborationMeeting)','None','','','','','','','','',1987,11,20,2447120,0,0,0,0),(648,'Central Detector Software Transparencies (Nov. 1987 CollaborationMeeting)','None','','','','','','','','',1987,11,20,2447120,0,0,0,0),(649,' Transparencies from General Calorimeter Meeting (Nov. 1987Collaboration Meeting)','None','','','','','','','','',1987,11,20,2447120,0,0,0,0),(650,'Shower Libraries for D0 GEANT Monte Carlo','Womersly, Raja,Jonckeere','','','','','','','','',1987,12,10,2447140,0,0,0,0),(651,'The D0 Vertex Chamber (transparencies from talk given by S. Lokenat the Friday D0 Seminar - 12/4/87)','Loken','','','','','','','','',1987,12,4,2447134,0,0,0,0),(652,'Running a Large Monte Carlo Program in a Farm of MicroVAX IIComputers under VAXELN (D0CONF-88-1)','Cutts, Hoftun','','','','','','','','',1988,2,1,2447193,0,0,0,0),(653,'Evaluation of Automated Tools for Structured Analysis andStructured Design of Software','Bartlett et al','','','','','','','','',1987,11,22,2447122,0,0,0,0),(654,'Battelle Report','Kroon','','','','','','','','',1987,12,11,2447141,0,0,0,0),(655,'Clustering to Improve EM Resolution','Linn, Youssef','','','','','','','','',1987,12,11,2447141,0,0,0,0),(656,'Some Preliminary Analysis of CC Electromagnetic Module Data Taken with the NWA Test Beam','Protopopescu','','','','','','','','',1988,1,25,2447186,0,0,0,0),(657,'Easy Access to the Tape Log Database','Featherly','','','','','','','','',1988,1,30,2447191,0,0,0,0),(658,'Vector Options for D0 Offline Computing','Youssef','','','','','','','','',1988,2,2,2447194,0,0,0,0),(659,'Muon System Trigger Update','Fortner','','','','','','','','',1988,1,14,2447175,0,0,0,0),(660,'Vectorized Simulation and Ray Tracing','Youssef','','','','','','','','',1988,2,2,2447194,0,0,0,0),(661,'Track Find in D0 Central Tracking (transparencies from talk givenat D0 Seminar 1/22/88)','Zieminska, D.','','','','','','','','',1988,2,1,2447193,0,0,0,0),(662,'Small Angle Muon Spectrometer (talk given at the Muon Group Meeting1/12/88 by Boris Baldin)','Baldin','','','','','','','','',1988,2,2,2447194,0,0,0,0),(663,'Tests of the Pulser Range for the Central Tarcking Groups','Buchholz','','','','','','','','',1988,1,28,2447189,0,0,0,0),(664,'Tracking Efficiency and Impact Parameter Resolution froma GEANTSimulation of the D0 Detector','Rahal-Callot, Trippe, Zieminska D.','','','','','','','','',1988,1,6,2447167,0,0,0,0),(665,'Open for re-assignment','Open','','','','','','','','',1988,2,4,2447196,0,0,0,0),(666,'B-Physics at D0 I: Muon Rates and Distributions and B____+Ks Study','Hedin','','','','','','','','',1988,2,9,2447201,0,0,0,0),(667,'D0 at High Luminosity','Franzini','','','','','','','','',1988,2,5,2447197,0,0,0,0),(668,'Techinical Report on the Vectorization of GEANT3','Dekeyser,Georgiopoulos','','','','','','','','',1988,2,8,2447200,0,0,0,0),(669,'Central Tracking Detector Flash A/D Converter Buffer CircuitSummary','Saewert, Chase','','','','','','','','',1988,1,26,2447187,0,0,0,0),(670,'Z Coordinate versus Z-strip Channel Number for the Vertex DetectorTest Chamber','Trippe','','','','','','','','',1988,2,11,2447203,0,0,0,0),(671,'Tests of VME Event Buffer Module','Kaplan','','','','','','','','',1988,2,16,2447208,0,0,0,0),(672,'D0 Alignment','Jostlein','','','','','','','','',1988,2,18,2447210,0,0,0,0),(673,'Changes in the Resistive Coat','Guida et al','','','','','','','','',1988,2,15,2447207,0,0,0,0),(674,'Simulation Study for a Silicon Vertex Detector in Experiment D0','Smith, D.','','','','','','','','',1988,2,23,2447215,0,0,0,0),(675,'None','Nemethy','','','','','','','','',1988,2,23,2447215,0,0,0,0),(676,'CDC Review Transparencies','Finocchiaro','','','','','','','','',1988,2,23,2447215,0,0,0,0),(677,'12 Bit ADC Specifications','Schamberger','','','','','','','','',1988,3,7,2447228,0,0,0,0),(678,'ADC Data Format','Schamberger','','','','','','','','',1988,4,20,2447272,0,0,0,0),(679,'SAMUS (Transp. from talk given at D0 Friday Seminar by Yur Antipov- 3/11/88)','Antipov','','','','','','','','',1988,3,11,2447232,0,0,0,0),(680,'D0 at High Luminosity (HEPAP Accelerator Subpanel Review)','Strovink','','','','','','','','',1988,3,22,2447243,0,0,0,0),(681,'Transparencies from Central Detector General Meeting at the MarchCollab. Meeting.','None','','','','','','','','',1988,3,25,2447246,0,0,0,0),(682,'B Physics with Existing Collider Detectors','Kernan','','','','','','','','',1988,3,25,2447246,0,0,0,0),(683,'Breakdown Voltage for Air, Nitrogen, and Argon','Ganga','','','','','','','','',1988,5,11,2447293,0,0,0,0),(684,'Pedestal and Discharge Analysis of Mh','Ahn','','','','','','','','',1988,4,7,2447259,0,0,0,0),(685,'Report of the Engineering & Management - Big Test Beam CryostatReviewers','Mulholland et al','','','','','','','','',1988,4,11,2447263,0,0,0,0),(686,'Measuremtns of the Thermal Contraction of D0 Multilayer SignalBoards','Goddard','','','','','','','','',1988,6,28,2447341,0,0,0,0),(687,'D0 EC-Em Calorimeter - Final Design Review','None','','','','','','','','',1988,5,1,2447283,0,0,0,0),(688,'Minutes of the CD Software Meeting, 3/24/88','None','','','','','','','','',1988,3,24,2447245,0,0,0,0),(689,'Data Acquisition Hardware for the D0 MicroVAX Farm (D0CONF-88-2)','Cutts et al','','','','','','','','',1988,4,30,2447282,0,0,0,0),(690,'Central Calorimeter High Voltage Cabling - Power Supply to DetectorMap','Wimpenny','','','','','','','','',1988,4,14,2447266,0,0,0,0),(691,'Trigger Sensitivity to Calorimeter Discharges','Abolins et al','','','','','','','','',1988,4,20,2447272,0,0,0,0),(692,'Muon Chamber High Voltage Power Supply to Detector Mapping','Wimpenny','','','','','','','','',1988,4,22,2447274,0,0,0,0),(693,'Central Drift Chamber High Voltage Power Supply to Detector Mapping','Wimpenny','','','','','','','','',1988,4,22,2447274,0,0,0,0),(694,'Transition Radiation Detector High Voltage Power Supply toDetector Mapping','Wimpenny','','','','','','','','',1988,4,22,2447274,0,0,0,0),(695,'Electron Position Resolution in CCEM Modules','Linn','','','','','','','','',1988,4,22,2447274,0,0,0,0),(696,'Forward Drift Chamber Cabling: High Voltage Power Supply toDetector Map','Wimpenny','','','','','','','','',1988,5,12,2447294,0,0,0,0),(697,'Database Program Options for the D0 Central Calorimeter','Neal','','','','','','','','',1988,5,13,2447295,0,0,0,0),(698,'VOID','None','','','','','','','','',1988,5,13,2447295,0,0,0,0),(699,'Preliminary Summary: Test Beam LAr Purity Monitoring','Blazey','','','','','','','','',1988,5,1,2447283,0,0,0,0),(700,'D0 with pp Upgrade Option - HEPAP Accelerator Subpanel Review','Strovink','','','','','','','','',1988,5,13,2447295,0,0,0,0),(701,'The D0 Solution to the VAX Token Ring 68020 Byte Swap Problme','Raja','','','','','','','','',1988,5,16,2447298,0,0,0,0),(702,'The Feasibility of Experimetns at High Luminosity at the LargeHadron Collider - Report on the High Luminosity Study Group to the CERNLong-Range Planning Committee','Mulvey','','','','','','','','',1988,4,22,2447274,0,0,0,0),(703,'A Comparison of PAW and IDA','Partridge','','','','','','','','',1988,6,8,2447321,0,0,0,0),(704,'Cold Cycle Oxidation Test','Brownell','','','','','','','','',1988,5,2,2447284,0,0,0,0),(705,'The Level One Framework: D0 Note 328 Revised','Abolins et al','','','','','','','','',1988,5,26,2447308,0,0,0,0),(706,'The Level One Calorimeter Trigger for D0','Abolins, Edmunds etal','','','','','','','','',1988,10,25,2447460,0,0,0,0),(707,'Central Detector Software Meeting Transparencies and Summary','Trippe','','','','','','','','',1988,5,27,2447309,0,0,0,0),(708,'Safety Analysis Review of the D0 Central Tracking and TRD GasSystems','Strovink','','','','','','','','',1988,6,27,2447340,0,0,0,0),(709,'CD Transparencies from May Collab. Meeting','None','','','','','','','','',1988,6,7,2447320,0,0,0,0),(710,'Lab 8 Board Production Database','Gallas','','','','','','','','',1988,6,7,2447320,0,0,0,0),(711,'D0 Level 2 Data Acquisition in High Luminosity Environment','Cutts','','','','','','','','',1988,5,4,2447286,0,0,0,0),(712,'Fast Non-Explosive Gases for Drift Chambers','Green, D. et al','','','','','','','','',1988,6,8,2447321,0,0,0,0),(713,'Transparencies from Test Beam Analysis Meeting','Gordon','','','','','','','','',1988,5,25,2447307,0,0,0,0),(714,'Discharge Meeting Transparencies, May Collaboration Meeting','None','','','','','','','','',1988,5,1,2447283,0,0,0,0),(715,'The IDA Manual','Partridge','','','','','','','','',1988,6,8,2447321,0,0,0,0),(716,'Trigger Meeting Transparencies, May Collaboration Meeting','None','','','','','','','','',1988,5,1,2447283,0,0,0,0),(717,'Proposed Design of SAMUS Toroid and its Magnetic Field Calculations','Yamada','','','','','','','','',1988,6,9,2447322,0,0,0,0),(718,'BLS Report','Fogelsong, Hawtree','','','','','','','','',1988,5,27,2447309,0,0,0,0),(719,'D0 Pulser and Digital Scope Report','Fogelsong, Hawtree','','','','','','','','',1988,6,16,2447329,0,0,0,0),(720,'Cable Electronics Labeling for the D0 Detector System (D0Engineering Note 3740.543-EN-132)','Eartly','','','','','','','','',1988,6,15,2447328,0,0,0,0),(721,'D0 SAMUS Background Simulations','Mokhov','','','','','','','','',1988,6,14,2447327,0,0,0,0),(722,'How to Use Ansys to Calculate Capacitance','Goddard','','','','','','','','',1988,6,28,2447341,0,0,0,0),(723,'Muon Detector Data Acquisition Timing','Kaplan','','','','','','','','',1988,6,22,2447335,0,0,0,0),(724,'Transparencies from Talk given at the PbarP Workshop','Zylberstejn','','','','','','','','',1988,6,23,2447336,0,0,0,0),(725,'Overview of Discharge Rates in CCEM Loads 2 and 3 as seen in PedestalData from the 187-88 Test Beam','Kotcher','','','','','','','','',1988,6,27,2447340,0,0,0,0),(726,'The Computer Controlled VME High Voltage System for the D0 Detector','Wimpenny','','','','','','','','',1988,6,28,2447341,0,0,0,0),(727,'Hadron and Electron Response of Uranium/Liquid Argon CalorimeterModules for the D0 Detector','Wimpenny','','','','','','','','',1988,6,28,2447341,0,0,0,0),(728,'EDFOR and EVEDT User Guide and Reference Manual','Callot et al','','','','','','','','',1988,7,1,2447344,0,0,0,0),(729,'Effects of the EM3 Leads on Position Resolution','Linnemann, Settles','','','','','','','','',1988,8,11,2447385,0,0,0,0),(730,'Analysis of Capacitance Measurements on the First Ten CCEM Modules','Good','','','','','','','','',1988,7,1,2447344,0,0,0,0),(731,'First Look at Output of the Level 1 Electron Trigger -- Prospectsfor Level 2 Rejection','Linnemann, Ross','','','','','','','','',1988,9,1,2447406,0,0,0,0),(732,'None','Thomas, T.','','','','','','','','',1988,7,15,2447358,0,0,0,0),(733,'Possible Candidate for D0 Gap Calorimeter with Fast Time Resolutionand Fine Space Resolution','Yamada','','','','','','','','',1988,6,30,2447343,0,0,0,0),(734,'Status Report: Unifromity Studies of CCEM Modules','Blazey,Libonate','','','','','','','','',1988,7,1,2447344,0,0,0,0),(735,'D0 Collaboration Meeting CD Status Transparencies','None','','','','','','','','',1988,7,20,2447363,0,0,0,0),(736,'Central Detector Software and Related Meetings (Transparencies fromJuly Collaboration Meeting)','Trippe et al','','','','','','','','',1988,7,21,2447364,0,0,0,0),(737,'Test Beam Analysis Meeting','None','','','','','','','','',1988,7,21,2447364,0,0,0,0),(738,'D0 Controls and Hardware Meeting (transparencies from JulyCollaboration Meeting)','Lucas','','','','','','','','',1988,7,29,2447372,0,0,0,0),(739,'TRD Prototype Tests (transparencies from July CollaborationMeeting)','Mansoulie','','','','','','','','',1988,7,29,2447372,0,0,0,0),(740,'D0 Detector Platform','Stredde','','','','','','','','',1988,8,2,2447376,0,0,0,0),(741,'D0 Cable Database User\'s Manual','South','','','','','','','','',1988,8,1,2447375,0,0,0,0),(742,'B-Physics Possibilities at D0','Hedin','','','','','','','','',1988,8,7,2447381,0,0,0,0),(743,'Energy Resolution for the CC Modules','Protopopescu, Zieminski','','','','','','','','',1988,8,2,2447376,0,0,0,0),(744,'Silicon Vertex Detector Possibilities for D0 at D0 Seminar onSeptember 16','Kohli','','','','','','','','',1988,9,16,2447421,0,0,0,0),(745,'The Computer Controlled VME High Voltage System for the D0Detector, D0 Collaboration (D0CONF-88-3)','Wimpenny','','','','','','','','',1988,8,1,2447375,0,0,0,0),(746,'The Hadron and Electron Response of the Uranium/Liquid ArgonCalorimeter Modules for the D0 Detector, D0 Collaboration (D0CONF-88-4)','Wimpenny','','','','','','','','',1988,8,1,2447375,0,0,0,0),(747,'Vacuum in the D0 Straight Section ','Jostlein','','','','','','','','',1988,8,8,2447382,0,0,0,0),(748,'None','Buchholz','','','','','','','','',1988,8,17,2447391,0,0,0,0),(749,'Report on Noise Measurements made at NWA','Rajagopalan','','','','','','','','',1988,8,18,2447392,0,0,0,0),(750,'Uses and Limitations of the Test Pulse','Franzini','','','','','','','','',1988,8,16,2447390,0,0,0,0),(751,'Production Pass Definition','Linnemann, Protopopescu','','','','','','','','',1988,8,23,2447397,0,0,0,0),(752,'? degree Background Studies for the Level 2 Electron Trigger','Linnemann, McKinley','','','','','','','','',1988,9,6,2447411,0,0,0,0),(753,'8-Conductor Connector and Cable Assembly Part Counts for the D0High Voltage System','Wimpenny','','','','','','','','',1988,9,1,2447406,0,0,0,0),(754,'D-Detector High Voltage Cables','Wimpenny','','','','','','','','',1988,9,1,2447406,0,0,0,0),(755,'The Use of Longitudinally Parameterized Energy Deposition of HadronShowers to Help Determine the Method of High Voltage Ganging in the D0 EndCap Calorimeters','Mooney, Nielsen','','','','','','','','',1988,9,16,2447421,0,0,0,0),(756,'D0 Detector High Voltage Fanout Boxes','Wimpenny','','','','','','','','',1988,9,1,2447406,0,0,0,0),(757,'D0 EC-EM Technical Parameters','Madaras','','','','','','','$D0_PRI/757/m_d0note757.txt','',1988,9,23,2447428,2004,11,5,2453315),(758,'Central Tracking Cables from Platform Racks to MCH2','Camp,Eartly et al','','','','','','','','',1990,11,1,2448197,0,0,0,0),(759,'Central Tracking Cables from Detector to Platform Racks','Camp, Eartly et al','','','','','','','','',1990,11,29,2448225,0,0,0,0),(760,'CDC Tests in Cosmic Rays (talk given at Central Detector SoftwareMeeting)','Li, Qizhong','','','','','','','','',1988,9,28,2447433,0,0,0,0),(761,'Muon Chamber Performance in the collision Hall & Background Studies','Marshall','','','','','','','','',1988,9,26,2447431,0,0,0,0),(762,'Talk given by Myon Campbell, Univ. of Chicago, at the D0 GeneralMeeting of the September Collaboration Meeting','Campbell','','','','','','','','',1988,9,1,2447406,0,0,0,0),(763,'Central Detector Software Meeting Transparencies','None','','','','','','','','',1988,9,30,2447435,0,0,0,0),(764,'Central Detector General Meeting Transparencies','None','','','','','','','','',1988,9,30,2447435,0,0,0,0),(765,'D0 Cost Estimate Review - WBS 2.1.1-4 Central Detectors','Strovink','','','','','','','','',1988,10,18,2447453,0,0,0,0),(766,'D0 Offline Fortran Standards','Protopopescu, Callot','','','','','','','','',1988,10,15,2447450,0,0,0,0),(767,'The D0 Event Display System','Callot','','','','','','','','',1988,10,21,2447456,0,0,0,0),(768,'Small Angle Muon Spepctrometers','IHEP','','','','','','','','',1988,9,29,2447434,0,0,0,0),(769,'Intercryostat','White','','','','','','','','',1988,9,1,2447406,0,0,0,0),(770,'Monte Carlo Status','Raja','','','','','','','','',1988,9,28,2447433,0,0,0,0),(771,'Heavy Flavor Production in UA11','UA1 Collaboration','','','','','','','','',1988,10,26,2447461,0,0,0,0),(772,'Motherboard Tester Module','Baldin','','','','','','','','',1988,10,16,2447451,0,0,0,0),(773,'VOID','None','','','','','','','','',1988,10,16,2447451,0,0,0,0),(774,'Calorimeter Addressing - Version 1.1','Linnemann','','','','','','','$D0_PRI/774/m_calorimeter_addressing.mem','',1988,11,7,2447473,2004,11,8,2453318),(775,'Improvement of Electron Energy Resolution by the Covariance X2Approach','Chiu','','','','','','','','',1988,10,1,2447436,0,0,0,0),(776,'The D0 Vertex Chamber Status Report','Clark','','','','','','','','',1988,11,17,2447483,0,0,0,0),(777,'A High Luminosity Trigger Design for the Tevatron ColliderExperiment in D0 (D0CONF-88-5)','Abolins, Edmunds, Laurens, Linnemann, Pi','','','','','','','','',1988,11,1,2447467,0,0,0,0),(778,'TRD Status','J. Hubbard','','','','','','','','',1988,11,16,2447482,0,0,0,0),(779,'(D0CONF-88-6)','','','','','','','','','',1988,11,1,2447467,0,0,0,0),(780,'Malter Theory of D0 Currents in Uranium Modules','McCarthy','','','','','','','','',1988,11,2,2447468,0,0,0,0),(781,'Level 0 Calibration, Transparencies from Nov. Collab. Meeting','None','','','','','','','','',1988,11,1,2447467,0,0,0,0),(782,'Void','None','','','','','','','','',1988,11,1,2447467,0,0,0,0),(783,'A Monte Carlo Study of the Effects of HV Shorts in the CC','De','','','','','','','','',1988,11,1,2447467,0,0,0,0),(784,'Analysis of CCEM Test Beam Data','Hadley','','','','','','','','',1988,12,13,2447509,0,0,0,0),(785,'Hadron Position Resolution in ECMH','Womersley','','','','','','','','',1988,12,7,2447503,0,0,0,0),(786,'Effect of Uniform Current Draw and Shorts on the REsponse of CCEMModules','Gordon, Demarteau','','','','','','','','',1988,12,1,2447497,0,0,0,0),(787,'Void','None','','','','','','','','',1988,12,1,2447497,0,0,0,0),(788,'AC and DC Isolation Criteria for D0','Draper, Schamberger','','','','','','','','',1988,12,15,2447511,0,0,0,0),(789,'Boosted Sphericity: An Unambiguous Method for Finding Two JetEvents at Hadron Colliders','Forden','','','','','','','','',1989,2,21,2447579,0,0,0,0),(790,'Schemes for Calibrating the D0 Hadron Calorimeter','Forden','','','','','','','','',1990,5,8,2448020,0,0,0,0),(791,'D0 Backgrounds','Martin, P.','','','','','','','','',1989,1,5,2447532,0,0,0,0),(792,'Transparencies from General Calorimeter Meeting, Sept. Collab.Meeting','None','','','','','','','','',1988,9,1,2447406,0,0,0,0),(793,'GTSRCP: The Manual, Version 3','Prosper, Raja','','','','','','','','',1989,1,11,2447538,0,0,0,0),(794,'Transparencies from talk given by W. Cooper at the ComparativeEngineering Study of Cryostat Systems for Generic Hermetic Liquid ArgonCalorimeter for the SSC','Cooper','','','','','','','','',1989,1,1,2447528,0,0,0,0),(795,'ICD Design Status Report','Wolf et al','','','','','','','','',1989,2,6,2447564,0,0,0,0),(796,'Calibrations Using Collider Events','Grannis','','','','','','','','',1989,1,1,2447528,0,0,0,0),(797,'A Model for an Offline Processing Farm','Raja','','','','','','','','',1989,1,1,2447528,0,0,0,0),(798,'Theoretical Implications of the W-Z Mass Difference and theCapabilities of the D0 Detector in Measuring It (D0CONF-88-7)','Raja','','','','','','','','',1988,11,1,2447467,0,0,0,0),(799,'Offline Computing Farms','Cutts et al','','','','','','','','',1989,1,26,2447553,0,0,0,0),(800,'Test Pulse Generator + Control Interface Card','Stevens, Angstadt','','','','','','','','',1989,2,3,2447561,0,0,0,0),(801,'Nonuniformity in Charge Collection Efficiency of the ECEMCalorimeter','Aihara, Harris','','','','','','','$D0_PRI/801/m_note801.ps','',1989,3,22,2447608,2002,9,18,2452536),(802,'CDF/D0 Meeting on Computing','Quarrie','','','','','','','','',1989,2,9,2447567,0,0,0,0),(803,'Neural Networks, D0 and the SSC','Barter et al','','','','','','','','',1989,2,24,2447582,0,0,0,0),(804,'Transparencies from Central Detector General Meeting','None','','','','','','','','',1989,1,1,2447528,0,0,0,0),(805,'Response of the D0 Muon Chamber to Changes in Voltage, INcidentAngle, Gas Composition, and Oxygen Contamination','Oshima, Igarashi','','','','','','','','',1989,2,24,2447582,0,0,0,0),(806,'An Evaluation of the Cost Effectiveness of UNIX Machines for CDF','Quarrie','','','','','','','','',1989,2,20,2447578,0,0,0,0),(807,'Data Acquisition at D0 (D0CONF-89-1)','Cutts, Hoftun,Johnson, Zeller','','','','','','','','',1989,5,1,2447648,0,0,0,0),(808,'Materials and Radiation Lengths in e Vertex Detector','Clark,Goozen, Trippe','','','','','','','','',1989,6,30,2447708,0,0,0,0),(809,'Random Cosmic Rates in D0','Hedin, Drendel','','','','','','','','',1989,2,18,2447576,0,0,0,0),(810,'Central Detector Tracking Software Meeting','Zieminska','','','','','','','','',1988,11,17,2447483,0,0,0,0),(811,'Status of EC Hadronic Modules','Christenson','','','','','','','','',1989,1,27,2447554,0,0,0,0),(812,'Installing the D0 Magnetic Field Maps in ZEBRA banks, MMAP','Bazizi/Smith','','','','','','','','',1989,1,10,2447537,0,0,0,0),(813,'Calibration with X-e+e-','Womersley','','','','','','','','',1989,2,8,2447566,0,0,0,0),(814,'PCPLOT a PC Based FADC Control Program','Angstadt','','','','','','','','',1989,1,26,2447553,0,0,0,0),(815,'Limits on the Masses of Supersymeetric Particles from 1.8TeV ppbarCollisions at CDF','CDF Collaboration','','','','','','','','',1989,2,16,2447574,0,0,0,0),(816,'Level 1 Muon Trigger Logic','Fortner','','','','','','','','',1989,2,16,2447574,0,0,0,0),(817,'Void','None','','','','','','','','',1989,2,16,2447574,0,0,0,0),(818,'Hadron and Electron Response of Uranium/Liquid Argon CalorimeterModules for the D0 Detector ( D0PUB-89-1)','The D0 CalorimeterGroup','','','','','','','','',1989,2,17,2447575,0,0,0,0),(819,'Status of Central Calorimeter Plate Database','Neal','','','','','','','','',1989,2,20,2447578,0,0,0,0),(820,'Recent Preliminary Results from UA2','Parker','','','','','','','','',1989,3,1,2447587,0,0,0,0),(821,'D0 Hardware Database, Version 2.0','Frey, Waller','','','','','','','','',1988,12,23,2447519,0,0,0,0),(822,'Hdb Database User\'s Guide','Frey','','','','','','','','',1988,12,15,2447511,0,0,0,0),(823,'Hdb Database User\'s Guide-Fortran Version','Frey','','','','','','','','',1988,12,27,2447523,0,0,0,0),(824,'The Hardware Monitor Database Design Note','Frey, Waller','','','','','','','','',1988,12,1,2447497,0,0,0,0),(825,'PbarP Collider Physics (D0CONF-89-2)','Green, D.','','','','','','','','',1989,3,17,2447603,0,0,0,0),(826,'Alarm System, Heartbeat and Display, User\'s Manual','Wilhelm','','','','','','','','',1989,3,22,2447608,0,0,0,0),(827,'Changes to the First Level Trigger Timing','Edmunds','','','','','','','','',1989,4,10,2447627,0,0,0,0),(828,'B Physics Possibilities at D0','Hedin','','','','','','','','',1989,3,1,2447587,0,0,0,0),(829,'D0 SAMUS Background Studies: Toroid Insert Optimization','Mokhov','','','','','','','','',1989,3,31,2447617,0,0,0,0),(830,'Identification of B-Jets in D0 with a Barrel Silicon VertexDetector','Smith','','','','','','','','',1989,3,1,2447587,0,0,0,0),(831,'Status of the D0 Endcap Electromagnetic Caloriemter (ECEM)','Madaras','','','','','','','','',1989,4,5,2447622,0,0,0,0),(832,'General Calorimeter Meeting Transparencies from April CollaborationMeeting','None','','','','','','','','',1989,4,1,2447618,0,0,0,0),(833,'Magnetic Field Calculation of CF Toroid','Yamada, Lee','','','','','','','','',1989,4,12,2447629,0,0,0,0),(834,'D0 Central Detector General Meeting Transparencies, April CollaborationMeeting','None','','','','','','','','',1989,4,1,2447618,0,0,0,0),(835,'Transparencies fro High Voltage Meeting, April CollaborationMeeting','None','','','','','','','','',1989,4,1,2447618,0,0,0,0),(836,'Status and Schedule of Next Year D0 Test Beam','Piekarz','','','','','','','','',1989,4,6,2447623,0,0,0,0),(837,'D0 Offline Computing Plans','Gibbard, Grannis','','','','','','','','',1989,4,10,2447627,0,0,0,0),(838,'Central Detector Software Meeting Transparencies, AprilCollaboration Meeting','None','','','','','','','','',1989,4,1,2447618,0,0,0,0),(839,'Hermeticity of Three Cryogenic Calorimeter Geometries','Strovink','','','','','','','','',1989,4,18,2447635,0,0,0,0),(840,'Design and Testing of a Calibration System for the Level 0 Triggerat D0','McFarland','','','','','','','','',1989,5,1,2447648,0,0,0,0),(841,'Scintillator Readout Systems Studied in the Development of the ICD','Marcin, Neal, Gustafson, Snow','','','','','','','','',1989,4,1,2447618,0,0,0,0),(842,'Electron Position Resolution in CCEM Modules','DeMarteau','','','','','','','','',1989,5,1,2447648,0,0,0,0),(843,'The CLIPS - D0 Alarm INterface','Chapman','','','','','','','','',1989,5,1,2447648,0,0,0,0),(844,'Address Assignments for the D0 Control System','Shea, Florian','','','','','','','','',1989,5,1,2447648,0,0,0,0),(845,'Status of the Inter-Cryostat Detector','Marcin','','','','','','','','',1989,5,1,2447648,0,0,0,0),(846,'D0 Toroid Field Measurements from 4/19/89','Jostlein','','','','','','','','',1989,4,19,2447636,0,0,0,0),(847,'Neural Netowrks for Event Filtering at D0','Cutts et al','','','','','','','','',1989,5,1,2447648,0,0,0,0),(848,'The Use of Neural Networks in the D0 Data Acquisition System(D0CONF-89-3)','Cutts et al','','','','','','','','',1989,5,1,2447648,0,0,0,0),(849,'\"EMPACT\" - An Alternative Approach to a High Pt SSC Experiment','Marx','','','','','','','','',1989,5,1,2447648,0,0,0,0),(850,'Response of the Muon Chamber to Changes of Water VaporContamination','Igarashi, Oshima','','','','','','','','',1989,6,1,2447679,0,0,0,0),(851,'Central Detector Software Meeting Transparencies','None','','','','','','','','',1989,5,9,2447656,0,0,0,0),(852,'Neurton Spectral Measurements in the D0 Collision Hall','Yurista etal','','','','','','','','',1989,5,26,2447673,0,0,0,0),(853,'TRD Status Report & Plans','Saclay','','','','','','','','',1989,6,9,2447687,0,0,0,0),(854,'CDC Events in D0','Li-Demarteau','','','','','','','','',1989,6,7,2447685,0,0,0,0),(855,'Chamber Aging','Hubbard','','','','','','','','',1989,6,1,2447679,0,0,0,0),(856,'Cosmic Muons in the D0 Detector: Flux Calculations through variousfiducial volumes','Norman','','','','','','','','',1989,6,12,2447690,0,0,0,0),(857,'D0 - Progress, Plans & Physics (talk at Collab. mtg)','None','','','','','','','','',1989,6,1,2447679,0,0,0,0),(858,'Transp. from Central Detector General Meeting','None','','','','','','','','',1989,6,1,2447679,0,0,0,0),(859,'Software Release No. 198-IBM PCLIB','Hendricks','','','','','','','','',1989,6,15,2447693,0,0,0,0),(860,'EXAMINE - for the Central Detector, Transp. from Software Meetingat June Collaboration Meeting','None','','','','','','','','',1989,6,1,2447679,0,0,0,0),(861,'Central Detector Software Meeting Minutes and Transparencies','Trippe','','','','','','','','',1989,6,8,2447686,0,0,0,0),(862,'General Calorimeter Meeting, June Collab. Meeting','None','','','','','','','','',1989,6,1,2447679,0,0,0,0),(863,'VAX/VMS Shareable Images','Featherly','','','','','','','','',1989,6,21,2447699,0,0,0,0),(864,'Predicted Capacitance sof ECIH','Womersley','','','','','','','','',1989,6,19,2447697,0,0,0,0),(865,'Database Fields Required by the Control Data Acquisition ServicesPackage','Bartlett','','','','','','','','',1989,6,28,2447706,0,0,0,0),(866,'User Reference Manual for D0 Control Data Acquisition Services -Revised','Bartlett, Fuess, Prosper','','','','','','','','',1992,1,12,2448634,0,0,0,0),(867,'Rejection Using the TRD for the Level 2 Electron Triger','McKinley,Linnemann','','','','','','','','',1989,7,1,2447709,0,0,0,0),(868,'Safety Orifices for Central Tracking Gas Systems','Strovink','','','','','','','','',1989,7,24,2447732,0,0,0,0),(869,'An Electron Algorithm for use in the Level 2 Trigger of D0','Yi,Astur','','','','','','','','',1989,7,25,2447733,0,0,0,0),(870,'A 100 MHz 4096 Cell Switched Capacitor Analog Waveform SamplingIntegrated Circuit','Kleinfelder','','','','','','','','',1989,7,22,2447730,0,0,0,0),(871,'Report on the 4th Pisa Meeting on Advanced Detectors, Elba, Italy','Womersley','','','','','','','','',1989,7,1,2447709,0,0,0,0),(872,'Void','None','','','','','','','','',1989,7,1,2447709,0,0,0,0),(873,'Central Detector Software Meeting Minutes and Transparencies -Thursday 7/13','Trippe','','','','','','','$D0_PRI/873/m_d0note_873.pdf','',1989,7,13,2447721,2004,11,8,2453318),(874,'A Method for Fast Electromagnetic Shower Simulation in GEANT','Linn','','','','','','','','',1989,8,3,2447742,0,0,0,0),(875,'Spatial Pattern Recognition in a High Energy Particle DetectorUsing a Neural Algorithm ( D0PUB-89-2)','Denby, Linn','','','','','','','','',1989,8,4,2447743,0,0,0,0),(876,'General Calorimeter Meeting Transparencies, August CollaborationMeeting ','None','','','','','','','','',1989,8,1,2447740,0,0,0,0),(877,'Logical Channel address for the Central Detectors','Bantly etat','','','','','','','','',1989,9,7,2447777,0,0,0,0),(878,'FAX/VME 68020 Application INterface System, User\'s Manual','Kewley','','','','','','','','',1989,8,10,2447749,0,0,0,0),(879,'HDBROWSER: Interactive Entry Program for the HDB Database, Version2.1','Frey','','','','','','','','',1989,8,21,2447760,0,0,0,0),(880,'ADC Data Format','Schamberger','','','','','','','','',1989,11,6,2447837,0,0,0,0),(881,'D0 Alignment: Experience with Four Tiltmeters on the Central Beam','Michels, Jostlein','','','','','','','','',1989,8,24,2447763,0,0,0,0),(882,'Central Detector Software Meeting Summary','Trippe','','','','','','','','',1989,8,24,2447763,0,0,0,0),(883,'Central Detector Data Formats and Planned Change in D0 GEANT CDDnOutput','Bantly et al','','','','','','','','',1989,9,7,2447777,0,0,0,0),(884,'Gain LStudies for the 87-88 Test beam','Wilkinson','','','','','','','','',1989,8,29,2447768,0,0,0,0),(885,'Workshop on Test Beam Run Planning Transparencies','Wahl','','','','','','','','',1989,8,1,2447740,0,0,0,0),(886,'HIgh Voltage Filter System for D0 Calorimeters','Durston','','','','','','','','',1989,8,29,2447768,0,0,0,0),(887,'Central Detector Status Transparencies, August Collab. Meeting','Strovink','','','','','','','','',1989,8,31,2447770,0,0,0,0),(888,'Energy Scaling of Low-Energy Neutron ield, the e/? ration, and HadronicResponse in a Calorimeter','Groom','','','','','','','','',1989,8,31,2447770,0,0,0,0),(889,'Tagging Top using B goes to mu Decays','Hedin','','','','','','','','',1989,9,1,2447771,0,0,0,0),(890,'Muon Trigger Update','D. Hedin & M. Fortner','','','','','','','','',1989,9,15,2447785,0,0,0,0),(891,'D0 Central Tracking Detector','Buchholz','','','','','','','','',1989,9,1,2447771,0,0,0,0),(892,'D0 Central Tracking Detector - A Possible Upgrade','Buchholz','','','','','','','','',1989,9,1,2447771,0,0,0,0),(893,'Calorimeter General Meeting Transparencies - Setp. Collab. meeting','None','','','','','','','','',1989,9,28,2447798,0,0,0,0),(894,'Central Detector Software Meeting Transparencies - Sept. Collab.meeting','None','','','','','','','','',1989,9,28,2447798,0,0,0,0),(895,'Test Beam Load I Instrumented Channels','Owen','','','','','','','','',1989,9,29,2447799,0,0,0,0),(896,'Notes from Central Detector General Meeting','Strovink','','','','','','','','',1989,9,28,2447798,0,0,0,0),(897,'D-Zero muon Electronics Module Address Card','Bazizi','','','','','','','','',1989,11,6,2447837,0,0,0,0),(898,'Low Momentum Limit for the Calorimeter Test Beam','Hadley','','','','','','','','',1989,11,16,2447847,0,0,0,0),(899,'Installation Sequence Cartoons','Jostlein','','','','','','','','',1989,11,1,2447832,0,0,0,0),(900,'Summaries D-Zero Offline Reconstruction Workshop','IndianaUniversity','','','','','','','','',1989,11,1,2447832,0,0,0,0),(901,'3D Grajocs pm tje Evans & Sutherland','Abachi','','','','','','','','',1990,4,1,2447983,0,0,0,0),(902,'Direct Photos at D-Zero','Linn','','','','','','','','',1989,11,16,2447847,0,0,0,0),(903,'Hardware and Software Systems for Commissioning the D0 Detector','Angstadt et al','','','','','','','','',1989,11,28,2447859,0,0,0,0),(904,'Cone Algorithm for Jet Finding','Hadley','','','','','','','$D0_PRI/904/m_d0note_904.pdf','',1989,11,28,2447859,2004,11,8,2453318),(905,'PJET - Parton Jets in the Monte Carlo','Klima, Stewart','','','','','','','$D0_PRI/905/m_d0note_905.pdf','',1989,12,15,2447876,2004,11,8,2453318),(906,'Remarks on Electroweak Physics in D0','Strovink','','','','','','','','',1989,12,7,2447868,0,0,0,0),(907,'Level 2 Filtering','Linnemann','','','','','','','','',1989,12,8,2447869,0,0,0,0),(908,'Simulation of a Silicon Vertex Detector at D0','Ellison','','','','','','','','',1989,12,8,2447869,0,0,0,0),(909,'Level 2 System Programmers Users Manual','Hoftun','','','','','','','','',1989,12,12,2447873,0,0,0,0),(910,'Physics Prospects of QCD','Weerts','','','','','','','','',1989,12,8,2447869,0,0,0,0),(911,'Measuring Z\' --> at D0','Repond','','','','','','','','',1989,10,8,2447808,0,0,0,0),(912,'Sampling Fractions of CCEM Modules','Demarteau, Neal','','','','','','','$D0_PRI/912/m_d0note_912.pdf','',1989,12,1,2447862,2004,11,8,2453318),(913,'Does the D0 Signal Cable Contaminate Liquid Argon? Most CertainlyNot!','Blazey, Budka, Ferbel, Lobkowicz','','','','','','','','',1989,12,30,2447891,0,0,0,0),(914,'Improving Energy Resolution of Caloriemters Using a CovarianceMatrix Approach','Kewley, Blazey, Chiu, Ferbel','','','','','','','','',1990,1,1,2447893,0,0,0,0),(915,'HDBATCH: Batch Entry Program for the HDB database','Waller','','','','','','','','',1990,1,11,2447903,0,0,0,0),(916,'Summary Report of the QCD Collider Group at Physics at Fermilab inthe 1990\'s','Weerts','','','','','','','','',1990,1,11,2447903,0,0,0,0),(917,'Status of the D0 Detector at Fermilab (D0CONF-90-1)','White','','','','','','','','',1990,1,11,2447903,0,0,0,0),(918,'Central Tracking Meeting Transparencies, December CollaborationMeeting','None','','','','','','','$D0_PRI/918/m_d0note_918.pdf','',1990,1,11,2447903,2004,11,8,2453318),(919,'User\'s Guide - D0 Clock Timing Language Translator','Graves','','','','','','','','',1990,1,18,2447910,0,0,0,0),(920,'Guidline to Composing Source Timing Files for the D0 Master Clock','Rotolo','','','','','','','','',1990,1,18,2447910,0,0,0,0),(921,'D0 Clock User\'s Guide for 1989 Tests at D0','Rotolo, Fachin','','','','','','','','',1990,1,18,2447910,0,0,0,0),(922,'Users Guide D0 Clock Control and Test Program','Graves','','','','','','','','',1990,1,18,2447910,0,0,0,0),(923,'Design for a Final D0 Clock System','None','','','','','','','','',1990,1,18,2447910,0,0,0,0),(924,'Response of a Uranium-Scintillator Calorimeter to Electrons, Pions,and Protons in the Momentum Range 0.5-10 GeV/c','The Zeus Group','','','','','','','','',1990,1,18,2447910,0,0,0,0),(925,'Proposed Design for a Photomutiplier Tube Testing Facility','De,Seegers, Geld, Marcin, Neal','','','','','','','','',1990,2,5,2447928,0,0,0,0),(926,'D0 Clock Selectro Fanout Module Hardware Description','Rotolo','','','','','','','','',1990,1,26,2447918,0,0,0,0),(927,'D0 Sequencer Hardware Description','Fachin, Rotolo','','','','','','','','',1990,1,26,2447918,0,0,0,0),(928,'Isolating Heavy Top in Lepton + Jets','Grannis','','','','','','','','',1990,2,4,2447927,0,0,0,0),(929,'Central Detector Software Meeting Transparencies, DecemberCollaboration Meeting','None','','','','','','','','',1989,12,1,2447862,0,0,0,0),(930,'Simulation of Electromagnetic Shower in d0 Calorimeter at MSU','Xia','','','','','','','','',1990,2,5,2447928,0,0,0,0),(931,'Central Tracking Detectors, February Collaboration Meeting','Buchholz','','','','','','','','',1990,2,14,2447937,0,0,0,0),(932,'Comments on the Calibration of D0 Calorimeter and the feasibilityof the Low Momentum Hadron Beam at FNAL','Piekarz','','','','','','','','',1990,2,15,2447938,0,0,0,0),(933,'Vertex Position and Et Uncertainty','Abolins','','','','','','','','',1990,2,5,2447928,0,0,0,0),(934,'Collider Physics at Fermilab in the 1990\'s (D0CONF-90-2)','Fisk et al','','','','','','','','',1990,2,27,2447950,0,0,0,0),(935,'SAMUS - Small Angle Muon Spectrometer Status Report','Antipov','','','','','','','','',1990,2,13,2447936,0,0,0,0),(936,'Comparison of Pulser and Calrimeter Signals in the D0 Electronics','Kourlas, Sculli','','','','','','','','',1990,2,26,2447949,0,0,0,0),(937,'5000 Channel Test, February Collaboration Meeting','Sculli','','','','','','','','',1990,2,16,2447939,0,0,0,0),(938,'Open for Re-assignment','None','','','','','','','','',1990,3,6,2447957,0,0,0,0),(939,'Muon Chamber Testing Procedure','Gore et al','','','','','','','','',1990,4,23,2448005,0,0,0,0),(940,'D0 Liquid Argon Monitoring Hardware','Blazey','','','','','','','','',1991,3,1,2448317,0,0,0,0),(941,'D0 Event Display Users Guide Pixie V2.1','Hagopian','','','','','','','','',1990,3,26,2447977,0,0,0,0),(942,'Physics Issues for Hadron Colliders in the Near Term','Grannis','','','','','','','','',1990,3,14,2447965,0,0,0,0),(943,'Note on the software correction of CC-EMS-23 REsponses','Ahn','','','','','','','','',1990,3,22,2447973,0,0,0,0),(944,'EXAMINE','Klima, Prosper','','','','','','','','',1990,4,23,2448005,0,0,0,0),(945,'Calorimeter Electronics - BLS Test Procedures','Borcherding','','','','','','','','',1990,4,10,2447992,0,0,0,0),(946,'BLS Test Stand Calibration','Borcherding','','','','','','','','',1990,4,10,2447992,0,0,0,0),(947,'D0 Central Tracking FADC Card System','Voy','','','','','','','','',1990,4,7,2447989,0,0,0,0),(948,'Central Detector Software Meeting','Zieminska et al','','','','','','','','',1990,3,28,2447979,0,0,0,0),(949,'D0 Stainless Pipe through EC -- Strenght and Protection','Jostlein','','','','','','','','',1990,4,11,2447993,0,0,0,0),(950,'The Collider Detector at Fermilab: Collected Physics Papers - CDFCollaboration Reprints from Physical Review Letters & Physical Review D -10/88 to 1/90','None','','','','','','','','',1990,4,1,2447983,0,0,0,0),(951,'D0 Control Data Acquisition - Network Data Transmission Protocol','Jonckheere','','','','','','','','',1990,4,16,2447998,0,0,0,0),(952,'Proceedings of the ICD Workshop of 3/27/90','De','','','','','','','','',1990,3,27,2447978,0,0,0,0),(953,'D0 Central Tracking Discrete Shaper','Chase','','','','','','','','',1990,4,23,2448005,0,0,0,0),(954,'Capacitance Data for Entire CC Cryostat Modules','Yu','','','','','','','','',1990,4,23,2448005,0,0,0,0),(955,'Control Room Design and Plan Information','Gibbard et al','','','','','','','','',1990,4,26,2448008,0,0,0,0),(956,'Beyond the Standard Model','Fisk','','','','','','','','',1990,4,1,2447983,0,0,0,0),(957,'Jets & Kinematics','Baden, Hadley','','','','','','','$D0_PRI/957/m_957_jets.ps','',1990,5,3,2448015,2002,2,28,2452334),(958,'Central Detector Software Meeting','Li-DeMarteau et al','','','','','','','','',1990,4,27,2448009,0,0,0,0),(959,'Users Guide to DOHPLT','Hagopian','','','','','','','','',1990,3,21,2447972,0,0,0,0),(960,'Central Tracking Detectors - Collab. Meeting','Buchholz et al','','','','','','','','',1990,4,24,2448006,0,0,0,0),(961,'Study of Bicron 414 Scintillator and Possible Wavelength Shfits','Bross','','','','','','','','',1990,5,15,2448027,0,0,0,0),(962,'D0 Central Tracking FADC Controller Module','Utes','','','','','','','','',1990,4,17,2447999,0,0,0,0),(963,'DBL3 Database at D0','Abachi','','','','','','','','',1990,5,1,2448013,0,0,0,0),(964,'Applications of Neutral Network in High Energy Physics (D0CONF-90-3)','Cutts et al','','','','','','','','',1990,5,15,2448027,0,0,0,0),(965,'Database Management for the ECEM Calorimeter','Worth','','','','','','','','',1990,5,16,2448028,0,0,0,0),(966,'Tour Guide in Muons in the MCH','Fortner','','','','','','','','',1990,5,17,2448029,0,0,0,0),(967,'First Level Trigger Data Block Description - Revision B','Laurens','','','','','','','','',1992,12,17,2448974,0,0,0,0),(968,'Raw Data Structure for D0','Cutts et al','','','','','','','','',1989,12,21,2447882,0,0,0,0),(969,'D0GEANT User\'s Guide','Jonckheere','','','','','','','','',1990,5,30,2448042,0,0,0,0),(970,'Comparison Pulser and Calorimeter Signals - Continued','Kourlas','','','','','','','','',1990,5,1,2448013,0,0,0,0),(971,'A Special Function Coprocessor for Level 2','Cutts et al','','','','','','','','',1990,6,26,2448069,0,0,0,0),(972,'D0 Data Acquisition \"High Speed Data Paths for D0\"','Cutts et al','','','','','','','','',1990,4,1,2447983,0,0,0,0),(973,'Status of the TRD Trigger','Utes','','','','','','','','',1990,6,13,2448056,0,0,0,0),(974,'D0 Muon Chamber Monitor Board Calibration Procedure','Drendel','','','','','','','','',1990,5,6,2448018,0,0,0,0),(975,'Simulation of a Silcon Vertex Detector in the D0 Experiment','Ellison, Kernan, Smith','','','','','','','','',1990,6,1,2448044,0,0,0,0),(976,'Accelerator Upgrade and Main Injector at the D0 Upgrade Workshoppresented by G. Dugan','Dugan','','','','','','','','',1990,6,12,2448055,0,0,0,0),(977,'SAMUS Software Status and Plans','Glebov, Podstavkov','','','','','','','','',1990,6,5,2448048,0,0,0,0),(978,'Background Particle Fluctuations in the D0 Small Angle Muon Systemat Fermilab, I.','Azhgirey, Mokhov, Uzunian','','','','','','','','',1990,5,1,2448013,0,0,0,0),(979,'Control Board Testing','Scarpelli','','','','','','','','',1990,6,28,2448071,0,0,0,0),(980,'Central Detectors General Meeting','Buchholz et al','','','','','','','','',1990,6,27,2448070,0,0,0,0),(981,'Performance of the D0 Uranium Liquid Argon Calorimeter Modules( D0PUB-90-1)','Franzini','','','','','','','','',1990,7,2,2448075,0,0,0,0),(982,'Symmetric Shape Filters','Franzini','','','','','','','','',1990,7,2,2448075,0,0,0,0),(983,'Motherboard Documentation','Morphis','','','','','','','','',1991,1,1,2448258,0,0,0,0),(984,'B Physics at CDF/D0 Upgrade Workshop','Tipton','','','','','','','','',1990,6,1,2448044,0,0,0,0),(985,'All talks on Calorimeter at D0 Upgrade Workshop','Cooper et al','','','','','','','','',1990,6,27,2448070,0,0,0,0),(986,'Intercryostat Detector Meetings @D0 Upgrade Workshop','Neal et al','','','','','','','','',1990,6,27,2448070,0,0,0,0),(987,'A Preliminary Study of the Pt Response of the EMPACT eta = 3.0 Cone','Forden','','','','','','','','',1990,7,16,2448089,0,0,0,0),(988,'Where K-short Decay','Stevenson','','','','','','','','',1990,7,17,2448090,0,0,0,0),(989,'FDC Material Study','Bantly','','','','','','','','',1990,7,4,2448077,0,0,0,0),(990,'An Early Test of the Calibration Electronics','Schuler','','','','','','','','',1990,7,20,2448093,0,0,0,0),(991,'Design Study for a Solenoid Magnet at Cetnral Detector of D0Detector','Yamada','','','','','','','','',1990,7,24,2448097,0,0,0,0),(992,'B Physics Group Meeting: Why Worry about B? at High L','Green, D.','','','','','','','','',1990,7,24,2448097,0,0,0,0),(993,'Triggering on B\'s at D0','Hedin','','','','','','','','',1990,7,31,2448104,0,0,0,0),(994,'CDAQ Porgrams in Use for D0 Muon Chambers','Gore, Igarashi','','','','','','','','',1990,8,1,2448105,0,0,0,0),(995,'Muon Coarse Centroid Trigger Card Documentation','Sze','','','','','','','','',1990,8,2,2448106,0,0,0,0),(996,'FDC Simulation in D0 GEANT','J. Bantly','','','','','','','','',1990,7,6,2448079,0,0,0,0),(997,'FDC Event Display Package','Bantly','','','','','','','','',1990,7,19,2448092,0,0,0,0),(998,'Level 0 Detector Layout','Nang, Partridge','','','','','','','','',1990,8,6,2448110,0,0,0,0),(999,'The Electronic Alignment System at the Fermilab Detector','Jostlein','','','','','','','','',1990,10,9,2448174,0,0,0,0),(1000,'Magnetic Field Calculation of SAMUS and EF Toroids','Hodel,Yamada','','','','','','','','',1990,8,16,2448120,0,0,0,0),(1001,'Program Builder and D0 User (Offline Tutorial)','Protopopescu','','','','','','','','',1990,5,23,2448035,0,0,0,0),(1002,'Use of Zebra in D0 (Offline Tutorial)','Raja','','','','','','','','',1990,6,6,2448049,0,0,0,0),(1003,'Isajet and Isazeb/VAX Debugger and PCA','Protopopescu, Raja','','','','','','','','',1990,6,13,2448056,0,0,0,0),(1004,'Calor_off Frame','Klima','','','','','','','','',1990,6,20,2448063,0,0,0,0),(1005,'Utilities: Event I/O, Event Dumps, Error Message, SRCP','Protopopescu, Linnemann, Prosper','','','','','','','','',1990,7,11,2448084,0,0,0,0),(1006,'Reconstruction and Analysis: Tracking Packages, CalorimeterPackages','Zieminska D, Hadley, Raja','','','','','','','$D0_PRI/1006/m_d0note_1006.pdf','',1990,7,18,2448091,2004,11,4,2453314),(1007,'D0 GEANT: Overview and Calorimeter, Central Tracking, Muon Tracking','Raja, Li-Demarteau, Kunori','','','','','','','$D0_PRI/1007/m_d0note_1007.pdf','',1990,7,18,2448091,2004,11,3,2453313),(1008,'Resources on VMS, DBL3','Rutschow, Abachi','','','','','','','','',1990,8,1,2448105,0,0,0,0),(1009,'D0 Data Management Talk Presentated at the workshop on DataStructures in High Energy Physics, Erice, Italy, November 11 - 17, 1990(D0CONF-91-1)','Protopopescu','','','','','','','','',1991,2,4,2448292,0,0,0,0),(1010,'Distinguishing Photons from pi degree\'s in the D-Zero Calorimeter','Womersley','','','','','','','','',1991,2,27,2448315,0,0,0,0),(1011,'Examine 2 for Muons at the Cosmic Ray Test Run Jan. - Feb. 1991','Repond','','','','','','','','',1991,2,26,2448314,0,0,0,0),(1012,'How to Run the VMA L2 ELECTRON Filter','Xia','','','','','','','','',1991,3,10,2448326,0,0,0,0),(1013,'D0 Central Tracking Suppression Chip Description ','DeGroot','','','','','','','','',1988,8,23,2447397,0,0,0,0),(1014,'Muon Chamber Electostatic Calculation and Comparison to Beam TestResults','Huishun','','','','','','','','',1990,8,12,2448116,0,0,0,0),(1015,'B Physics Options at Tev1','Heinrich, McDonald','','','','','','','','',1990,8,12,2448116,0,0,0,0),(1016,'FADC Board Testing Summary','Balderston','','','','','','','','',1990,8,17,2448121,0,0,0,0),(1017,'A Monte Carlo Study of Hadronic Energy Corrections in the ICD','De','','','','','','','','',1990,8,20,2448124,0,0,0,0),(1018,'The Performance and Physics Potential of the D0 Detector Operatingat the SSC','Guryn et al','','','','','','','','',1990,10,10,2448175,0,0,0,0),(1019,'Monte Carlo Simulation of the D0 Transition Radiation Detector','Ducros','','','','','','','','',1990,9,6,2448141,0,0,0,0),(1020,'Filtering in Level 2 - An Example','Nesic','','','','','','','','',1990,9,12,2448147,0,0,0,0),(1021,'Central Detector Software Meeting Summary and Transparencies -Fermilab June 18, 1990','Trippe','','','','','','','','',1990,9,6,2448141,0,0,0,0),(1022,'Measuring CP Violation at the Upgarded Tevatron','Roe','','','','','','','','',1990,9,4,2448139,0,0,0,0),(1023,'CDC Simulation in D0 GEANT','Li-Demarteau','','','','','','','','',1990,7,26,2448099,0,0,0,0),(1024,'Central Trakcing Detector Meeting of 9/5/90','Buchholz','','','','','','','','',1990,9,11,2448146,0,0,0,0),(1025,'Central Detector Software Meetings of 9/6-7/90','Trippe et al','','','','','','','','',1990,9,1,2448136,0,0,0,0),(1026,'D0 Calorimeter Electronics','Schamberger','','','','','','','','',1990,9,1,2448136,0,0,0,0),(1027,'Level 2 Filtering Meeting held on 9/6/90 at FNAL','Linnemann','','','','','','','','',1990,9,17,2448152,0,0,0,0),(1028,'Calorimeter General Meeting 9/6/90','Madaras','','','','','','','','',1990,9,19,2448154,0,0,0,0),(1029,'User Manual for the D0 Clock Interface - Revised 10/11/91','Paterno, Bartlett','','','','','','','','',1992,1,17,2448639,0,0,0,0),(1030,'User Reference Manual for D0 Clock Interface Routines','Paterno, L.','','','','','','','','',1992,1,10,2448632,0,0,0,0),(1031,'Identification of Heavy Top Events','Snyder','','','','','','','','',1990,10,9,2448174,0,0,0,0),(1032,'None','Klima, B.','','','','','','','','',1990,9,26,2448161,0,0,0,0),(1033,'A Map of Fermilab Conference Rooms','Martin, T.','','','','','','','','',1990,9,7,2448142,0,0,0,0),(1034,'Heavy Higgs to 4 Leptons at SSC: (*) Acceptance Studies','Repond','','','','','','','','',1990,7,13,2448086,0,0,0,0),(1035,'D0 Alarms System','Software Systems Review Group','','','','','','','','',1990,10,4,2448169,0,0,0,0),(1036,'June 1990 Field Measurement on SAMUS Toroids on the Sidewalk','Jostlein, Schekulaev','','','','','','','','',1990,10,9,2448174,0,0,0,0),(1037,'Jet Size','Hadley','','','','','','','','',1990,10,16,2448181,0,0,0,0),(1038,'Calorimeter and ICD Upgrade','Borcherding et al','','','','','','','','',1990,10,11,2448176,0,0,0,0),(1039,'Silicon Vertex Detector for D0 (expression of interest)','MoscowState University','','','','','','','','',1990,10,12,2448177,0,0,0,0),(1040,'Effects of Calorimeter E/? Response in SSC Compositness Searches','Forden','','','','','','','','',1990,10,14,2448179,0,0,0,0),(1041,'Search for Quark Compositeness at D0','Forden','','','','','','','','',1990,10,14,2448179,0,0,0,0),(1042,'D0 Database Access','Daniels','','','','','','','','',1990,10,23,2448188,0,0,0,0),(1043,'Test Calorimeter Simulation Design','Daniels','','','','','','','','',1990,10,23,2448188,0,0,0,0),(1044,'Level 1 Jet Trigger and Level 2 Jet Tool Rates and Efficiencies','Astur, Weerts','','','QCD','','','','$D0_PRI/1044/m_note1044.ps','',1990,11,8,2448204,2002,9,18,2452536),(1045,'D0 Shower Library','Raja','','','','','','','','',1990,10,26,2448191,0,0,0,0),(1046,'D0 WZ Physics Group meeting Transparencies','Madaras','','','','','','','','',1990,10,18,2448183,0,0,0,0),(1047,'Description of the MAC Test Board and Supporting Software Code','Hall et al','','','','','','','','',1990,10,7,2448172,0,0,0,0),(1048,'Description of Software Tests for the Module Address Card','Fahland','','','','','','','','',1990,9,12,2448147,0,0,0,0),(1049,'Performance of CD Detectors at NWA Test Beam (transparencies fromCollaboration meeting)','Avery, Oltman, Li-Demarteau','','','','','','','','',1990,9,1,2448136,0,0,0,0),(1050,'Performance of the D0 End Calorimeter Electromagnetic Moudle','Aihara','','','','','','','$D0_PRI/1050/m_d0note_1050.pdf','',1990,11,5,2448201,2004,11,4,2453314),(1051,'The D0 Rack Monitor Module','Frank et al','','','','','','','','',1990,11,7,2448203,0,0,0,0),(1052,'Quality Factor Estimate of the Effects due to Separating CC and ECCryostats by an Addition 2\"','Raja, Womersley','','','','','','','$D0_PRI/1052/m_d0note_1052.pdf','',1990,10,1,2448166,2004,11,4,2453314),(1053,'A study of e/? discriminiation in the Crack Regions of D-ZeroCalorimeters','Shiu, Blazey, Ferbel','','','','','','','','',1990,11,15,2448211,0,0,0,0),(1054,'The VME-based D0 Muon Trigger Electronics','Fortner et al','','','','','','','','',1990,11,14,2448210,0,0,0,0),(1055,'Monte Carlo Studies of Single Pions, Electrons, & Jets','Hadley','','','','','','','','',1990,11,19,2448215,0,0,0,0),(1056,'Transparencies from D0 Upgrade Proposal Presentation','Hadley','','','','','','','','',1990,11,19,2448215,0,0,0,0),(1057,'Transparencies from General Central Tracking Meeting','Buchholz','','','','','','','','',1990,10,20,2448185,0,0,0,0),(1058,'Summaries & Transparencies from Top Group Meeting','Klima','','','','','','','','',1990,11,21,2448217,0,0,0,0),(1059,'General Calorimeter Meeting of 11/15/90','Christenson','','','','','','','','',1990,11,27,2448223,0,0,0,0),(1060,'High Speed Digital TDC for D0 Vertex Reconstruction','Gae,Partridge','','','','','','','$D0_PRI/1060/m_fastz.pdf','',1991,3,4,2448320,2005,2,10,2453412),(1061,'CD Software Transparencies & Minutes for November 1990Collaboration Meeting','Oltman','','','','','','','','',1990,11,29,2448225,0,0,0,0),(1062,'Test Procedure Omni Byte CPU Board','Ream','','','','','','','','',1990,12,4,2448230,0,0,0,0),(1063,'Copies of Presentation given at the International Conference ofCalorimetry in High Energy Physics','Spadafora, Amos, Blazey, DeMarteau','','','','','','','','',1990,12,5,2448231,0,0,0,0),(1064,'D0 Alarm Priorities','Borcherding','','','','','','','','',1990,11,16,2448212,0,0,0,0),(1065,'Some comments on Pjets','Norman','','','','','','','$D0_PRI/1065/m_d0note_1065.pdf','',1990,12,17,2448243,2004,11,4,2453314),(1066,'D0 Canary Prescaler','Tilden, Utes','','','','','','','','',1990,12,9,2448235,0,0,0,0),(1067,'Level-2/Data Acquisition a Presentation to Software Systems ReviewGroup -- 12/13/90 Part I','Cutts','','','','','','','','',1990,12,13,2448239,0,0,0,0),(1068,'Level-2/Data Acquisition a Presentation to Software Systems ReviewGroup --1/3/91 Part II','Cutts','','','','','','','','',1991,1,3,2448260,0,0,0,0),(1069,'Calorimeter Addressing','Borcherding','','','','','','','','',1991,1,10,2448267,0,0,0,0),(1070,'CETEC System','Borcherding','','','','','','','','',1990,12,26,2448252,0,0,0,0),(1071,'CTC Trigger Module','Borcherding','','','','','','','','',1990,12,26,2448252,0,0,0,0),(1072,'Plans for and Status of a Facility to SAVE/RESTORE/LOG/ DISPLAYControl Data in D0','Englemann','','','','','','','','',1990,12,20,2448246,0,0,0,0),(1073,'Test Procedure for the Mac Card','Ream, Taketani, Gao, Li','','','','','','','','',1991,1,14,2448271,0,0,0,0),(1074,'P823 (D0 Upgrade): Responses to Physics Advisory Committee','Grannis','','','','','','','','',1991,1,7,2448264,0,0,0,0),(1075,'D0 Muon Backplane Certification','Hanson, Weddle, Ream, Brzezniak,Schultz','','','','','','','','',1991,3,7,2448323,0,0,0,0),(1076,'1990 Test Beam Performance and Studies -- Beam Performance andStudies','Lipton','','','','','','','','',1991,1,21,2448278,0,0,0,0),(1077,'1990 Test Beam Performance and Studies -- Electronics Studies','Lipton','','','','','','','','',1991,1,21,2448278,0,0,0,0),(1078,'1990 Test Beam Performance and Studies -- Detector Studies','Lipton','','','','','','','','',1991,1,21,2448278,0,0,0,0),(1079,'D0 Monte Carlo Physics Mini-Conference, January 11-12, 1991 Part AGeneral Topics','LBL','','','','','','','','',1991,1,14,2448271,0,0,0,0),(1080,'D0 Monte Carlo Physics Mini-Conference, January 11-12, 1991 Part BQCD Physics','LBL','','','','','','','','',1991,1,14,2448271,0,0,0,0),(1081,'D0 Monte Carlo Physics Mini-Conference, January 11-12, 1991 Part CB Physics and W/Z Physics','LBL','','','','','','','','',1991,1,14,2448271,0,0,0,0),(1082,'D0 Monte Carlo Physics Mini-Conference, January 11-12, 1991 Part DTop Physics and Summary','LBL','','','','','','','','',1991,1,14,2448271,0,0,0,0),(1083,'Test Beam Results from the D0 Endcap Electromagnetic CalorimeterModule (D0CONF-91-2)','Spadafora','','','','','','','$D0_PRI/1083/m_d0note_1083.pdf','',1991,1,21,2448278,2004,11,4,2453314),(1084,'Summing Resistors for Central Calorimetry','Abolins, Edmunds,Pi','','','','','','','','',1991,2,13,2448301,0,0,0,0),(1085,'D0 Collaboration Meeting Upgrade Sub-Meeting 1/17/91','Tuts','','','','','','','','',1991,1,24,2448281,0,0,0,0),(1086,'Concepts for a D0 Silicon Tracker','Strovink','','','','','','','','',1991,1,28,2448285,0,0,0,0),(1087,'D0 Calorimeter Electronics Performance (D0CONF-91-3)','Demarteau','','','','','','','','',1991,1,28,2448285,0,0,0,0),(1088,'An Evaluation of the Calorimeter Energy of the Calorimeter EnergyResolution and e/? ration in the D0GEANT Monte Carlo','Womersley','','','','','','','','',1991,1,29,2448286,0,0,0,0),(1089,'Reduced Data from EC-S Cryostat Survey; Comparison of EC-S and EC-NHeads','Murphy','','','','','','','','',1991,1,20,2448277,0,0,0,0),(1090,'Preliminary Study of e/? in the IH with 1990 test beam data','Tartaglia','','','','','','','','',1991,2,1,2448289,0,0,0,0),(1091,'Simulation of a Neural Network to find track angles from D0 Muonchamber pad signals','Haggerty','','','','','','','','',1991,2,6,2448294,0,0,0,0),(1092,'Transparencies form D0 Silicon Workshop','Strovink','','','','','','','','',1991,2,15,2448303,0,0,0,0),(1093,'EC Contributions to Trigger Towers 1 through 6, addendum to D0 Note','Abolins','','','','','','','','',1991,2,27,2448315,0,0,0,0),(1094,'None','Graf','','','','','','','','',1991,3,1,2448317,0,0,0,0),(1095,'Tagging Beauty with D0 Calorimeter ','Park','','','','','','','','',1991,3,4,2448320,0,0,0,0),(1096,'Minutes of the 1/17/91 Central Detector Software Meeting','Cochran','','','','','','','','',1991,3,4,2448320,0,0,0,0),(1097,'A Computer Based System to measure Wire Tensions in Drift Chambers','Rijssenbeek, Finocchiaro, Behnke, Cochran','','','','','','','','',1991,3,4,2448320,0,0,0,0),(1098,'Hardware Database Device Names, Subsystems and Hierarchical PathDesignations','Jonckheere, Krzywdzinski','','','','','','','','',1991,3,1,2448317,0,0,0,0),(1099,'Minutes and Transparencies of the 3/14/91 Central Detector SoftwareMeeting','Avery','','','','','','','','',1991,3,20,2448336,0,0,0,0),(1100,'Using Neural Networks to Identify Jets in Hadron-Hadron Collisions(D0CONF-91-4)','Bhat','','','','','','','','',1991,3,21,2448337,0,0,0,0),(1101,'Muon Reconstruction with a Parabolic Interpolation','Franks,Kernan, Klatchko','','','','','','','','',1990,11,1,2448197,0,0,0,0),(1102,'Muon Reconstruction with a 3D Kalman Filter and ChebchevInterpolation','Franks, Kernan, Klatchko','','','','','','','','',1990,3,11,2447962,0,0,0,0),(1103,'Installing the Magnetic Field Map into the D0 Software','Fahland,Klatchko','','','','','','','','',1991,3,25,2448341,0,0,0,0),(1104,'Proposed NW Beamline Upgarde for D0 Test Beam Load-2','Pushpa','','','','','','','','',1991,3,29,2448345,0,0,0,0),(1105,'General Central Tracking Meeting 1/16/91','Buchholz','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1106,'General Central Tracking Meeting 3/14/91','Buchholz','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1107,'The Experimental Setup for Studying the Characteristics of theModules of the Liquid Argon Calorimeter for the D0 Detector','Cherny','','','','','','','','',1991,2,1,2448289,0,0,0,0),(1108,'Minimum Momentum of Muons Escpaing from the D0 Detector','Brzezniak,Hodel, Yamada','','','','','','','','',1991,3,29,2448345,0,0,0,0),(1109,'Evolution of D0 Program','Grannis','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1110,'Physics Highlights of the D0 Upgrade Proposal','Brock','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1111,'Scintillating Fiber Charged Particle Tracker & Preshower for D0','Koltick','','','','','','','','',1991,3,31,2448347,0,0,0,0),(1112,'Performance of the D0 Sci Fi Tracking System','Adams','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1113,'Si Tracker Design','Strovink','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1114,'Central Tracker Performance II (Emphasis on Silicon) Acceptance andResolution','Schellman','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1115,'The D0 Muon Detector at the Upgraded Tevatron','Fortner','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1116,'Calorimeter Electronics Upgrade','Schamberger','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1117,'Triggering Issues at the D0 Upgrade','Hedin','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1118,'Data Acquisition and Computing System Upgrade','Gibbard','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1119,'D0 Upgrade Project Timescales','None','','','','','','','','',1991,4,2,2448349,0,0,0,0),(1120,'D0 Upgrade Project: Resources','Montgomery','','','','','','','','',1991,4,2,2448349,0,0,0,0),(1121,'D0 Level-2/Data Acquisition; the New Generation','Cullen-Vidal,Cutts, Hoftun, Nesic','','','','','','','','',1991,4,1,2448348,0,0,0,0),(1122,'Measuring CP Violation at the Upgraded Tevatron, II UPdate andEstimate of Tagging Efficiency','Roe','','','','','','','','',1991,5,1,2448378,0,0,0,0),(1123,'Some Highlights of the MC91 Workshop on Detector and EventSimulation','Womersley','','','','','','','','',1991,5,1,2448378,0,0,0,0),(1124,'Material Upstream of the EC calorimeters: Real Life, D0GEANT andTest Beam Load 1','Womersley','','','','','','','','',1991,5,1,2448378,0,0,0,0),(1125,'The UA2 Collaboration Lecture','DiLella','','','','','','','','',1991,5,7,2448384,0,0,0,0),(1126,'Sequencer V0.03 Mk. II and Its Operation (1)','Cullen-Vidal, Cutts','','','','','','','','',1991,5,1,2448378,0,0,0,0),(1127,'SSRG Review Offline Event Reconstruction 2/21 - 5/2/91','Protopopescu','','','','','','','','',1991,5,15,2448392,0,0,0,0),(1128,'An Experience of Adjusting D0GEANT to Match Test Beam 87 Data','Xia','','','','','','','','',1991,5,15,2448392,0,0,0,0),(1129,'Effect of the D0 Upgrade Magnetic Field on Jet Energy Resolution','Feher','','','','','','','','',1991,5,23,2448400,0,0,0,0),(1130,'The Performance of the D0 End Cap Hadronic Caloriemter Modules','Amos','','','','','','','','',1991,5,23,2448400,0,0,0,0),(1131,'Transparencies of W/Z Meeting, 3/15/91','Brock, Roe','','','','','','','','',1991,5,23,2448400,0,0,0,0),(1132,'Fast Sampling Calorimetry with Solid ARgon Ionization Chambers','Linn, Piekarz, Whal, Womersley, Hansen, Hurh, Rivatta, Sanders,Schmitt, Stanek','','','','','','','','',1991,5,23,2448400,0,0,0,0),(1133,'Proposed Configuration for D0 Stage I Silicon','Strovink','','','','','','','','',1991,5,28,2448405,0,0,0,0),(1134,'SAMUS Reconstruction Program','Eroshin','','','','','','','','',1991,5,20,2448397,0,0,0,0),(1135,'SAMUS Installation in D0GEANT','Glebov, Kiryunin','','','','','','','','',1991,5,20,2448397,0,0,0,0),(1136,'Parameterization of the Longitudial Development of Hadron Showersin the D0 End Calorimeter','Norman','','','','','','','','',1991,5,30,2448407,0,0,0,0),(1137,'Hardware Modifications to the Version 4.01 Module Address Card','Knol, Bazizi, Hall, Gao, Hansen, Taketani','','','','','','','','',1991,5,31,2448408,0,0,0,0),(1138,'Quench Program Ddesquench (Modified QT.CNTL)','Mesin, Yamada','','','','','','','','',1991,5,31,2448408,0,0,0,0),(1139,'D0 WZ Physics Group Meeting Transparencies','Madaras','','','','','','','','',1991,5,23,2448400,0,0,0,0),(1140,'Voltage Distribution near a Symmetric Short','McCarthy','','','','','','','','',1991,6,12,2448420,0,0,0,0),(1141,'Prospects for Using Photosensitive D0pants to Improve the \r\ne/pi ratio of Liquid Argon Calorimeter','Anderson, Amos','','','','','','','','',1991,6,1,2448409,0,0,0,0),(1142,'General Central Detector Meeting','Buchholz','','','','','','','','',1991,5,23,2448400,0,0,0,0),(1143,'None','Hall','','','','','','','','',1991,6,13,2448421,0,0,0,0),(1144,'Calorimeter Electronics Testing Using Examine2','Streets, Kotcher,Rasmussen, Sculli, Zhu','','','','','','','','',1991,6,21,2448429,0,0,0,0),(1145,'Level 1 Muon Trigger Test in the Spring Cosmic Ray Run','Bazizi','','','','','','','','',1991,7,20,2448458,0,0,0,0),(1146,'Neutron Interactions in Scintillating-Fiber Central Trackers forSCD and D-Zero','Margulies','','','','','','','','',1991,4,22,2448369,0,0,0,0),(1147,'How to Move EF-N Back to Platformand Get EMC-N on Sidewalk beforethe Commissioning Run of September: Another \"Cool Move\"','Murphy','','','','','','','','',1991,6,19,2448427,0,0,0,0),(1148,'P823 (D0 Upgrade) Response to Physics Advisory Committee','Grannis','','','','','','','','',1991,6,18,2448426,0,0,0,0),(1149,'D0 Central Tracking Data Acquisition Map (Revised)','Bagby','','','','','','','','',1991,11,7,2448568,0,0,0,0),(1150,'Interactions of Albedo Neutrons with Scintillating Fibers','Margulies','','','','','','','','',1990,6,29,2448072,0,0,0,0),(1151,'Pre-Amplifier Noises; A Research Techniques Seminar Presented onJuly 2, 1991','Shuvalov, Krasnokutsky','','','','','','','','',1991,7,2,2448440,0,0,0,0),(1152,'Alignment by Survey and by Cosmis for the Muon System (The BasementSpectrometer)','Repond','','','','','','','','',1990,3,19,2447970,0,0,0,0),(1153,'D-Zero \"Intermediate Level\" Offline Computing Needs','Gibbard,Grannis','','','','','','','','',1991,7,8,2448446,0,0,0,0),(1154,'How McCarthy\'s \"Malter Theory of DC Currents in Uranium Modles 780\"fits the EC data','Stevenson','','','','','','','','',1991,7,15,2448453,0,0,0,0),(1155,'Radiation Levels in D0 and Effects on Silicon Detectors','Ellison','','','','','','','','',1991,7,12,2448450,0,0,0,0),(1156,'Offline Data Processing and Analysis (1st D0 Run)','Protopopescu','','','','','','','','',1991,7,15,2448453,0,0,0,0),(1157,'Inclusive Jet Cross Sections: Compare Monte Carlo to QCDPredictions','Hadley','','','','','','','$D0_PRI/1157/m_d0note_1157.pdf','',1991,7,15,2448453,2004,11,4,2453314),(1158,'Prospects for 4th Generation b\' Quark at D0 and its relation to SUSYSearches','Zieminska','','','','','','','','',1991,7,18,2448456,0,0,0,0),(1159,'EC Contributions to Trigger Towers 1 through 6','Abolins','','','','','','','','',1991,7,22,2448460,0,0,0,0),(1160,'The Kalman Filter Technique & Multiple Coulomb Scattering Error forthe D0 user','Klatchko','','','','','','','','',1991,7,23,2448461,0,0,0,0),(1161,'Search for Signal from T-Quarks in Invarient Mass Spectra','Kozlovsky','','','','','','','','',1991,7,23,2448461,0,0,0,0),(1162,'Eta-dependendt Effects Due to Shower Size','Draper, Durston,Amos','','','','','','','$D0_PRI/1162/m_d0note_1162.pdf','',1991,7,23,2448461,2004,11,4,2453314),(1163,'Level 2 Trigger Status','Linnemann','','','','','','','','',1991,7,26,2448464,0,0,0,0),(1164,'User\'s Guide to CC/EC Energy Correction Software Version 1.0','Stephens','','','','','','','$D0_PRI/1164/m_d0note_1164.pdf','',1991,9,1,2448501,2004,11,4,2453314),(1165,'Energy Corrections for the CC/EC Transition Region','Stephens','','','','','','','$D0_PRI/1165/m_d0note_1165.pdf','',1991,9,1,2448501,2004,11,4,2453314),(1166,'The Pileup Problem. The Cojmparison of Herwig and Isajet SoftEvents','Kozlovsky','','','','','','','$D0_PRI/1166/m_d0note_1166.pdf','',1991,8,5,2448474,2004,11,4,2453314),(1167,'D0 Parameter Page','Raja','','','','','','','','',1991,8,6,2448475,0,0,0,0),(1168,'HDB Entry...','Raja','','','','','','','','',1991,8,6,2448475,0,0,0,0),(1169,'D0 Vertex Drift Chamber Construction & Test Beam Results','Oltman','','','','','','','','',1991,8,8,2448477,0,0,0,0),(1170,'None','Madaras','','','','','','','','',1991,8,8,2448477,0,0,0,0),(1171,'Energy Linearity and Resolution of D0 Calorimeters','Borders','','','','','','','$D0_PRI/1171/m_d0note_1171.pdf','',1991,8,9,2448478,2004,11,4,2453314),(1172,'Test Beam Results from the D0 Liquid Argon End CalorimeterElectromagnetic Module (D0CONF-91-5)','Spadafora','','','','','','','$D0_PRI/1172/m_note1172.ps','',1991,8,13,2448482,2002,9,18,2452536),(1173,'The Dependence of Jet Energy Scale on Fragmentation functions','May, Blazey','','','','','','','$D0_PRI/1173/m_d0note_1173.pdf','',1991,8,13,2448482,2004,11,4,2453314),(1174,'Developments on Calibrating the D0 Hadronic Calorimeter','Forden','','','','','','','','',1991,8,13,2448482,0,0,0,0),(1175,'D0HV User\'s Manual','Yang','','','','','','','','',1991,8,16,2448485,0,0,0,0),(1176,'D0 High Voltage System User\'s Guide','MacKinnon/Ken/Petravick/Pordes','','','','','','','','',1991,8,16,2448485,0,0,0,0),(1177,'Pattern Recognition in the D0 Upgrade Tracking System','Adams','','','','','','','','',1991,8,21,2448490,0,0,0,0),(1178,'Modifications to the Low Voltage Power Supplies for the D0 MuonDrift Tube Chambers','Gao, Weddle','','','','','','','','',1991,8,21,2448490,0,0,0,0),(1179,'Minutes and transparencies of the 7/18/91 Central Detector SoftwareMeeting at FNAL','Glicenstein','','','','','','','','',1991,7,18,2448456,0,0,0,0),(1180,'Pattern Recognition in the D0 Upgrade Tracking System 2: Local 3DSupercluster identification','Adams','','','','','','','','',1991,9,3,2448503,0,0,0,0),(1181,'The Effects of Photosensitive D0pants on Electron Mobility inLiquid Argon','Anderson','','','','','','','','',1991,9,4,2448504,0,0,0,0),(1182,'The Vertex Pad Oscillation Investigation','Utes, Matulik','','','','','','','','',1991,9,10,2448510,0,0,0,0),(1183,'D0 Upgrade Silicon Systems','Pawlak','','','','','','','','',1991,9,11,2448511,0,0,0,0),(1184,'Parametrization of the Multiple Coulomb Scattering Error in HighEnergy Physics Detectors (REVISED - SEE NOTE 1406)','Klatchko','','','','','','','','',1992,10,19,2448915,0,0,0,0),(1185,'Progress on B Factories - McPhysics II Workshop','Butler, J.','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1186,'DPF 91 - McPhysics Workshop II','Raja','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1187,'Review of W? and Z? Physics from 1991 Lepton-Photon Symposium --McPhysics Workshop II','Wimpenny','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1188,'Top -> em Background Studies -- McPhysics Workshop II','Cochran','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1189,'A Search for tt -> mm in the double blind 100K challenge events --McPhysics Workshop II','Hall','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1190,'Summary of the Top to Dilepton Working Group -- McPhysics WorkshopII','Hedin','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1191,'Top to Jets -- McPhysics Workshop II','Klima','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1192,'H Matrix anlaysis of top -> lepton + jets -- McPhysics Workshop II','Raja','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1193,'tt -> Like Sign Muons -- McPhysics Workshop II','Xu','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1194,'Comparison of Jets in HERWIG -- McPhysics Workshop II','Park','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1195,'Analysis of tt -> e+jets events at the D0 Detector -- McPhysicsWorkshop II','Chakraborty','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1196,'Top -> Lepton + Jets -- McPhysics Workshop II','Protopopescu','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1197,'Extraction on Z -> ? ? and W -> ?u signals from the Blind Sample --McPhysics Workshop II','Hedin','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1198,'Zo -> ?+ ?- with MUFITS -- McPhysics Workshop II','Klatchko','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1199,'Z -> ? ? Asymmetry Studies Status Report -- McPhysics Workshop II','Repond','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1200,'Z\' Asymmetry -- McPhysics Workshop II','Eppley','','','','','','','','',1991,9,12,2448512,0,0,0,0),(1201,'The Prospects of Measuring as by Transverse Energy Flow (aFeasiblity Study) -- McPhysics Workshop II','Mooney','','','','','','','','',1991,9,13,2448513,0,0,0,0),(1202,'Energy Calibration and Systematics -- McPhysics Workshop II','Durston','','','','','','','','',1991,9,13,2448513,0,0,0,0),(1203,'Jet Calibration and Cross Section -- McPhysics Workshop II','Astur','','','QCD','','','','','',1991,9,13,2448513,0,0,0,0),(1204,'Measurement of as from R (W + 1j/W + Oj) -- McPhysics Workshop II','Yu','','','','','','','','',1991,9,13,2448513,0,0,0,0),(1205,'Search for W + Z -> 3 electrons','White, J.','','','','','','','','',1991,9,13,2448513,0,0,0,0),(1206,'W -> ev and Z -> ee in D0 -- McPhysics Workshop II','Graf','','','','','','','','',1991,9,13,2448513,0,0,0,0),(1207,'Selecting Structure functions with DIJets','Blazey','','','','','','','','',1991,9,16,2448516,0,0,0,0),(1208,'Review of Presentations on QCD and New Particle Searches --McPhysics Workshop II','Snow','','','','','','','','',1991,9,13,2448513,0,0,0,0),(1209,'Et Study at D0 -- McPhysics Workshop II','Paterno, M.','','','','','','','','',1991,9,13,2448513,0,0,0,0),(1210,'Where did we go wrong? -- McPhysics Workshop II','Grannis','','','','','','','','',1991,9,13,2448513,0,0,0,0),(1211,'Safety Aspects of the FADC Equipment Racks on the Second Floor ofthe Movable Counting House at D0','Bourkland','','','','','','','','',1991,9,16,2448516,0,0,0,0),(1212,'ECEM High Voltage Scans from Testbeam Load 1','Allen/Spadafora','','','','','','','','',1991,9,26,2448526,0,0,0,0),(1213,'QCD Jet Cross Section Calculations','Hadley','','','','','','','$D0_PRI/1213/m_d0note_1213.pdf','',1991,9,28,2448528,2004,11,4,2453314),(1214,'D0 Clock phase coherence clock hardware description','Rotolo','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1215,'On Sampling fractions and electron shower shapes','Peryshkin/Raja','','','','','','','$D0_PRI/1215/m_d0note_1215.pdf','',1991,9,30,2448530,2004,11,4,2453314),(1216,'DZero Board Operations -- Triggerfest','Dixon, R.','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1217,'Trigger Terminology -- Triggerfest','Fortner','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1218,'Level 0 Hardware Software and Simulation Status -- Triggerfest','Partridge','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1219,'Triggering and Level 0 -- Triggerfest','Wightman','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1220,'Level 1 Rates -- Triggerfest','White/Boehnlein','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1221,'Jet Trigger Efficiencies and Rates Using Single Jet Events --Triggerfest','Milder','','','','','','','$D0_PRI/1221/m_d0note_1221.pdf','',1991,10,1,2448531,2004,11,4,2453314),(1222,'Level 1 Calorimeter Trigger -- Triggerfest','Abolins','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1223,'Muon Trigger Simulation - Level 1 and 1.5 -- Triggerfest','Willis','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1224,'Level 1.5 TRD Simulation -- Triggerfest','Glicenstein','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1225,'DAQ Global Monitoring (The Status of the Prototype Creation) --Triggerfest','Denisenko','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1226,'Electron-Photon Trigger Rate at D0 1992 Run -- Triggerfest','Xia','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1227,'L2Jets Report -- Triggerfest','Astur','','','QCD','','','','$D0_PRI/1227/m_d0note_1227.pdf','',1991,10,1,2448531,2004,11,4,2453314),(1228,'P t','White, J.','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1229,'Level 2 Trigger Tracking for Electron Filtering -- Triggerfest','Jung, Claes, Liu','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1230,'Level 2 Overview -- Triggerfest','Linnemann','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1231,'B-Physics Triggers - Triggerfest','Hedin','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1232,'W & Z Trigger Efficiencies -- Triggerfest','Tartaglia','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1233,'Top Trigger -- Triggerfest','Klima','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1234,'QCD Jet Triggers -- Triggerfest','Astur','','','QCD','','','','','',1991,10,1,2448531,0,0,0,0),(1235,'Supersymmetry -- Triggerfest','White, A./White, J.','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1236,'Testing Level 1 and 2 Simulators','Hadley','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1237,'Triggerfest (Level 1) -- Triggerfest','Linnemann','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1238,'Efficiency of the D0 Track Reconstruction Utilities','Mayorov ','','','','','','','','',1991,10,11,2448541,0,0,0,0),(1239,'The Scintillation Trigger Board for D0 Muon Level 1 Trigger','Li','','','','','','','','',1991,10,10,2448540,0,0,0,0),(1240,'D0 WZ Physics Group Meeting Transparencies','Madaras','','','','','','','','',1991,10,10,2448540,0,0,0,0),(1241,'General Central Tracking Meeting, 7/18/91','Buchholz','','','','','','','','',1991,10,10,2448540,0,0,0,0),(1242,'General Central Tracking Meeting, 10/2/91','Buchholz','','','','','','','','',1991,10,10,2448540,0,0,0,0),(1243,'User Reference Manual for D0 Timer Services','Bartlett','','','','','','','','',1991,10,17,2448547,0,0,0,0),(1244,'Copy of Transparencies for Summary Session','D0 Upgrade Workshop','','','','','','','','',1991,10,17,2448547,0,0,0,0),(1245,'Copy of Transparencies for Physics Session','D0 Upgrade Workshop','','','','','','','','',1991,10,17,2448547,0,0,0,0),(1246,'Copy of Transparencies for Electron ID Session','D0 Upgrade Workshop','','','','','','','$D0_PRI/1246/m_d0note_1246.pdf','',1991,10,17,2448547,2004,11,4,2453314),(1247,'Copy of Transparencies for Calorimeter Session','D0 Upgrade Workshop','','','','','','','','',1991,10,17,2448547,0,0,0,0),(1248,'Copy of Transparencies for Silicon Session','D0 Upgrade Workshop','','','','','','','','',1991,10,17,2448547,0,0,0,0),(1249,'Copy of Transparencies for Fiber Tracking Session','D0 UpgradeWorkshop','','','','','','','','',1991,10,17,2448547,0,0,0,0),(1250,'Copy of Transparencies for Trigger Session','D0 Upgrade Workshop','','','','','','','','',1991,10,17,2448547,0,0,0,0),(1251,'Copy of Transparencies for Magnetic Field Session','D0 UpgradeWorkshop','','','','','','','','',1991,10,17,2448547,0,0,0,0),(1252,'The Physics of W + and Z? Production and Decay -- I. Mass andWidth of the W+ and Z?','Wimpenny','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1253,'The Physics of W + and Z? Production and Decay -- II. ProductionCross-sections; Production and Decay Asymmetries','Wimpenny','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1254,'Heavy Flavor Production I -- General Features of O (as2) and O(as3); J/y Production; y\' Production','Wimpenny','','','','','','','','',1991,10,15,2448545,0,0,0,0),(1255,'Heavy Flavor Production II -- U Production; Drell - Yan ?+?- pairs;Charm Fragmentation in Jets','Wimpenny','','','','','','','','',1991,10,17,2448547,0,0,0,0),(1256,'Heavy Flavor Physics III - Inclusive Muon Cross-section; b-quarkcross-section; B-hadron cross-section','Wimpenny','','','','','','','','',1991,10,17,2448547,0,0,0,0),(1257,'HVD (High Voltage Display) Program for the PC Version 2.28','Angstadt/Dougherty','','','','','','','','',1991,10,24,2448554,0,0,0,0),(1258,'Low Energy Test Beam - D0 Collaboration Meeting 10/2/91','Bhat','','','','','','','','',1991,10,20,2448550,0,0,0,0),(1259,'D0 Clock Version 3.02','Angstadt','','','','','','','','',1991,10,20,2448550,0,0,0,0),(1260,'Neutrino Counting; Cosmological Limit; SuperNova 1987a; \'Anomalous\'Single Photons; Monojets & Dijets; W+ and Z? Cross-sections; The \'Final\'answer form LEP ','Wimpenny','','','','','','','','',1991,10,20,2448550,0,0,0,0),(1261,'Heavy Flavor Production IV; b-quark total cross-section; evidencefor b-quark production','Wimpenny','','','','','','','','',1991,10,20,2448550,0,0,0,0),(1262,'Stability of the ECEM Response during the 1990 Test Beam Run','Aihara','','','','','','','','',1991,10,20,2448550,0,0,0,0),(1263,'Heavy Flavor Prodction V - B? - B? mixing','Wimpenny','','','','','','','','',1991,10,29,2448559,0,0,0,0),(1264,'Summary of Calorimetry Summing Resistors','Abolins','','','','','','','','',1991,10,30,2448560,0,0,0,0),(1265,'Test Beam Results From the D0 End Calorimeters','Roe','','','','','','','$D0_PRI/1265/m_d0note_1265.pdf','',1991,11,1,2448562,2004,11,4,2453314),(1266,'D0 Production Database','Bhat/Genser/Para/Prosper','','','','','','','','',1991,11,1,2448562,0,0,0,0),(1267,'Missing Energy Analysis I - UA1 W -> tv Analysis','Wimpenny','','','','','','','','',1991,11,7,2448568,0,0,0,0),(1268,'Missing Energy Analysis II - UA2 W -> tv Analysis & CDF W -> tvAnalysis','Wimpenny','','','','','','','','',1991,11,12,2448573,0,0,0,0),(1269,'A New QCD Analysis of the EMC Hydrogen and Deuterium Data - Univ.of D0','Wimpenny','','','','','','','','',1991,11,16,2448577,0,0,0,0),(1270,'A TRD Trigger for the Tevatron Collider Experiment at D0','Utes/Johnson/Martin','','','','','','','','',1991,11,19,2448580,0,0,0,0),(1271,'Test Beam ICD DST Format','Geld/De/Borders','','','','','','','','',1992,2,10,2448663,0,0,0,0),(1272,'A First Look at Comparative Hadronic Energy Resolution in the ICDRegion from Test Beam Data','De/Geld','','','','','','','','',1991,12,2,2448593,0,0,0,0),(1273,'The Design, Construction and Testing of the D0 ICD LaserCalibration System','Oesch/De/Neal','','','','','','','','',1993,1,5,2448993,0,0,0,0),(1274,'The Typical Event','Mincer','','','','','','','','',1991,11,19,2448580,0,0,0,0),(1275,'Missing Energy Analysis III -- What remains after W -> tv isremoved? - UAt t+ t- analysis','Wimpenny','','','','','','','','',1991,11,19,2448580,0,0,0,0),(1276,'A Working, VME-based, 106 MHz FADC Data Acquisition System for theTracking Detectors at D0','Angstadt/Chase/Fellenz/Johnson/Martin/Matulik/ Saweert/Utes','','','','','','','','',1991,11,18,2448579,0,0,0,0),(1277,'Multiplicity in the D0 Upgraded Central Tracker','Abbott/Davies/Koltick/McIlwain/Schmitz','','','','','','','','',1991,11,4,2448565,0,0,0,0),(1278,'Drift tubes for the SAMUS muon spectrometer of the D0 detector atFNAL ( D0PUB-91-1)','Antipov/Bezzubov/Denisov/Evdokimov/Pishal\'nikov/ Stoyanova','','','','','','','','',1991,11,20,2448581,0,0,0,0),(1279,'Structure Type Devices in HDB Database Version 1.0','Krzywdzinski','','','','','','','','',1991,12,22,2448613,0,0,0,0),(1280,'User Reference Manual for HDB DataBase Services','Krzywdzinski','','','','','','','','',1991,12,22,2448613,0,0,0,0),(1281,'Purdue University - Center for Scintillating Fiber Tracking','Abbott, Davies, Koltick, McIlwain, Schmitz','','','','','','','','',1992,1,9,2448631,0,0,0,0),(1282,'Modeling of the DZero Data Acquisition System','Angstadt/Johnson/Manning/Wightman','','','','','','','$D0_PRI/1282/m_d0note_1282.pdf','',1991,11,30,2448591,2004,11,4,2453314),(1283,'Slides From D0 Global Analysis Meeting -- JetTutorial/Reconstruction Status','Blazey','','','','','','','$D0_PRI/1283/m_d0note_1283.pdf','',1991,11,22,2448583,2004,11,4,2453314),(1284,'The D0 Muon Examine Monitor','Repond','','','','','','','','',1991,11,30,2448591,0,0,0,0),(1285,'2-D and 3-D Display and Plotting of 3-D Magnetic Field Calculationfor D0 Detector ','Mesin/Trudo/Ostiguy/Brzezniak/ Yamada','','','','','','','','',1991,12,3,2448594,0,0,0,0),(1286,'The Search for Something New - Part I - The Top Quark','Wimpenny ','','','','','','','','',1991,11,26,2448587,0,0,0,0),(1287,'Test Beam Results from the D0 End Electromagnetic Calorimeter(D0CONF-91-6)','Roe','','','','','','','','',1991,12,1,2448592,0,0,0,0),(1288,'A Study of ?/K -> ?n In-Flight Decay Backgrounds in the CentralRegion, |h|<0.76.','Huehn','','','','','','','','',1992,5,16,2448759,0,0,0,0),(1289,'Pedestal Noise Spectra in IH2, Load 1 Test Beam Data','Tartaglia','','','','','','','','',1991,12,7,2448598,0,0,0,0),(1290,'D0 W/Z Physics Group Transparencies','Madaras','','','','','','','','',1991,12,1,2448592,0,0,0,0),(1291,'CD Software Meeting Minutes and dE/dx Working Meeting Summary; Dec.4-6, 1991','Blessing','','','','','','','','',1991,12,6,2448597,0,0,0,0),(1292,'D0 Calorimeter Preamp Power Supply System','Krafczyk','','','','','','','','',1991,12,28,2448619,0,0,0,0),(1293,'D0 Upgrage (E823) Work Plans for FY92','Montgomery/Tuts','','','','','','','','',1991,12,15,2448606,0,0,0,0),(1294,'ICD - The Intercryostat Detector - General Collaboration Meeting','De','','','','','','','','',1991,12,5,2448596,0,0,0,0),(1295,'The Level 0 Trigger - General Collaboration Meeting','Partridge','','','','','','','','',1991,12,5,2448596,0,0,0,0),(1296,'The Level 1 Rules - General Collaboration Meeting','Fortner','','','','','','','','',1991,12,5,2448596,0,0,0,0),(1297,'Level 1 Calorimeter Trigger \"Improvement\" \"Upgrade\" - GeneralCollaboration Meeting','Astur','','','QCD','','','','','',1991,12,5,2448596,0,0,0,0),(1298,'D0 Data Acquisitions Handling Events at high rates - GeneralCollaboration Meeting','Hoftun','','','','','','','','',1991,12,5,2448596,0,0,0,0),(1299,'Level 2 Filters - General Collaboration Meeting','Hadley','','','','','','','','',1991,12,5,2448596,0,0,0,0),(1300,'D0 Calorimeter Respone to Low Energy Beam at NWA and Implicationsto D0 Physics - General Collaboration Meeting','Bhat','','','','','','','$D0_PRI/1300/m_note1300.ps','',1991,12,5,2448596,2002,9,18,2452536),(1301,'Upgrade Tracking - General Collaboration Meeting','Bross','','','','','','','','',1991,12,5,2448596,0,0,0,0),(1302,'D0 Electron ID - The CAPHEL Package - General Collaboration Meeting','Graf','','','','','','','$D0_PRI/1302/m_d0note_1302.pdf','',1991,12,5,2448596,2004,11,4,2453314),(1303,'A Study of Et at D0 - General Collaboration Meeting','Paterno, M.','','','','','','','','',1991,12,5,2448596,0,0,0,0),(1304,'W, Z & D0 - General Collaboration Meeting','Rijssenbeek','','','','','','','','',1991,12,5,2448596,0,0,0,0),(1305,'Discovering Top at D0 - General Collaboration Meeting','Hall','','','','','','','','',1991,12,5,2448596,0,0,0,0),(1306,'Calorimeter Trigger Delays','Abolins','','','','','','','','',1991,12,18,2448609,0,0,0,0),(1307,'Level One Trigger Calibration: From NWA to D0','Abolins','','','','','','','','',1992,1,8,2448630,0,0,0,0),(1308,'Analysis Process of the D0 Data - A proposal','Demarteau, Para,Rijssenbeck','','','','','','','','',1991,12,18,2448609,0,0,0,0),(1309,'General Central Tracking Meeting','Buchholz','','','','','','','','',1991,12,4,2448595,0,0,0,0),(1310,'Simple Interface Program for POISSON and GEANT Packages','Klyukhin','','','','','','','','',1991,12,29,2448620,0,0,0,0),(1311,'Post Cable-Up Electrical Testing of the End Calorimeters in the DABCleanroom','Smith, R.P./Ito ','','','','','','','','',1992,4,9,2448722,0,0,0,0),(1312,'Level 1 Jet Trigger Efficiencies','Milder, Forden ','','','','','','','$D0_PRI/1312/m_d0note_1312.pdf','',1991,11,10,2448571,2004,11,4,2453314),(1313,'Electronic constraints of the calorimter: A challenge for theupgrade electronics','Kourlas','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1314,'Direct Photons in the Grannis Challeng Events','Graf','','','','','','','','',1992,1,9,2448631,0,0,0,0),(1315,'','Rotolo','','','','','','','','',1991,12,31,2448622,0,0,0,0),(1316,'','Rotolo','','','','','','','','',1991,12,31,2448622,0,0,0,0),(1317,'','Rotolo','','','','','','','','',1991,12,31,2448622,0,0,0,0),(1318,'','Rotolo','','','','','','','','',1991,12,31,2448622,0,0,0,0),(1319,'','Rotolo','','','','','','','','',1991,12,31,2448622,0,0,0,0),(1320,'SAMUS Collimator Tevatron Beam Tube Shielding and AC Magnetic FieldMeasurements','Bagby/Johnson','','','','','','','','',1992,1,13,2448635,0,0,0,0),(1321,'','Bagby','','','','','','','','',1991,12,31,2448622,0,0,0,0),(1322,'E823 (D0 Upgrade) - R&D and Optimization Progress Report','Montgomery','','','','','','','','',1992,1,13,2448635,0,0,0,0),(1323,'Cosmic Ray Performance of the D0 Central Calorimeter (D0CONF-92-1)','Feher','','','','','','','','',1992,1,15,2448637,0,0,0,0),(1324,'D0 Upgrade (E823) Work Plans for FY92','Montgomery, Tuts','','','','','','','','',1991,12,15,2448606,0,0,0,0),(1325,'D0 Muon Level 2 Filter','Diehl/Hedin','','','','','','','','',1992,1,17,2448639,0,0,0,0),(1326,'D0 TRD Gas System User Manual','Glicenstein/Lavocat','','','','','','','','',1992,1,28,2448650,0,0,0,0),(1327,'A Study of Electron_Photon Trig Rate of D0','Xia','','','','','','','','',1991,10,1,2448531,0,0,0,0),(1328,'Status of D0 Experiment at TEVATRON','Aihara','','','','','','','','',1992,1,21,2448643,0,0,0,0),(1329,'Triggerfest 2: Overview: the method for simulating and certifyingthe trigger rates and trigger times','Linnemann','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1330,'Triggerfest 2: Top Physics -- trigger studies','Klima','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1331,'Triggerfest 2: Bottom -- trigger studies','Smith, A.','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1332,'Triggerfest 2: QCD/New -- trigger studies','Weerts','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1333,'Triggerfest 2: Electroweak -- trigger studies','Tartaglia','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1334,'Triggerfest 2: Level 1 and 2 rates for QCD backgrounds','Boehnlein','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1335,'Triggerfest 2: Simulation resulsts of Level 0','Partridge','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1336,'Triggerfest 2: Muon simulation in Level 1 and 1.5','Bazizi','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1337,'Triggerfest 2: Level 2 Muon Simulation','Hedin','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1338,'Triggerfest 2: Tau tirgger strategies in Level 1 and Level 2','Jung','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1339,'Triggerfest 2: Simulation of the Level 1 CC edge effect','Graf','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1340,'Triggerfest 2: Electron transverse containment studies for Level 1','Spadafora','','','','','','','$D0_PRI/1340/m_d0note_1340.pdf','',1992,1,20,2448642,2004,11,5,2453315),(1341,'Triggerfest 2: Unpacking Electrons','Xia','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1342,'Triggerfest 2: Level 2 tracks to EM clusters','Claes','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1343,'Triggerfest 2: Event pileup effect on missing ET','Mincer','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1344,'Triggerfest 2: Level 2 trigger list; trigger rates and mean times','Linnemann','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1345,'Triggerfest 2: Process of establishing D0 Triggers','Grannis','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1346,'Triggerfest 2: Sensitivity of Electorn trigger to Shower Generationmethod','McKinley','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1347,'The DO HV Safety Interlock System','Thompson','','','','','','','','',1992,1,22,2448644,0,0,0,0),(1348,'Material in Front of the D0 Electromagnetic Calorimeters','Dahl','','','','','','','$D0_PRI/1348/m_d0note_1348.pdf','',1992,1,23,2448645,2004,11,5,2453315),(1349,'D0 Central Tracking Electronics Racks: Power Supply Control andInterlock Status Information, Where to Find Them on the Shea Console','Matulik','','','','','','','','',1992,1,27,2448649,0,0,0,0),(1350,'D0 W/Z Physics Group Meeting Transparencies','Madaras','','','','','','','','',1992,1,24,2448646,0,0,0,0),(1351,'D0 End Calorimeter Response to Muons and \"m\" Ratio - Test Beam Load','Dharma/Goforth/Madden/Piekarz','','','','','','','$D0_PRI/1351/m_note1351.ps','',1992,1,5,2448627,2002,9,18,2452536),(1352,'Improvements to the Calorimeter Electron Position Algorithm','Graf','','','','','','','$D0_PRI/1352/m_d0note_1352.pdf','',1992,1,29,2448651,2004,11,5,2453315),(1353,'Interfacting Production Database, Production Manager and Fatmen','Bhat','','','','','','','','',1991,11,11,2448572,0,0,0,0),(1354,'Description of the Level 2 Electromagnetic Filter Algorithm and Study of the Effects of Shower Generation Method, Zero Suppression, and Event Generation Method','McKinley/Linnemann','','','','','','','','',1992,1,20,2448642,0,0,0,0),(1355,'D0 Event Display Users Guide','Avery/Bantly/Blessing/Glicenstein/Grudberg/Hagopian/Howell/ Li-Demarteau /Oshima/Prosper/Trippe','','','','','','','','',1992,2,24,2448677,0,0,0,0),(1356,'D0 Upgrade -- Step I Tracking R & D Update','PAC','','','','','','','','',1992,2,7,2448660,0,0,0,0),(1357,'Interim Report of the Research Division Review Panel for the D0Upgrade','Research Division Review Panel','','','','','','','','',1992,2,5,2448658,0,0,0,0),(1358,'Main Ring Pipe Stray Field Inside EF Iron at D0','Jostlein','','','','','','','','',1992,2,9,2448662,0,0,0,0),(1359,'The Uranium Liquid Argon Calorimeter of the D0 Experiment:Experience in Realizing a Large System (D0CONF-92-2)','Guryn','','','','','','','','',1992,2,24,2448677,0,0,0,0),(1360,'FATMEN - Distributed Files and Tape Management System','Genser','','','','','','','','',1992,2,5,2448658,0,0,0,0),(1361,'MUON -- Low Voltage Power Supplies','Huffman','','','','','','','','',1990,11,28,2448224,0,0,0,0),(1362,'Jets in D0 -- General Collaboration Meeting 2/13/92','Klima','','','','','','','$D0_PRI/1362/m_d0note_1362.pdf','',1992,2,13,2448666,2004,11,5,2453315),(1363,'CD Tracking and Tracking Efficiency -- General CollaborationMeeting 2/13/92','Li-Demarteau','','','','','','','','',1992,2,13,2448666,0,0,0,0),(1364,'An Overview of Offline Production -- General Collaboration Meeting2/13/92','Lueking','','','','','','','','',1992,2,13,2448666,0,0,0,0),(1365,'Milestones Passed in CRC II WAMUS Triggering & Tracking -- GeneralCollaboration Meeting 2/13/92','Diehl','','','','','','','','',1992,2,13,2448666,0,0,0,0),(1366,'Test Beam Monte Carlo, Comparison NWA Data and Monte Carlo --General Collaboration Meeting 2/13/92','Demarteau','','','','','','','','',1992,2,13,2448666,0,0,0,0),(1367,'Small Angle Muon System (SAMUS) for the D0 Detector at Fermilab --General Collaboration Meeting 2/13/92','Denisov','','','','','','','','',1992,2,13,2448666,0,0,0,0),(1368,'Testing the WW Vertex by D0 - Measurement of the MagneticDipolemoment of the W boson -- General Collaboration Meeting 2/13/92','Aihara, Spadafora, Klatchko, Ellison','','','','','','','','',1992,2,13,2448666,0,0,0,0),(1369,'DZero Studies With Direct Photons -- General Collaboration Meeting2/13/92','Pope','','','','','','','','',1992,2,13,2448666,0,0,0,0),(1370,'Upgrade Update -- General Collaboration Meeting 2/13/92','Montgomery','','','','','','','','',1992,2,13,2448666,0,0,0,0),(1371,'Load 2 Status Report -- General Collaboration Meeting 2/13/92','Fatyga','','','','','','','','',1992,2,13,2448666,0,0,0,0),(1372,'A primer on B? <-> B? mixing, CP violation and the CKM matrix','Marin/Hoeneisen','','','','','','','','',1992,1,7,2448629,0,0,0,0),(1373,'A D0GEANT Condensed User\'s Guide (revised)','Merritt/Jonckheere','','','','','','','','',1995,5,3,2449841,0,0,0,0),(1374,'A Monte Carlo Study of the D0 Calorimeter Missing Et Resolution','Paterno, M.','','','','','','','$D0_PRI/1374/m_d0note_1374.pdf','',1992,3,16,2448698,2004,11,5,2453315),(1375,'CCEM Module Sampling Fractions and Uniformity of Response','Paterno, M./Chakraborty/Fatyga','','','','','','','','',1992,5,4,2448747,0,0,0,0),(1376,'EC IH Coarse Signal Modification','Ito/Smith, R. P.','','','','','','','$D0_PRI/1376/m_d0note_1376.pdf','',1992,2,27,2448680,2004,11,5,2453315),(1377,'Calorimeter Electron Finder Efficiencies vs. Z Position of theVertex','Snihur/Hadley','','','','','','','$D0_PRI/1377/m_d0note_1377.pdf','',1992,3,5,2448687,2004,11,5,2453315),(1378,'Analysis of the Electron Energy Scans from Test Beam Load 1','Spadafora','','','','','','','$D0_PRI/1378/m_d0note_1378.pdf','',1992,3,9,2448691,2004,11,5,2453315),(1379,'','Rotolo','','','','','','','','',1992,3,1,2448683,0,0,0,0),(1380,'Radiation Damage to D0b Silicon Strip Detectors and Choice ofOperating Temperature','Roe','','','','','','','','',1992,2,25,2448678,0,0,0,0),(1381,'Experimental Techniques for B Physics (Presented at the SLAC SummerInstitute July 13-24, 1992) (D0CONF-93-1)','Roe','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1382,'Physics Opportunities and Evolution of the D0 Detector in the1990\'s','HEPAP subpanel/Grannis','','','','','','','','',1992,2,28,2448681,0,0,0,0),(1383,'Transparencies from D0 Upgrade Meeting 3/6/92 - Fermilab','Tuts','','','','','','','','',1992,3,6,2448688,0,0,0,0),(1384,'Pion Response and e/PI Measurements in Load1 Testbeam IH Data','Tartaglia','','','','','','','','',1992,3,7,2448689,0,0,0,0),(1385,'Some Design Parameters for the D0 Si Data Acquisition System','Martin, M./Mendoza/Lopez','','','','','','','','',1992,3,8,2448690,0,0,0,0),(1386,'SVX Readout Cabling Mass','Lopez/Martin, M./Mendoza','','','','','','','','',1992,3,8,2448690,0,0,0,0),(1387,'The SVX in the Silicon Tracker','Mendoza/Martin, M./Lopez','','','','','','','','',1992,3,8,2448690,0,0,0,0),(1388,'D0 Clock to Tevatron Synchronization and Calibration Procedures andInstallation (REVISED)','Chappa/Rotolo','','','','','','','','',1992,9,8,2448874,0,0,0,0),(1389,'dE/dx Capabilities of the D0 Tracking System - GeneralCollaboration Meeting 2/13/92','Rajagoplan','','','','','','','','',1992,2,13,2448666,0,0,0,0),(1390,'Fermilab Academic Lecture Series, Spring 1992 - \"B Decays\"','Green','','','','','','','','',1992,3,20,2448702,0,0,0,0),(1391,'Proposal for D0 Data Streams','Klima/Madaras/Para/Protopopescu/Raja','','','','','','','','',1992,3,27,2448709,0,0,0,0),(1392,'D0 New Phenomena Workshop - U. of Texas at Arlington - March 19-20,','Sawyer','','','','','','','','',1992,3,20,2448702,0,0,0,0),(1393,'Results from the TRD Surveys','Glicenstein','','','','','','','','',1992,6,29,2448803,0,0,0,0),(1394,'Shower Studies in the D0 Calorimeter Using Neural Networks (1)','Cullen-Vidal/Cutts','','','','','','','$D0_PRI/1394/m_d0note_1394.pdf','',1992,1,31,2448653,2004,11,5,2453315),(1395,'Guide to D0 Graphics','Hagopian','','','','','','','','',1992,3,31,2448713,0,0,0,0),(1396,'Study of Overlapping Events in the FDC','Blessing','','','','','','','','',1992,3,31,2448713,0,0,0,0),(1397,'Pulse Shape Simulation for the Vertex Drift Chamber of D0.','Zinchenko','','','','','','','','',1992,3,1,2448683,0,0,0,0),(1398,'Pileup Effects on W Mass Measurement','Nemethy/Mincer','','','','','','','','',1992,4,14,2448727,0,0,0,0),(1399,'Analytical Calculation of MET Shifts Due to Pileup','Mincer/Nemethy','','','','','','','','',1992,5,29,2448772,0,0,0,0),(1400,'D0 Central Tracking Chamber Performance Studies (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Pizzuto, Domenico','','','','','','','','',1992,4,8,2448721,0,0,0,0),(1401,'The Central Drift Chamber for the D0 experiment: Design,Construction and Test(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Behnke, Ties','','','','','','','','',1992,4,8,2448721,0,0,0,0),(1402,'Etude D\'un Detecteur a Rayonnement De Transition Pour L\'ExperienceD0 Au FNAL (Thesis is in French). (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Feinstein, Fabrice','','','','','','','','',1992,4,8,2448721,0,0,0,0),(1403,'Analog Neural Networks in an Upgraded Muon Trigger for the DZeroDetector','Fortner','','','','','','','','',1992,4,12,2448725,0,0,0,0),(1404,'How D0 We Obtain the CKM Matrix Elements?','Marin/Hoeneisen','','','','','','','','',1992,3,29,2448711,0,0,0,0),(1405,'D0 W/Z Physics Group Meeting Transparencies','Madaras','','','','','','','','',1992,4,10,2448723,0,0,0,0),(1406,'Estimation of the Multiple Coulomb Scattering Error for a LargeNumber of Radiation Lengths (REVISED) (Revision the same for #1184)','Klatchko/Choudhary/Huehn','','','','','','','','',1992,10,19,2448915,0,0,0,0),(1407,'Transparencies from D0 Upgrade Meeting, Nevis Labs, April 11-12,','Tuts','','','','','','','','',1992,4,12,2448725,0,0,0,0),(1408,'Central Tracking Start Pulse Phase Adjustments','Matulik/Utes','','','','','','','','',1992,4,18,2448731,0,0,0,0),(1409,'PP Collider Physics','Demarteau','','','','','','','','',1992,3,31,2448713,0,0,0,0),(1410,'Magnetic Field Monitor System for D0 Toroids','Yamada/Haggerty/IgarashBrzezniak/Mesin','','','','','','','','',1992,5,1,2448744,0,0,0,0),(1411,'Field Calculation of D0 Toroids and Comparison with Measurement','Yamada/Ostiguy/Brzezniak','','','','','','','','',1992,5,29,2448772,0,0,0,0),(1412,'Simulation of the D0/Level-2 Data Acquisition System (Workshop onDAQ & Trigger System Simulation for HEP, SSCL, April 23-25, 1992)','Cutts/Hoftun/Mattson/Nesic','','','','','','','','',1992,4,25,2448738,0,0,0,0),(1413,'SAMUS ALARMS','Denisov/Chekulaev/Glebov/Igarashi/Kotov','','','','','','','','',1992,4,29,2448742,0,0,0,0),(1414,'ICD-L0 Calibration LASER - Safety Calculations','Bagby/De/Miller/Oesch','','','','','','','','',1992,6,9,2448783,0,0,0,0),(1415,'B-physics at D0, 1992 Run','Hoeneisen','','','','','','','','',1992,1,15,2448637,0,0,0,0),(1416,'Electrons in the D0 Central Calorimeter - Presented at the AprilMeeting of the APS','Heuring','','','','','','','$D0_PRI/1416/m_d0note_1416.pdf','',1992,4,23,2448736,2004,11,5,2453315),(1417,'A Look at Recombination Using the Testbeam Load 2 Vertex Scan','Heuring','','','','','','','','',1992,10,23,2448919,0,0,0,0),(1418,'Fast Multiplicity Trigger for D0 Using the Central Tracker','Bantly','','','','','','','','',1992,6,12,2448786,0,0,0,0),(1419,'A Comparison of Two Designs of Alternate Tracker','Krishnaswamy','','','','','','','','',1992,4,29,2448742,0,0,0,0),(1420,'Can We Observe B? -> J/y + K (892)? at D0-I?','Hoeneisen','','','','','','','','',1992,4,23,2448736,0,0,0,0),(1421,'RdB Database for the Intercryostat Detector','Majumder/Neal','','','','','','','','',1992,5,15,2448758,0,0,0,0),(1422,'Reconbination','Good','','','','','','','','',1992,5,11,2448754,0,0,0,0),(1423,'Clock Operational Procedures (REVISED)','Chappa/Rotolo','','','','','','','','',1992,9,8,2448874,0,0,0,0),(1424,'D0 HV User Guide (Revised, May 1995)','Ahn','','','','','','','','',1995,7,6,2449905,0,0,0,0),(1425,'Tuning the D0 Mixture Monte Carlo for GEANT version 3.14(supersedes D0 Note 1088)','Womersley/Merritt/Peryshkin','','','','','','','','',1992,5,22,2448765,0,0,0,0),(1426,'E823 (D0 Upgrade) Step 1 and Beyond','D0 Collaboration','','','','','','','','',1992,5,20,2448763,0,0,0,0),(1427,'The Muon Direct Trigger Card','Utes','','','','','','','','',1992,5,27,2448770,0,0,0,0),(1428,'The Muon Local Trigger Card','Utes','','','','','','','','',1992,5,27,2448770,0,0,0,0),(1429,'The D0 Detector Forward Drift Chamber Performance and PhysicsCapability in the 1990 FNAL Testbeam Run (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Bantly','','','','','','','','',1992,6,1,2448775,0,0,0,0),(1430,'A Study of the Calibration Pulser for the D0 Calorimeter','Heintz/Rasmussen/Schamberger','','','','','','','','',1992,5,19,2448762,0,0,0,0),(1431,'D0 W/Z Physics Group Meeting Transparencies 5/8 and 5/21, 1992','Madaras','','','','','','','','',1992,5,21,2448764,0,0,0,0),(1432,'Investigation of Dead Zone Size Near the Ends of SAMUS Drift Tubes','Denisov/Stoyanova','','','','','','','','',1992,6,3,2448777,0,0,0,0),(1433,'The dE/dx Capabilities of the D0 Tracking System. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Rajagopalan','','','','','','','','',1992,6,1,2448775,0,0,0,0),(1434,'Beam Tests of the D0 Uranium Liquid Argon End Calorimeters( D0PUB-92-1)','The D0 Collaboration','','','','','','','','',1992,4,15,2448728,0,0,0,0),(1435,'Top Production at s = 500 Gev Decay Modes of the Top Quark','Marin','','','','','','','','',1992,6,15,2448789,0,0,0,0),(1436,'ZHist','Youssef/Xiao','','','','','','','','',1992,6,12,2448786,0,0,0,0),(1437,'Efficiency and Resolution of a Double-layer of Scintillating Fibers','Adams','','','','','','','','',1992,6,18,2448792,0,0,0,0),(1438,'Performance and Monitoring of the Central Drift Chamber of D0: Anoverview based on the 1991 Cosmic Ray data','Chakaborty/Engelmann','','','','','','','','',1992,6,25,2448799,0,0,0,0),(1439,'D0 W/Z Physics Group Meeting Transparencies','Madaras','','','','','','','','',1992,6,10,2448784,0,0,0,0),(1440,'SAMUS geometry for trigger developments','Baldin/Denisov','','','','','','','','',1992,6,27,2448801,0,0,0,0),(1441,'Central Detector Software Meeting Minutes and Transparencies','Li-Demarteau','','','','','','','','',1992,6,10,2448784,0,0,0,0),(1442,'A Plan for In Situ Calibration of the D0 Calorimeters','Forden','','','','','','','','',1992,6,25,2448799,0,0,0,0),(1443,'Test of the replaced BLS hybrid cards for PDT mother boards','Que','','','','','','','','',1992,6,26,2448800,0,0,0,0),(1444,'Results from the TRD canary chamber','Glicenstein','','','','','','','','',1992,6,30,2448804,0,0,0,0),(1445,'e to p to p to in the D0 test','Tartaglia','','','','','','','','',1992,6,30,2448804,0,0,0,0),(1446,'An Exclusive B-decay at D0','Hoeneisen','','','','','','','','',1992,6,15,2448789,0,0,0,0),(1447,'SAMUS EXAMINE2','Glebov','','','','','','','','',1992,6,28,2448802,0,0,0,0),(1448,'Design, Construction, and Performance of the Electromagnetic Moduleof the D0 End Calorimeter ( D0PUB-92-2)','Aihara, et al','','','','','','','','',1992,7,30,2448834,0,0,0,0),(1449,'Derivation of the Corrected Center of Gravity Method and Commentson its Application','Spadafora','','','','','','','$D0_PRI/1449/m_d0note_1449.pdf','',1992,7,13,2448817,2004,11,5,2453315),(1450,'The Production of Leptoquarks at pp Colliders','Norman','','','','','','','','',1992,7,15,2448819,0,0,0,0),(1451,'The Muon Trigger \"MTRG\" Bank Description','Bazizi','','','','','','','','',1992,7,2,2448806,0,0,0,0),(1452,'','Brock','','','','','','','','',0,0,0,0,0,0,0,0),(1453,'D0b Meeting Slide Copies','Tuts','','','','','','','','',1992,7,17,2448821,0,0,0,0),(1454,'FNALD0 Segment Map (REVISED)','Merritt','','','','','','','','',1992,9,1,2448867,0,0,0,0),(1455,'Prospects for using photosensitive dopants to improve the \r\ne/pi ratio of liquid argon calorimeters ','Clark, A.H.','Nuclear Instruments and Methods in Physics Research Section A 309 (1991) 69-76 ','Nunez, M.','','','','','','',1991,6,20,2448428,0,0,0,0),(1456,'Can D0 Trigger on B -> 4 K?s |----> p? p? In the ECIH?','Tartaglia','','','','','','','','',1992,7,23,2448827,0,0,0,0),(1457,'Timing Diagrams for the Si Upgrade Readout System','Mendoza/Martin','','','','','','','','',1992,8,17,2448852,0,0,0,0),(1458,'A Study of the Ability of the D0 Detector to Measure the Single JetInclusive Cross Section.(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Astur, Rich','','','QCD','','','','','',1992,5,10,2448753,0,0,0,0),(1459,'The Adjustment of RZ Tracking Paramenter for the CDC','Finocchiaro/Lami/Pizzuto','','','','','','','','',1992,7,1,2448805,0,0,0,0),(1460,'Status of D0 Test Neutral Beams','Tartaglia','','','','','','','','',1992,8,4,2448839,0,0,0,0),(1461,'Monitoring of SAMUS operation by muon shifts during ppbar runs','Denisov','','','','','','','','',1992,8,9,2448844,0,0,0,0),(1462,'The W width measurement: an estimate of the error coming from theStructure Functions uncertainties','Lami/Wood','','','','','','','','',1992,7,29,2448833,0,0,0,0),(1463,'I heard someone say: \"Physics is not a matter of betting. You mustbe able to prove your results\"','Dalitz','','','','','','','','',1992,8,17,2448852,0,0,0,0),(1464,'D0 FTG Group Meeting Transparencies, 7/16/92','Bross','','','','','','','','',1992,9,8,2448874,0,0,0,0),(1465,'First results from the D0 Detector in pp collisions at ?s = 1.8 TeV(presented at XXVI International Conference on High Energy Physics, Dallas,TX 1992)','D0 Collaboration','','','','','','','','',1992,8,17,2448852,0,0,0,0),(1466,'Test Beam Studies of the D0 Calorimeter with 2-150 GeV Beams.Presented at XXVI International Conference on HIgh Energy Physics, August6-12, 1992','De','','','','','','','$D0_PRI/1466/m_d0note_1466.pdf','',1992,8,6,2448841,2004,11,5,2453315),(1467,'Measured Geometry of the EF and CF Toroids at the D0 Detector.','Mesin/Taketani','','','','','','','','',1992,8,21,2448856,0,0,0,0),(1468,'D0 Upgrade Silicon Tracker Mechanical Meeting, August 14, 1992','Ellison/Strovink/Heger/Ratzmann/Stredde','','','','','','','','',1992,8,14,2448849,0,0,0,0),(1469,'W+jet effects on W Transverse Mass','Mudan','','','','','','','','',1992,9,1,2448867,0,0,0,0),(1470,'PDFLIB: Structure Functions and as Calculation User\'s Manual -Version 2.00','Plothow-Besch','','','','','','','','',1992,9,8,2448874,0,0,0,0),(1471,'Early Results of W, Z Production at D-Zero; Copy of theTransparencies of a Talk Presented at the Rochester Conference in Dallas,August 1992.','Gobbi','','','','','','','','',1992,9,8,2448874,0,0,0,0),(1472,'A Study of Jet Merging and Splitting ','Streets/Hadley','','','','','','','$D0_PRI/1472/m_d0note_1472.pdf','',1992,9,8,2448874,2004,11,5,2453315),(1473,'Linearity of Calorimeter Electronics in D0 Test Beam Load 2','Streets/Norman','','','','','','','$D0_PRI/1473/m_d0note_1473.pdf','',1992,9,8,2448874,2004,11,5,2453315),(1474,'D0 W/Z Physics Group Meeting Transparencies, 8/28/92','Madaras','','','','','','','','',1992,8,28,2448863,0,0,0,0),(1475,'Fragmentation Dependence of Level 1 Jet Trigger Efficiencies','May/Forden','','','','','','','$D0_PRI/1475/m_note1475.pdf','',1992,9,4,2448870,2002,9,20,2452538),(1476,'TOP Triggers','Balamurali/Cochran/Hall/Klima/Krzywdzinski/Narain/Thompson','','','','','','','','',1992,9,28,2448894,0,0,0,0),(1477,'Effects of a Hadron Irradiation on Scintillating Fibers, submittedto the XXVI International Converence on High Energy Physics 6-12 Aug. 1992,Dallas, TX (D0CONF-92-3)','The Fiber Tracking Group, Abbott,et al.','','','','','','','','',1992,7,29,2448833,0,0,0,0),(1478,'Radiation Hardness of Scintillating Fibers: Determination ofProperties for Fiber Subject to Non-uniform Irradiation Exposures','Chung/Margulies','','','','','','','','',1992,8,10,2448845,0,0,0,0),(1479,'D0 W/Z Physics Group Meeting Transparencies, 9/11/92','Madaras','','','','','','','','',1992,9,11,2448877,0,0,0,0),(1480,'Jet Triggers in the Forward Region','Milder','','','','','','','$D0_PRI/1480/m_d0note_1480.pdf','',1992,9,14,2448880,2004,11,5,2453315),(1481,'Measurement of EM Trigger Rates','Narain/Heintz','','','','','','','$D0_PRI/1481/m_note1481.ps','',1992,9,19,2448885,2002,2,28,2452334),(1482,'Description of the Time Zero Detector','Feher/Finocchiaro/Landsberg','','','','','','','','',1992,12,31,2448988,0,0,0,0),(1483,'Drift Velocity and t0 Measurement with the Time Zero Detector','Feher/Finocchiaro/Landsberg','','','','','','','','',1993,4,10,2449088,0,0,0,0),(1484,'Muon Scintillator Review','Mont','','','','','','','','',1992,9,9,2448875,0,0,0,0),(1485,'SAMUS Reconstruction Program','Denisov, D./Eroshin','','','','','','','','',1992,9,25,2448891,0,0,0,0),(1486,'The D0 Experiment at Fermilab presented at the 4th Topical Seminaron \"The Standard Model and just Beyond\" San Miniato, Italy, June 1-5, 1992(D0CONF-92-4)','Heintz','','','','','','','$D0_PRI/1486/m_note1486.ps','',1992,10,3,2448899,2002,2,28,2452334),(1487,'The D0 Muon Module Address Card Specification','Baldin/Hansen','','','','','','','','',1992,9,29,2448895,0,0,0,0),(1488,'The D0 Muon System and Early Results on its Performance submittedto the proceedings of the ICHEP Conference, Dallas, TX, 1992. (D0CONF-92-5)','Hedin','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1489,'First W Decays Observed with the D0 Detector (D0CONF-92-6)','Gobbi','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1490,'FDC Status. CD General Meeting, 9/9/92','CD','','','','','','','','',1992,9,9,2448875,0,0,0,0),(1491,'Inspill Pedestals','Jiang','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1492,'The e/? and ??/? Ratios Measured, and Monochromatic g and ?? BeamsExplored in the D0 Test Calorimeter. Presented at 3rd Intern\'l Conf. onAdv. Tech. & Particle Physics, Como, Italy (D0CONF-92-7)','Tartaglia','','','','','','','','',1992,6,26,2448800,0,0,0,0),(1493,'Addition of Photosensitive Dopants to the D0 Liquid ArgonCalorimeter. Presented at 3rd International Conference on AdvancedTechnology and Particle Physics, Como, Italy, June 22-26, 1992 (D0CONF-92-8)','Amos/Anderson','','','','','','','','',1992,6,26,2448800,0,0,0,0),(1494,'The D0 Upgrade. Presented at 3rd International Conference onAdvanced Technology and Particle Physics, Como, Italy, June 22-26, 1992(D0CONF-92-9)','Tuts','','','','','','','','',1992,6,26,2448800,0,0,0,0),(1495,'The D0 Upgrade Program and its Physics Potential. Presented at theICHEP XXVI, Dallas TX, 8/8/92 (D0CONF-92-10)','Rijssenbeek','','','','','','','','',1992,8,8,2448843,0,0,0,0),(1496,'D0 Triggering and Data Acquisition. Presented at the ICHEP XXVI,Dallas TX, 8/8/92 (D0CONF-92-11)','Gibbard','','','','','','','','',1992,8,8,2448843,0,0,0,0),(1497,'Run Control and Resource Management in the D0 Run Time System.Presented at the ICHEP XXVI, Dallas TX, 8/8/92 (D0CONF-92-12)','Gibbard','','','','','','','','',1992,8,8,2448843,0,0,0,0),(1498,'Short Explanation of How the Sampling Weights for CCEM were chosen','Peryshkin','','','','','','','','',1992,10,6,2448902,0,0,0,0),(1499,'The Response of the D-Zero Central Calorimeter to Electrons andPions from 2 through 150 GeV/c','Hirosky','','','','','','','$D0_PRI/1499/m_d0note_1499.pdf','',1993,3,29,2449076,2004,11,5,2453315),(1500,'Central Detector Software Meeting Minutes and Transparencies, Sept.11, 1992. ','Li-Demarteau','','','','','','','','',1992,9,11,2448877,0,0,0,0),(1501,'Effect of Dead Materials on Calorimeter Response and Monte CarloSimulation. (Presented at teh 3rd International Conference on Calorimetryin High Energy Physics, 9/29-10/2/92 at Corpus Christi, TX)','Dharmaratna','','','','','','','$D0_PRI/1501/m_note1501.ps','',1992,10,1,2448897,2002,9,18,2452536),(1502,'Using Single Hadron Data to Optimize the Response of D0 CentralCalorimeters for the Measurement of Hadronic Jet Energies','Borders','','','','','','','$D0_PRI/1502/m_note1502.ps','',1994,7,11,2449545,2002,9,18,2452536),(1503,'Operation of the D0 Data Acquisition System','Cutts','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1504,'D0 W/Z Physics Group Meeting Transparencies, 10/9/92','Madaras','','','','','','','','',1992,10,9,2448905,0,0,0,0),(1505,'Cosmic Rejection: Some Thoughts and Studies','Choudhary/Klatchko','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1506,'Searching for Top in e+jet Events','Baden','','','','','','','$D0_PRI/1506/m_drew-ht-1506.ps','',1992,10,20,2448916,2002,1,9,2452284),(1507,'Response of the D0 Calorimeter to Cosmic Ray Muons. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Kotcher','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1508,'The D0 Intercryostat Detector, Massless Gaps and Missing ETResolution. Presented at the 3rd International Conf. on Calorimetry inHigh Energy Physics, 9/29-10/2/92 at Corpus Christi, TX','Streets','','','','','','','$D0_PRI/1508/m_d0note_1508.pdf','',1992,10,3,2448899,2004,11,5,2453315),(1509,'Operation of the D0 Uranium Liquid-Argon Calorimeter System.Presented at the 3rd International Conf. of Calorimetry in High EnergyPhysics, 9/2-10/2/92, Corpus Christi, TX','Guida, Joan','','','','','','','$D0_PRI/1509/m_d0note_1509.pdf','',1992,10,3,2448899,2004,11,5,2453315),(1510,'The D0 Calorimeter Trigger. Presented at the 3rd InternationalConf. of Calorimetry in High Energy Physics, 9/2-10/2/92, Corpus Christi,TX (D0CONF-92-13)','Guida, Jan','','','','','','','','',1992,10,3,2448899,0,0,0,0),(1511,'Inclusive CP Violation and Bo - Bobar Mixing using Muon + JetTriggers.','Hoeneisen','','','','','','','','',1992,10,27,2448923,0,0,0,0),(1512,'HDB User\'s Manual','Paterno, L.','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1513,'Paramater Page','Paterno, L.','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1514,'SAMUS Level 1.5 OTC Trigger Tables','Johns/Castilla/Hoeneisen','','','','','','','','',1992,10,27,2448923,0,0,0,0),(1515,'D0 W/Z Physics Group Meeting Transparencies, 10-23-92','Madaras','','','','','','','','',1992,10,23,2448919,0,0,0,0),(1516,'Jets in the D0 Calorimeter. Presented at the 3rd InternationalConf. of Calorimetry in High Energy Physics, 9/2-10/2/92, Corpus Christi,TX (D0CONF-92-14)','Stewart','','','','','','','$D0_PRI/1516/m_d0note_1516.pdf','',1992,10,3,2448899,2004,11,5,2453315),(1517,'Cosmic Ray Muon Rejection in the Level 2 Filter at D0','Diehl','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1518,'TT --> =?? ?? + > 3 Jets','Zhu','','','','','','','','',1992,10,30,2448926,0,0,0,0),(1519,'The D0 Software Trigger. Submitted to Conference on Computing inHigh Energy Physics, Annecy, France, September 1992 (D0CONF-92-15)','Linnemann','','','','','','','','',1992,10,2,2448898,0,0,0,0),(1520,'The D0 Monte Carlo. Submitted to Proceedings of XXVI InternationalConference on High Energy Physics, Dallas, TX, Aug. 1992 (D0CONF-92-16)','Womersley','','','','','','','','',1992,11,1,2448928,0,0,0,0),(1521,'The Performance of the Liquid Argon Electromagnetic Calorimeters inD0. Electron and Photon Identification in D0.','Fatyga','','','','','','','$D0_PRI/1521/m_d0note_1521.pdf','',1992,11,30,2448957,2004,11,5,2453315),(1522,'Upgraded D0 Calorimeter Electronics for Short Tevatron Bunch Spaceand the Effect of Pile-up on the W Mass Measurement','Lokos','','','','','','','','',1992,11,30,2448957,0,0,0,0),(1523,'','Choudhary','','','','','','','','',0,0,0,0,0,0,0,0),(1524,'Gas Contamination after passing through varios types of flexibleplastic tubes.','Bezzubov/Denisov, D.','','','','','','','','',1992,11,9,2448936,0,0,0,0),(1525,'Definitions of Fatmen Monte-Carlo Directories','Nellinger/Genser,K.','','','','','','','','',1992,11,9,2448936,0,0,0,0),(1526,'Highlights from D0, APS Division of Particles and Fields Meeting,11-10-92','Madaras','','','','','','','','',1992,11,10,2448937,0,0,0,0),(1527,'Top Scintillation Counters - Present System','Grossman','','','','','','','','',1992,12,15,2448972,0,0,0,0),(1528,'Top Scintillation Counters - Readout = SciBo\'s','Grossman','','','','','','','','',1992,10,18,2448914,0,0,0,0),(1529,'Top Scintillation Counters-Cosmic_Scint Trigger','Grossman','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1530,'Should We Count Tracks in Front of Jets?','Draper','','','','','','','','',1992,11,12,2448939,0,0,0,0),(1531,'Search for the Top Quark in Dilepton Events with D0 (DPF 92)(D0CONF-92-17)','Partridge','','','','','','','','',1992,11,11,2448938,0,0,0,0),(1532,'Instructions for Making Fiber Ribbons for the D-Zero DetectorUpgrade','Caccamise/Gruendahl/Haelen/Pitts','','','','','','','','',1992,12,20,2448977,0,0,0,0),(1533,'Search for Top -> e + jets in D0 (DPF 92)','Klima','','','','','','','','',1992,11,11,2448938,0,0,0,0),(1534,'The D0 Upgrade: B Physics Capability (B Physics at HadronAccelerators Workshop on Central Detectors November 16-17, 92)','Roe','','','','','','','','',1992,11,17,2448944,0,0,0,0),(1535,'Comparison of various cone algorithms','Ortmanns/Astur','','','QCD','','','','','',1992,11,9,2448936,0,0,0,0),(1536,'D0 Fiber Tracking Group VLPC/Cryo Design Review','Bross','','','','','','','','',1992,11,17,2448944,0,0,0,0),(1537,'Muon Trigger Strategy at D0 & CDF (B Physics at Hadron Colliders,November 16-17, 92)','Diehl','','','','','','','','',1992,11,17,2448944,0,0,0,0),(1538,'D0 Upgrade (HEPAP, Nov. 1992)','Montgomery','','','','','','','','',1992,11,1,2448928,0,0,0,0),(1539,'Inclusive Single Muon Production with the D0 Detector (DPF 92)','Bazizi','','','','','','','','',1992,11,13,2448940,0,0,0,0),(1540,'DIMUON Production in D0 (DPF 92)','Igarashi','','','','','','','','',1992,11,13,2448940,0,0,0,0),(1541,'The DZero Data Acquisition System','Wightman','','','','','','','','',1992,10,1,2448897,0,0,0,0),(1542,'The D0 Upgrade Silicon Tracker ','Heinson','','','','','','','$D0_PRI/1542/m_note1542.ps','',1992,11,14,2448941,2002,2,28,2452334),(1543,'Beauty for Beginners','Green, D.','','','','','','','','',1992,11,1,2448928,0,0,0,0),(1544,'Inclusive Jet Distributions at the D0 Detector','Astur','','','QCD','','','','$D0_PRI/1544/m_d0note_1544.pdf','',1992,11,30,2448957,2004,11,5,2453315),(1545,'W + Jet Production in the D0 Detector (DPF 92)','Yu','','','','','','','','',1992,11,14,2448941,0,0,0,0),(1546,'Low Energy Response of the D0 calorimeter and Jet EnergyMeasurement (DPF 92)','Bhat','','','','','','','$D0_PRI/1546/m_d0note_1546.pdf','',1992,11,12,2448939,2004,11,5,2453315),(1547,'DIJET Differential Distributions (Division of Particles and Fields,92)','Blazey','','','','','','','','',1992,11,30,2448957,0,0,0,0),(1548,'Electron Identification in the D0 Detector (DPF 92)','Narain','','','','','','','','',1992,11,12,2448939,0,0,0,0),(1549,'Status of Dilepton Analysis (DPF 92)','Partridge','','','','','','','','',1992,11,13,2448940,0,0,0,0),(1550,'A Scintillating Fiber Detector for the D0 Upgrade','Wayne','','','','','','','','',1992,11,30,2448957,0,0,0,0),(1551,'W and Z Physics at D0 (DPF 92)','Graf','','','','','','','','',1992,11,12,2448939,0,0,0,0),(1552,'W and Z Decays to Muons at D0 (DPF 92)','Wood','','','','','','','','',1992,11,14,2448941,0,0,0,0),(1553,'Direct Photon Production at the D0 Experiment (Division ofParticles and Fields American Physical Society, November 10-14, 92)','Snow','','','','','','','','',1992,11,14,2448941,0,0,0,0),(1554,'The D0 Trigger (DPF 92)','Linnemann','','','','','','','','',1992,11,30,2448957,0,0,0,0),(1555,'MSSM (DPF 92)','Paterno, M.','','','','','','','','',1992,11,13,2448940,0,0,0,0),(1556,'Search for Scalar Leptoquarks in D0 (DPF 92)','Merritt','','','','','','','','',1992,11,12,2448939,0,0,0,0),(1557,'A Study of the Dependence of the Jet Algorithms on the MinimumTransverse Energy','Streets/Hadley','','','','','','','$D0_PRI/1557/m_d0note_1557.pdf','',1992,11,30,2448957,2004,11,5,2453315),(1558,'D0 Alarm System Programmer\'s Guide HMON Version 2.0','Fuess','','','','','','','','',1992,3,19,2448701,0,0,0,0),(1559,'Progress Report From D0','Butler, J.','','','','','','','','',1992,10,23,2448919,0,0,0,0),(1560,'Collider Physics at FNAL (SLAC Summer Institute July 13-24, 92)','Butler, J.','','','','','','','','',1992,11,1,2448928,0,0,0,0),(1561,'First QCD Results from the D0 Detector','Weerts','','','','','','','','',1992,11,30,2448957,0,0,0,0),(1562,'Upgraded D0 Calorimeter Electronics for Short Tevatron Bunch Spaceand the Effect of Pile-up on the W Mass Measurement','Lokos','','','','','','','','',1992,11,30,2448957,0,0,0,0),(1563,'Global Monitor for Muons ID','Repond','','','','','','','','',1992,11,19,2448946,0,0,0,0),(1564,'D0FS Serving disk & tape files to FNALD0 & D0SFT','Genser, K.','','','','','','','','',1992,11,13,2448940,0,0,0,0),(1565,'Copy of Transparencies presented at the General Central DetectorsMeeting','n/a','','','','','','','','',1992,11,18,2448945,0,0,0,0),(1566,'A Measurement of the e/* Ratio Difference Between Short (250 ns)and Long (2.2 ?s) Integration Times with the D0 Uranium-Liquid ArgonCentral Calorimeter.(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Pi','','','','','','','','',1992,11,30,2448957,0,0,0,0),(1567,'Performance of the Forward Drift Chambers for the D0 Detector.Presented at the IEEE Nuclear Science Symposium, Orlando, FL, Oct. 25-31,1992 (D0CONF-92-23)','Avery/Bantly/Blessing/Buchholz/ Gobbi/Liu/Rajagopalan','','','','','','','','',1992,11,20,2448947,0,0,0,0),(1568,'Performance of 2mm Radius Straw Tube Drift Cells. Paper & PosterPresented at the IEEE Nuclear Science Symposium, Orlando, FL, Oct. 25-31,1992 (D0CONF-92-19)','Avery/Bantly/Blessing/Buchholz/Gobbi/Liu/Martin/Rajagopalan/ Tilden','','','','','','','','',1992,11,20,2448947,0,0,0,0),(1569,'Transparencies from General Upgrade Meeting 11/19/92','D0 GeneralUpgrade','','','','','','','','',1992,11,19,2448946,0,0,0,0),(1570,'Physics from the New Phenomena Group at DPF - and Beyond','Merritt','','','','','','','','',1992,11,30,2448957,0,0,0,0),(1571,'D0 Upgrade Silicon Tracker Meeting','Cooper','','','','','','','','',1992,10,9,2448905,0,0,0,0),(1572,'Triggering the D0 Experiment (Abstract)','Linnemann','','','','','','','','',1992,11,14,2448941,0,0,0,0),(1573,'Production of Jets in Association with W Vector Bosons in the D0Detector (D0CONF-92-20)','Yu','','','','','','','','',1992,11,14,2448941,0,0,0,0),(1574,'Central Detector Software Meeting Transparencies 11/19/92','Li-Demarteau','','','','','','','','',1992,11,19,2448946,0,0,0,0),(1575,'','Vaz','','','','','','','','',0,0,0,0,0,0,0,0),(1576,'Highlights from D0 (presented at DPF) (D0CONF-92-21)','Madaras','','','','','','','','',1992,11,14,2448941,0,0,0,0),(1577,'CCEM Response vs h - Test Beam Load2','Dharmaratna','','','','','','','$D0_PRI/1577/m_d0note_1577.pdf','',1992,12,1,2448958,2004,11,5,2453315),(1578,'Calibration of the Gas Gain of the TRD Using the Canary Chamber,and Problems Pending','Ducros/Glicenstein','','','','','','','','',1992,12,11,2448968,0,0,0,0),(1579,'','Zhang','','','','','','','','',1992,12,31,2448988,0,0,0,0),(1580,'Fiber Numbering for the 1993 Cosmic Ray Test','Cretsinger','','','','','','','','',1992,11,2,2448929,0,0,0,0),(1581,'Muon Shift Procedure Update','Fein','','','','','','','','',1992,12,14,2448971,0,0,0,0),(1582,'The D0 Level 1 Trigger Calibration','Streets','','','','','','','$D0_PRI/1582/m_note1582.ps','',1992,12,17,2448974,2002,2,28,2452334),(1583,'ISAJET For Unix','Lyon','','','','','','','','',1993,1,15,2449003,0,0,0,0),(1584,'D0 W/Z Physics Group Meeting Transparencies, 12/11/92','Madaras','','','','','','','','',1992,12,11,2448968,0,0,0,0),(1585,'The D0 Detector Upgrade and its Physics Program','Rijssenbeek','','','','','','','','',1992,12,31,2448988,0,0,0,0),(1586,'The Small Angle Muon System Level 2 Filter','Diehl/Denisov,D./Efimov/Volkov','','','','','','','','',1992,12,31,2448988,0,0,0,0),(1587,'Description of the Muon Trigger Data in TRGR Bank','Bazizi','','','','','','','','',1993,1,5,2448993,0,0,0,0),(1588,'Proceeding of the \"b-Physics at D0\" Workshop, Dec. 16-19, 1992','Indiana University','','','','','','','','',1992,12,19,2448976,0,0,0,0),(1589,'Silicon Tracker Meeting, Dec. 11, 1992, Fermilab','Lipton','','','','','','','','',1992,12,12,2448969,0,0,0,0),(1590,'W -> ?+u STUDY','Choudhary','','','','','','','','',1993,1,15,2449003,0,0,0,0),(1591,'Muon Trigger Words in PMUO Bank','Bazizi','','','','','','','','',1993,1,5,2448993,0,0,0,0),(1592,'D0 Laser Interlock Controller Internal Design Notes','Hoover','','','','','','','','',1993,1,1,2448989,0,0,0,0),(1593,'Using the D0 Laser Interlock Controller','Hoover','','','','','','','','',1993,1,1,2448989,0,0,0,0),(1594,'Performance of the Time Zero Detector','Feher/Finocchiaro/Landsberg','','','','','','','','',1993,4,5,2449083,0,0,0,0),(1595,'Jet Energy Scale using Test Beam Data','Milder/Astur','','','QCD','','','','$D0_PRI/1595/m_note1595.ps','',1992,12,15,2448972,2002,9,18,2452536),(1596,'Effects of a Hadron Irradiation on Scintillating Fibers','The FiberTracking Group','','','','','','','','',1992,11,1,2448928,0,0,0,0),(1597,'Spatial Resolution of a Single Scintillating Fiber of CircularCross-Section','Margulies','','','','','','','','',1992,12,15,2448972,0,0,0,0),(1598,'Light Output from a Scintillating Fiber Having a Reflective Surfaceat its Far End','Chung/Margulies','','','','','','','','',1992,12,23,2448980,0,0,0,0),(1599,'DBL3 Servers and Instructions for Care Takers','Abachi','','','','','','','','',1992,12,31,2448988,0,0,0,0),(1600,'The D0 Test Beam Load 2 Gain Calculation','Streets','','','','','','','','',1993,1,14,2449002,0,0,0,0),(1601,'Fiber Ribbon and Connector Development for the D0 Upgrade','Cretsinger/Fanourakis/Ferbel/ Grunendahl/ Lobkowicz','','','','','','','','',1992,12,19,2448976,0,0,0,0),(1602,'On the Construction of the D0 SciFi Tracker','Cretsinger/Fanourakis/Ferbel/Gruenendahl/Haelen/Trotter','','','','','','','','',1992,12,20,2448977,0,0,0,0),(1603,'TRD to Fight (High Energy) a/ + (Low Energy) Hadron Overlap Backgd.','Zylberstejn','','','','','','','','',1993,1,15,2449003,0,0,0,0),(1604,'The D0 Upgrade','Tuts','','','','','','','','',1992,11,20,2448947,0,0,0,0),(1605,'Calorimeter Energy Scale (D0 Collaboration Mtg)','Heintz','','','','','','','$D0_PRI/1605/m_d0note_1605.pdf','',1992,11,20,2448947,2004,11,5,2453315),(1606,'Some Mathematical Comments on Feed-Forward Neural Networks','Prosper','','','ALGORITHMS','ANAL','PUBLIC','POSTSCRIPT','$D0_PRI/1606/m_d0note1606.pdf','',1993,1,25,2449013,2004,5,26,2453152),(1607,'Transparencies of W/Z Meeting, Friday, January 8, 1993','Rijssenbeek','','','','','','','','',1993,1,8,2448996,0,0,0,0),(1608,'Monte Carlo Study of B-Bbar Produced J/Psi\'s and their Triggeringat D0','Murphy, Chris','','','','','','','','',1992,12,30,2448987,0,0,0,0),(1609,'Top Search Status at D0','Wimpenny','','','','','','','','',1993,1,20,2449008,0,0,0,0),(1610,'Kinematics of Z? -> tt','Partidge','','','','','','','','',1993,1,21,2449009,0,0,0,0),(1611,'Copy of Transparencies Presented at the General Central DetectorsMeeting, 1/21/93','Gobbi','','','','','','','','',1993,1,21,2449009,0,0,0,0),(1612,'A Tracking System for D0 Upgrade based on MicroStrips Gas Chambers','Finocchiaro/Lami/Gobbi/Martin, M.','','','','','','','','',1993,1,22,2449010,0,0,0,0),(1613,'','Prosper','','','','','','','','',0,0,0,0,0,0,0,0),(1614,'The D0 Calorimeter: An Overview (D0CONF-93-3)','Christenson','','','','','','','','',1993,1,31,2449019,0,0,0,0),(1615,'Transparencies from Upgrade Meetings; D0 Collaboration Meeting,Jan. 21, 1993','Mont','','','','','','','','',1993,1,21,2449009,0,0,0,0),(1616,'Central Detector Software Meeting Transparencies 1/21/93','Li-Demarteau','','','','','','','','',1993,1,21,2449009,0,0,0,0),(1617,'D0 Opportunities to probe ZZa and Zaa couplings','Landsberg','','','','','','','','',1993,1,20,2449008,0,0,0,0),(1618,'Level 1.0 and Level 1.5 Muon Trigger Efficiencies for Single Tracks','Bazizi','','','','','','','','',1993,2,2,2449021,0,0,0,0),(1619,'Optimisation of the D0 Step-1 Fiber Tracking System','Adams, etal.','','','','','','','','',1993,3,1,2449048,0,0,0,0),(1620,'A Comparison of EGS4 and Geant 3.14 using 10 GeV Electrons','Heuring','','','','','','','','',1992,2,3,2448656,0,0,0,0),(1621,'D0 W/Z Physics Group Meeting Transparencies 1/20/93','Madaras','','','','','','','','',1993,1,20,2449008,0,0,0,0),(1622,'D0 Status Report to URA Visiting Committee 2/5/93','Fuess','','','','','','','','',1993,2,5,2449024,0,0,0,0),(1623,'Preliminary Tests of a Laser Method for Alignment of SciFi Ribbonsfor the D0 Upgrade.','Torgerson','','','','','','','','',1993,2,7,2449026,0,0,0,0),(1624,'Is High Voltage Sagging the Cause of CCEM Response Degradation?','Yu','','','','','','','','',1993,2,11,2449030,0,0,0,0),(1625,'EGS4 vs Geant 3.14: A Comparison Using the D0 Calorimeter Geometry','Heuring','','','','','','','','',1993,2,23,2449042,0,0,0,0),(1626,'Plate Monte Carlo(v.3.124) Comparison with Pion Data','Chen, W.','','','','','','','','',1993,2,12,2449031,0,0,0,0),(1627,'Measurements of inclusive muon cross sections in the SAMUS region.D0 Collaboration Meeting 1/22/93 ','Denisov, D.','','','','','','','','',1993,1,22,2449010,0,0,0,0),(1628,'Precision Cylinder Measurement for the D0 SciFi Tracker','Cretsinger/Fanourakis/Gruenendahl/ Lobkowicz','','','','','','','','',1993,1,13,2449001,0,0,0,0),(1629,'Fake Muon Rejection Using Hit-Counting','Diehl','','','','','','','','',1993,3,15,2449062,0,0,0,0),(1630,'Silicon Detector Simulation for D0 Upgrade.','Hauptman/Zinchenko','','','','','','','','',1993,2,15,2449034,0,0,0,0),(1631,'Status of D0. Presented at FNAL PHC 2/19/93','Hadley','','','','','','','','',1993,2,19,2449038,0,0,0,0),(1632,'D0 Silicon Upgrade Fluids System for Baseline Design','Heger/Cooper/Boroski/Schoo/ Tuskey/Strovink/Berryhill','','','','','','','','',1993,2,26,2449045,0,0,0,0),(1633,'Developments of Geant Physics','Lassila-Perini','','','','','','','','',1993,2,22,2449041,0,0,0,0),(1634,'Muon Radiation in Calorimeter and Muon Isolation','Abachi','','','','','','','','',1993,2,28,2449047,0,0,0,0),(1635,'D0 Fiber Tracking Group Transparencies; Meetings 1/14; 1/28; 2/25;3/11; 3/16/93','Bross','','','','','','','','',1993,3,2,2449049,0,0,0,0),(1636,'Transparencies for the B Physics at the Upgrade Meeting','Lipton','','','','','','','','',1993,2,25,2449044,0,0,0,0),(1637,'D0 Silicon Vertex Readout','Kerth','','','','','','','','',1993,2,25,2449044,0,0,0,0),(1638,'The Level 1.5 Trigger Framework for D0','Edmunds/Gross/Laurens','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1639,'FATMEN Collider Monte-Carlo Generic Name Scheme','Diesburg/Genser,K./Nellinger','','','','','','','','',1993,3,9,2449056,0,0,0,0),(1640,'An Analysis of the Load 2 Electron Energy Scans and Comparison tothe Testbeam Monte Carlo','Heuring','','','','','','','','',1993,3,7,2449054,0,0,0,0),(1641,'D0 W/Z Physics Group Meeting Transparencies 2/26/93','Madaras','','','','','','','','',1993,2,26,2449045,0,0,0,0),(1642,'Original Electronics versus Upgrade Electronics Comparison ofPileup at Full Luminosity','Nemethy/Mincer','','','','','','','','',1993,4,15,2449093,0,0,0,0),(1643,'Recent Results from DZERO','Blazey','','','','','','','','',1993,3,5,2449052,0,0,0,0),(1644,'Low Energy Response of the D0 Calorimeter and Jet EnergyMeasurement','Bhat','','','','','','','','',1993,3,15,2449062,0,0,0,0),(1645,'Electroweak Results and Top Searches at D0','Prosper','','','','','','','','',1993,3,15,2449062,0,0,0,0),(1646,'Summary W/Z Meeting for Feb. 12, 1993','Rijssenbeek ','','','','','','','','',1993,3,1,2449048,0,0,0,0),(1647,'D0 Top Workshop Agenda - NIU - Feb 17-18, 1993','D0 Collaboration','','','','','','','','',1993,3,1,2449048,0,0,0,0),(1648,'Correlation Between SAMUS Tracks and Energy Deposition in the EndCalorimeter of the D0 Detector','Denisov, D.','','','','','','','$D0_PRI/1648/m_d0note_1648.pdf','',1993,3,16,2449063,2004,11,5,2453315),(1649,'Recent Results from D0 (presented at CERN on 3/29/1993)','Heintz','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1650,'','Taketani','','','','','','','','',1993,3,15,2449062,0,0,0,0),(1651,'Summary of the W/Z Meeting for March 12, 1993','Rijssenbeek ','','','','','','','','',1993,3,17,2449064,0,0,0,0),(1652,'Global Monitoring Training Notes','Bantly/Boehnlein/Klima','','','','','','','','',1993,4,6,2449084,0,0,0,0),(1653,'Test Beam Alignment','Feher/Stewart','','','','','','','','',1993,9,3,2449234,0,0,0,0),(1654,'Cosmic Rays \"CROSSECTIONS\" in SAMUS','Denisov, D.','','','','','','','','',1993,3,23,2449070,0,0,0,0),(1655,'Electronics and Testing Software of the SAMUS D0. Updatedtranslation from the Russian preprint: Electronics for Small Angle MuonSpectrometers in D0 Experiment','Baldine, et al.','','','','','','','','',1993,3,30,2449077,0,0,0,0),(1656,'Study of Residuals in D0 Muon System','Abachi/Kehoe','','','','','','','','',1993,3,30,2449077,0,0,0,0),(1657,'Jet Energy Calibration Using the Missing ET Projection Fraction','Milder/Astur','','','QCD','','','','','',1993,3,30,2449077,0,0,0,0),(1658,'Transparencies from SAMUS General Upgrade Meeting','Denisov, D.','','','','','','','','',1993,4,30,2449108,0,0,0,0),(1659,'Jet Faking Photon/Electron Study','Kelly','','','','','','','$D0_PRI/1659/m_d0note_1659.pdf','',1993,5,28,2449136,2004,11,5,2453315),(1660,'Measurement of the D0 Test Beamline Momentum using CerenkovPressure Curves','Tartaglia','','','','','','','','',1993,4,7,2449085,0,0,0,0),(1661,'QCD Jet Users Guide','Astur/Blazey/Brandt/Milder/ QCD Group','','','QCD','','','','','',1993,3,20,2449067,0,0,0,0),(1662,'Study of Fake Jets in the D0 Detector','AStur/D0 QCD Analysis Group','','','QCD','','','','$D0_PRI/1662/m_d0note_1662.pdf','',1993,3,20,2449067,2004,11,5,2453315),(1663,'Jet Trigger Efficiency in the D0 Detector','Astur/Milder/ D0 QCDAnalysis Group','','','QCD','','','','$D0_PRI/1663/m_d0note_1663.pdf','',1993,3,8,2449055,2004,11,5,2453315),(1664,'Changes made to L2ETMISS and L2ETSUM during Run Ia (Revised)','Boehnlein','','','','','','','$D0_PRI/1664/m_d0note_1664.pdf','',1993,7,15,2449184,2004,11,5,2453315),(1665,'Muon cuts and preliminary muon cross section (revised)','Hoeneisen','','','','','','','','',1993,4,30,2449108,0,0,0,0),(1666,'Status of the D0 W/Z Physics Analysis (Collaboration Mtg)','Madaras','','','','','','','','',1993,4,1,2449079,0,0,0,0),(1667,'Mw measurement using inclusive electron spectrum (Madison, SSCSymposium)','Peryshkin','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1668,'Electroweak Physics from D0 (Les Rencontes de Physique de la ValleeD\'Aoste LaThuile, March 7-13, 1993)','Roe','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1669,'Internal Review for the Upgrade Step I Silicon Tracker (D0Collaboration Mtg)','Sculli','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1670,'A Study of Electromagnetic and Hadronic Shower Shapes and PositionResolution, and the Jet Energy Response of the D-Zero Calorimeter.(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Durston','','','','','','','','',1993,4,1,2449079,0,0,0,0),(1671,'B Production at D0 (Moriond 1993)','Trippe','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1672,'Jets at D0 (Moriond 1993)','McCarthy','','','','','','','$D0_PRI/1672/m_d0note_1672.pdf','',1993,3,31,2449078,2004,11,5,2453315),(1673,'Search for the Top Quark with the D0 Detector (Moriond 1993)','Narain','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1674,'The Search for Large Voids Between Jets by D0 (Moriond 1993)','Forden','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1675,'Direct Photon Production at the D0 Experiment (Moriond 1993)','Linn','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1676,'Transparencies from MORIOND 1993','Narain','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1677,'Electroweak Results from D0 (Moriond, 1993)','Demarteau','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1678,'The Stability of the Response of the Calorimeter over the Load2 D0Testbeam Run for 100 GEV and 50 GEV Data','Hodel/Hirosky','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1679,'Copy of Transparencies Presented at the General Central DetectorsMeeting, 3/31/93','Madaras','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1680,'Triggering on Large Tiles with the Level 1 Calorimeter Trigger','Edmunds/Gross/Laurens','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1681,'Pulsed LASER for Testing Silicon Strip Detectors','Vaz/Cihangir/Rapidis','','','','','','','','',1993,5,28,2449136,0,0,0,0),(1682,'Main Ring Deadtime','Butler, J.','','','','','','','','',1993,2,28,2449047,0,0,0,0),(1683,'Determining the Jet Energy Scale using Test Beam','Astur/Borders/Cullen-Vidal/Milder','','','QCD','','','','$D0_PRI/1683/m_d0note_1683.pdf','',1993,3,11,2449058,2004,11,5,2453315),(1684,'GLBMON - The Online Program for the Monitoring of Data Flow in D0.Short user\'s guide','Denisenko','','','','','','','','',1993,4,8,2449086,0,0,0,0),(1685,'A Study of Backgrounds to W (-> e + u) + jets from Electro-WeakProcesses','Yu','','','','','','','','',1993,4,21,2449099,0,0,0,0),(1686,'The statistics of very small samples - Bayesian and classicalapproaches.','James','','','','','','','','',1993,3,31,2449078,0,0,0,0),(1687,'Fiber Ribbon Construction and Testing','Koltick/Howell/Schmitz/Cooper/ Crone/Michael','','','','','','','','',1993,4,5,2449083,0,0,0,0),(1688,'Transparencies of \"Top Search at the Tevatron\" (Hawaii, 1993)','Li-Demarteau','','','','','','','','',1993,4,26,2449104,0,0,0,0),(1689,'Inclusive Jet Cross-Sections at D0 Detector (D0CONF-93-4)','Elvira','','','QCD','','','','','',1993,3,28,2449075,0,0,0,0),(1690,'The TOP_LEPTONS Analysis Package','Wimpenny','','','','','','','','',1993,5,20,2449128,0,0,0,0),(1691,'Multiple Interaction Tool','Bantly/Li-Demarteau','','','','','','','','',1993,4,15,2449093,0,0,0,0),(1692,'Results from 1.8 TeV Hadron Collisions at D0, Preliminary(Presented at APS)','Buchholz','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1693,'B Production at D0','Zieminska, D.','','','','','','','','',1993,4,1,2449079,0,0,0,0),(1694,'Status of Top Searches','Klima','','','','','','','','',1993,4,1,2449079,0,0,0,0),(1695,'D0 QCD Physics Group - Status of Results and Plans ','Weerts','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1696,'Search for Top in the e? channel at D0 (Presented at APS)','Cochran','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1697,'Measurement of the Ratio of the W to Z Mass in D0 (Status Report)(Presented at APS)','Zhu','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1698,'Dijet Angular Distributions at D0 (Presented at APS)','Milder','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1699,'Top -> e + jets search at D0 (Presented at APS)','Snyder','','','','','','','','',1993,4,12,2449090,0,0,0,0),(1700,'Search for Top in the ee & ?? channels at D0 (Presented at APS)','Hall','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1701,'Search for Supersymmetry with the D0 Detector (Presented at APS)','Goforth','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1702,'A Search for a First Generation Scalar Leptoquark with the DzeroDetector at Fermilab s = 1.8 TeV (Presented at APS)','Norman','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1703,'J/Y Production at D0 with ammendment to J/PSI Cross Section(Presented at APS)','Murphy, C.','','','','','','','','',1993,6,2,2449141,0,0,0,0),(1704,'A Study of pp -> ? + jet + X at s = 1.8 TeV at D0 (Presented atAPS)','Huehn','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1705,'A Search for Rapidity Gaps at D0 (D0CONF-93-5)','May','','','','','','','','',1993,4,2,2449080,0,0,0,0),(1706,'Status of W -> tu analysis','Jung','','','','','','','','',1993,4,23,2449101,0,0,0,0),(1707,'Scale and Saturation Solution','Abolins/Edmunds/Laurens/Gross','','','','','','','','',1993,5,7,2449115,0,0,0,0),(1708,'D0 Upgrade Silicon Step 1 Tracker Review','n/a','','','','','','','','',1993,4,30,2449108,0,0,0,0),(1709,'First Results from MSU Silicon-Strip Detectors','Leflat/Merkin/Rouzin/Lipton/ Spiegel/ Joffee-Minor','','','','','','','','',1993,4,30,2449108,0,0,0,0),(1710,'D0 W/Z Physics Group Meeting Transparencies','Madaras','','','','','','','','',1993,4,23,2449101,0,0,0,0),(1711,'','Vaz','','','','','','','','',0,0,0,0,0,0,0,0),(1712,'Calculating and Combining Upperlimits','Abachi','','','','','','','','',1993,4,30,2449108,0,0,0,0),(1713,'Principles of EM Calorimetry (Academic Lecture Series)','Anderson,D.','','','','','','','','',1993,4,20,2449098,0,0,0,0),(1714,'Some Calorimetry Techniques (Academic Lecture Series)','Anderson,D.','','','','','','','','',1993,4,27,2449105,0,0,0,0),(1715,'Principles of Hadron Calorimetry (Academic Lecture Series)','Anderson, D.','','','','','','','','',1993,4,22,2449100,0,0,0,0),(1716,'ISAJET c, b-quark cross sections','Kozlovsky','','','','','','','','',1993,4,30,2449108,0,0,0,0),(1717,'Partial set of Transparencies for D0 Upgrade Meeting April 23, 1993','Montgomery','','','','','','','','',1993,4,23,2449101,0,0,0,0),(1718,'Status report on cross section measurements of W and Z to muons atD0','Gerber/Quintas/Wood','','','','','','','$D0_PRI/1718/m_1718.ps','',1993,4,30,2449108,2001,3,14,2451983),(1719,'The Problem of the Light and Intermediate Standard Higgs Search inthe Tevatron Energy Range','Boos/Shabalina/Shichanin','','','','','','','','',1993,5,28,2449136,0,0,0,0),(1720,'W and Z decays to muons at D0 (Presented at APS - April 1993)','Gerber','','','','','','','','',1993,5,28,2449136,0,0,0,0),(1721,'D0PAP on Calorimeter Calibration','Kotcher','','','','','','','','',1993,5,6,2449114,0,0,0,0),(1722,'D0 W/Z Physics Group Meeting Transparencies 5/7/93','Madaras','','','','','','','','',1993,5,7,2449115,0,0,0,0),(1723,'Study of Quality of High ET Dijet Events','Bhatnagar/Singh','','','','','','','$D0_PRI/1723/m_d0note_1723.pdf','',1993,9,9,2449240,2004,11,5,2453315),(1724,'Trigger Studies for W -> Tut','Boehnlein','','','','','','','','',1993,3,30,2449077,0,0,0,0),(1725,'On Stability of Response and Gain Corrections in Load 2 Test BeamData','Dharmaratna','','','','','','','$D0_PRI/1725/m_d0note_1725.pdf','',1993,5,2,2449110,2004,11,5,2453315),(1726,'','Li-Demartau','','','','','','','','',0,0,0,0,0,0,0,0),(1727,'The Search for Large Rapidity Gaps Between Jets by D0 (Invited Talkat the 28th Rencontres de Moriond, QCD and High Energy HadronicInteractgions, Les Arces, Savoi, France March 22-28, 1993) (D0CONF-93-6)','Forden','','','','','','','','',1993,5,18,2449126,0,0,0,0),(1728,'Electroweak Physics from D0 (D0CONF-93-7)','Roe','','','','','','','','',1993,5,28,2449136,0,0,0,0),(1729,'','Koltick','','','','','','','','',0,0,0,0,0,0,0,0),(1730,'D0 Shower Library - Version 2.0','Dharmaratna/Raja/ Stewart','','','','','','','','',1993,5,12,2449120,0,0,0,0),(1731,'Reconstruction of the Calorimeter Response-Test Beam Load 2','Dharmaratna','','','','','','','$D0_PRI/1731/m_d0note_1731.pdf','',1993,5,10,2449118,2004,11,5,2453315),(1732,'GEANT 3.14 vs. EGS4: A Comparison Using the D0 Uranium/Liquid ArgonCalorimeter Geometry','Heuring','','','','','','','','',1993,5,28,2449136,0,0,0,0),(1733,'E823 (D0 Upgrade) ','The D0 Collaboration','','','','','','','','',1993,5,19,2449127,0,0,0,0),(1734,'Preliminary Measurements of Moscow State University SiliconMicrostrip Detectors','Joffe-Minor','','','','','','','','',1993,5,24,2449132,0,0,0,0),(1735,'Measurement Procedures for Silicon Detectors on the SiDet ProbeStation at LabD','Joffe-Minor','','','','','','','','',1993,5,24,2449132,0,0,0,0),(1736,'D0 Step 1 Silicon Detector Redesign Study','Joffe-Minor','','','','','','','','',1993,5,24,2449132,0,0,0,0),(1737,'A Search for Squarks and Gluinos in pp Collisions at (sqrt) s =1.8 TEV with the D0 Detector (DPF Abstract)','Paterno, M.','','','','','','','','',1993,5,31,2449139,0,0,0,0),(1738,'Preliminary D0 Punchthrough Rates','Hedin','','','','','','','$D0_PRI/1738/m_d0note_1738.pdf','',1993,6,5,2449144,2004,11,5,2453315),(1739,'','Raja','','','','','','','','',0,0,0,0,0,0,0,0),(1740,'Electro-Weak, QCD & Top Physics at the Tevatron (Argonne/SSCworkshop on physics at current accelerators & the SuperCollider plenarytalk)','Diehl','','','','','','','','',1993,6,2,2449141,0,0,0,0),(1741,'Search for Top Quark with D0 Detector (D0CONF-93-8)','Protopopescu','','','','','','','','',1993,5,30,2449138,0,0,0,0),(1742,'Minutes of the W/Z Physics Group Meeting, 5/28/93','n/a','','','','','','','','',1993,6,3,2449142,0,0,0,0),(1743,'D0 Fiber Tracking Group Transparencies - Cosmic Ray Test StatusReview Meeting 6/3/93','Bross','','','','','','','','',1993,6,3,2449142,0,0,0,0),(1744,'Filenaming and Tape Label Conventions for Monte-Carlo Data Made orProcessed in Whole or in Part at Off-Site Facilities that is to be EnteredInto the FM Catalogue','Shaffer','','','','','','','','',1993,8,7,2449207,0,0,0,0),(1745,'Calculating the mass likelihood of tt decays to dileptons in thepresence of measurement errors.','Raja','','','','','','','','',1993,5,19,2449127,0,0,0,0),(1746,'Transparencies from the D0 Silicon Meeting 5/21/93','n/a','','','','','','','','',1993,5,21,2449129,0,0,0,0),(1747,'Adventures of Top D0G','Tartaglia','','','','','','','','',1993,6,22,2449161,0,0,0,0),(1748,'Search for the Top Quark from (e, ?) and (e, e) events in the D0detector in pp Collisions at s = 1.8 TeV (presented at Rencontres dePhysique de La Vallee D\'Aoste)','Raja','','','','','','','','',1993,6,3,2449142,0,0,0,0),(1749,'Description and Operation of the SL2I Test Board for Level 2','Fahland','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1750,'Description of SL2I Board for Level 2','Fahland/Nesic/Cullen-Vidal/Hoftun/ Cutts/Rossi','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1751,'Mt (W) line shape dependence on h and on s of pp collisions.','Jung/Rajagopalan','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1752,'The D0 Intercryostat Detector: Design Considerations, Test BeamStudies and Initial Performance. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Geld','','','','','','','','',1993,5,31,2449139,0,0,0,0),(1753,'QCD backgrounds to electroweak signals. A study of fake electronand fake photon probability.','Fatyga/Chakraborty','','','','','','','$D0_PRI/1753/m_d0note_1753.pdf','',1993,6,21,2449160,2004,11,5,2453315),(1754,'Jets at D0 (D0CONF-93-9)','McCarthy','','','','','','','','',1993,6,22,2449161,0,0,0,0),(1755,'Electroweak results from D0 (Presented at the Vth Blois Workshop,1993, Brown Univ. RI)','Rajagopalan','','','','','','','','',1993,6,22,2449161,0,0,0,0),(1756,'Clustering and Isolation Algorithms for a Level 1.5 CalorimeterTrigger','Narain/Heintz','','','','','','','$D0_PRI/1756/m_note1756.ps','',1993,6,20,2449159,2002,2,28,2452334),(1757,'Proposal for a Level 1.5 Calorimeter Trigger','Heintz/Tuts/Narain/Schamberger','','','','','','','','',1993,6,10,2449149,0,0,0,0),(1758,'\"Standard\" EM Energy Scale Correction for Reco V10','Heintz','','','','','','','$D0_PRI/1758/m_note1758.ps','',1993,6,28,2449167,2002,2,28,2452334),(1759,'SUSY Searches at D0 (D0CONF-93-11)','Sawyer','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1760,'Effects of a high-energy X-Ray Irradiation of SelectedScintillating Fibers. (Presented at SPIE 38th International Symposium onApplied Science & Engineering, San Diego, CA, July 11-16, 1993)','Margulies/Chung','','','','','','','','',1993,6,21,2449160,0,0,0,0),(1761,'Effects of a light on scintillating fibers. (Presented at SPIE38th International Symposium on Applied Science & Engineering, San Diego,CA, July 11-16, 1993)','Chung/Margulies','','','','','','','','',1993,6,21,2449160,0,0,0,0),(1762,'Test of a MicroStrip Gas Chamber','Lami','','','','','','','','',1993,6,29,2449168,0,0,0,0),(1763,'A Study of Standard Jet Cuts and their Efficiencies Using D0Collider Data','Elvira/Blazey/Astur','','','QCD','','','','$D0_PRI/1763/m_d0note_1763.pdf','',1993,6,21,2449160,2004,11,5,2453315),(1764,'Merged Jets and Cross-Sections','Elvira/Astur','','','QCD','','','','$D0_PRI/1764/m_d0note_1764.pdf','',1993,6,28,2449167,2004,11,5,2453315),(1765,'D0 - Aspen 6/23/93','Grannis','','','','','','','','',1993,6,23,2449162,0,0,0,0),(1766,'D0 Upgrade - Aspen PAC','Montgomery','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1767,'Simple Queueing Theory For Level 2 and DAQ','Linnemann','','','','','','','','',1993,6,22,2449161,0,0,0,0),(1768,'Tuning electron ID parameters for the Level2 trigger using testbeamdata. The description of a procedure and the presentation of data.','Fatyga, M.','','','','','','','','',1994,6,20,2449524,0,0,0,0),(1769,'Backgrounds from External ?-Bremsstrahlung to the e?-top Signaturein D0','Klatchko/Youssef','','','','','','','','',1993,7,7,2449176,0,0,0,0),(1770,'The Search for the Top Quark at D0','Wimpenny','','','','','','','','',1993,5,26,2449134,0,0,0,0),(1771,'Long-Term Stability of the TVBS and APTVBS Signals','Chappa','','','','','','','','',1993,7,2,2449171,0,0,0,0),(1772,'Search for Top in the emu channel at D0 - APS writeup','Cochran','','','','','','','','',1993,4,1,2449079,0,0,0,0),(1773,'Bayesian Analysis of Heavy Quark Tagging Probabilities','Raja','','','','','','','','',1993,7,6,2449175,0,0,0,0),(1774,'Recent Results from the D0 Detector (D0CONF-92-22)','Raja','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1775,'','Prosper','','','','','','','','',0,0,0,0,0,0,0,0),(1776,'Test of Epoxies for Attaching Kuraray Multiclad Fibers to Delrin.','Born/Chung/Margulies','','','','','','','','',1993,6,29,2449168,0,0,0,0),(1777,'B Physics at D0 (Physics at Current Accelerators & Supercolliders;ANL June 2-5, 1993)','Bazizi','','','','','','','','',1993,6,5,2449144,0,0,0,0),(1778,'','Stan Krzywdzinski','','','','','','','$D0_PRI/1778/m_calerrors.ps','',0,0,0,0,2002,1,12,2452287),(1779,'','Stan Krzywdzinski','','','','','','','','',0,0,0,0,0,0,0,0),(1780,'Some Calibration Methods for Calorimeters','Babintsev','','','','','','','$D0_PRI/1780/m_d0note_1780.pdf','',1993,7,14,2449183,2004,11,5,2453315),(1781,'Background Estimates for Events 1388 and 417','Protopopescu','','','','','','','','',1993,7,9,2449178,0,0,0,0),(1782,'A Study of the D0 Calorimeter ET Resolution Using Low ET JetTriggers','Paterno, M.','','','','','','','$D0_PRI/1782/m_d0note_1782.pdf','',1993,7,29,2449198,2004,11,5,2453315),(1783,'','Bazizi','','','','','','','','',0,0,0,0,0,0,0,0),(1784,'Upgrade (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1785,'New Phenomena (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1786,'Tau Algorithm (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1787,'Muon (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1788,'Luminosity (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1789,'Running the Experiment (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1790,'WZ (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1791,'Silicon Tracking (see attached list)','Stonybrook Workshop','','','','','','','$D0_PRI/1791/m_d0note_1791.pdf','',1993,6,30,2449169,2004,11,5,2453315),(1792,'Electron ID Standards (see attached list)','Stonybrook Workshop','','','','','','','$D0_PRI/1792/m_d0note_1792.pdf','',1993,6,30,2449169,2004,11,5,2453315),(1793,'Central Detector (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1794,'Top Part I (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1795,'Top Part II (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1796,'Calorimeter (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1797,'QCD (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1798,'Muon ID Standards (See attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1799,'Trigger (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1800,'B Physics (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1801,'tt --> e + jets (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1802,'Others, Part I (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1803,'Others, Part II (see attached list)','Stonybrook Workshop','','','','','','','','',1993,6,30,2449169,0,0,0,0),(1804,'A Toy Monte Carlo Study of the Momentum Resolution of the WAMUS inD0','Klatchko/Youssef','','','','','','','','',1993,7,23,2449192,0,0,0,0),(1805,'Strategies for Triggering on U -> ee at D0','Tartaglia','','','','','','','','',1993,4,21,2449099,0,0,0,0),(1806,'Top Limit Calculation','Partridge','','','','','','','','',1993,7,20,2449189,0,0,0,0),(1807,'Events with two Central Inclusive Muons: What can we obtain?','Hoeneisen','','','','','','','','',1993,6,28,2449167,0,0,0,0),(1808,'The D0 Detector (NIM paper) ( D0PUB-93-1)','Abachi, etal','','','','','','','','',1993,9,13,2449244,0,0,0,0),(1809,'','Protopopescu','','','','','','','','',0,0,0,0,0,0,0,0),(1810,'Trigger Upgrade Plan of Attack','Baden','','','','','','','','',1993,7,31,2449200,0,0,0,0),(1811,'How to Find the Most Important Measurement in Least-Square Fit --And its Application in Muon Momentum Determination at D0','Hu','','','','','','','$D0_PRI/1811/m_note1811.ps','',1993,7,16,2449185,2002,2,28,2452334),(1812,'Search for the Top Quark & other New Particles at D0 (Blois93,Brown Univ.)','Bhat','','','','','','','','',1993,6,10,2449149,0,0,0,0),(1813,'Top Search at the Tevatron (D0CONF-93-12)','Li-Demarteau','','','','','','','','',1993,7,31,2449200,0,0,0,0),(1814,'A Study of Electron ID Efficiencies using Z -> ee Decays','Heintz/Narain','','','','','','','$D0_PRI/1814/m_note1814.ps','',1993,7,24,2449193,2004,11,5,2453315),(1815,'Estimate of the Background to the e? top Channel from Wg Events','Klatchko/Landsberg/Youssef','','','','','','','','',1993,8,31,2449231,0,0,0,0),(1816,'Minutes of the W/Z Meeting, 7/9/93','n/a','','','','','','','','',1993,7,9,2449178,0,0,0,0),(1817,'Results of a Scanning of Events with High ET ','Dissertori/Blazey','','','','','','','','',1993,7,19,2449188,0,0,0,0),(1818,'DAB and TEST BEAM Calorimeter Temperatures','Blazey','','','','','','','','',1993,7,31,2449200,0,0,0,0),(1819,'Energy Scale Error for W Mass Measurement','Heintz','','','','','','','$D0_PRI/1819/m_note1819.ps','',1993,7,24,2449193,2002,2,28,2452334),(1820,'Performance of Multiclad Scintillating and Waveguide Optical FibersRead Out with Visible Light Photon Counters (submitted to the SPIEInternational Symposium on Optics Imaging and Instrumentation, San Diego,CA, 7/13/1993) (D0CONF-93-13)','Ruchti','','','','','','','','',1993,8,20,2449220,0,0,0,0),(1821,'b-quark Production Cross Section from Inclusive Single-Muon CrossSection','Hoeneisen','','','','','','','','',1993,7,21,2449190,0,0,0,0),(1822,'Recent B Physics Results from D0 (D0CONF-93-14)','D0Collaboration','','','','','','','','',1993,7,15,2449184,0,0,0,0),(1823,'Direct Photon Production in D0 (D0CONF-93-15)','D0Collaboration','','','','','','','','',1993,7,15,2449184,0,0,0,0),(1824,'Production of Jets in Association with W Vector Bosons in the D0Detector (D0CONF-93-16)','Collaboration','','','','','','','','',1993,7,15,2449184,0,0,0,0),(1825,'A Search for Jet Events with Rapidity Gaps at the DZero Detector(D0CONF-93-17)','D0 Collaboration','','','','','','','','',1993,7,15,2449184,0,0,0,0),(1826,'Search for First Generation Scalar Leptoquarks with the D0 Detector(D0CONF-93-18)','D0 Collaboration','','','','','','','','',1993,7,23,2449192,0,0,0,0),(1827,'Observation of Wg Production at the TEVATRON Collider by D0.(Submitted to the 16th Int\'l Symposium on Lepton and Photon Interactions,Aug. 10-15, 1993) (D0CONF-93-19)','Collaboration','','','','','','','','',1993,8,15,2449215,0,0,0,0),(1828,'Production of W and Z Bosons at (sqrt) s = 1.8 TeV (D0CONF-93-20)','D0 Collaboration','','','','','','','','',1993,7,15,2449184,0,0,0,0),(1829,'Jet Cross Sections and Angular Distributions at DZero (D0CONF-93-21)','D0 Collaboration','','','','','','','','',1993,7,15,2449184,0,0,0,0),(1830,'Testing a Rapidity-Dependent Calorimeter Correction to the Z Massat D0','Perkins','','','','','','','$D0_PRI/1830/m_d0note_1830.pdf','',1993,7,30,2449199,2004,11,5,2453315),(1831,'Search for Rapidity Gaps in P-Pbar Collisions at D0 (Presented atteh Interantional Europhysics Conference on High Energy Physics, July,1993, Marseille, France)','Streets','','','','','','','','',1993,7,31,2449200,0,0,0,0),(1832,'Minutes of the W/Z Physics Group Meeting, 7/23/93','n/a','','','','','','','','',1993,7,23,2449192,0,0,0,0),(1833,'Derivation of the Photon Fraction for the Conversion Method','Klatchko/Linn','','','','','','','','',1993,7,27,2449196,0,0,0,0),(1834,'Selected D0 Physics Results (CERN July 20, 1993)','Pope','','','','','','','','',1993,7,20,2449189,0,0,0,0),(1835,'Electrons in the D0 Central Calorimeter: A Study of the SystematicBiases in the Measurement of the W Mass. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Heuring','','','','','','','','',1993,7,15,2449184,0,0,0,0),(1836,'Muon Tracking in 3-D (Muon ID Meeting 8/4/93)','Peters','','','','','','','','',1993,8,4,2449204,0,0,0,0),(1837,'D0 Opportunities in Measuring the VVg Couplings (submitted toProccedings of the Madison-Argonne SSC Symposium, April-June, 1993)','Landsberg','','','','','','','','',1993,8,11,2449211,0,0,0,0),(1838,'Rapidity Correlations in Wg Production at the Tevatron','Bauer/Errede/Landsberg','','','','','','','','',1993,8,5,2449205,0,0,0,0),(1839,'Search for the Top Quark at D0','Hadley','','','','','','','','',1993,8,12,2449212,0,0,0,0),(1840,'','Paterno, M.','','','','','','','','',0,0,0,0,0,0,0,0),(1841,'Multiclad Fiber Epoxy Test','Kim/Bross','','','','','','','','',1993,7,24,2449193,0,0,0,0),(1842,'Searching for Top with Neural Nets. I. Optimization of NNParameters','Miettinen, Ou','','','','','','','$D0_PRI/1842/m_d0note_1842.pdf','',1993,7,10,2449179,2004,11,5,2453315),(1843,'Slides from Calorimeter Electronics Upgrade Meeting','Tuts','','','','','','','$D0_PRI/1843/m_d0note_1843.pdf','',1993,8,10,2449210,2004,11,5,2453315),(1844,'Scintillaton Counter Trigger Board Specification','Baldin/Regan','','','','','','','$D0_PRI/1844/m_d0note_1844.pdf','',1993,8,5,2449205,2004,11,5,2453315),(1845,'Effects of Hot Cells on the Inclusive Jet Cross Section','Abbott/Blazey','','','','','','','$D0_PRI/1845/m_d0note_1845.pdf','',1993,9,9,2449240,2004,11,5,2453315),(1846,'Transparencies from D0 Upgrade Tracking Meeting (August 12/13,1993)','Mont','','','','','','','','',1993,8,13,2449213,0,0,0,0),(1847,'Top Search and Electroweak results from D0','Tartaglia','','','','','','','','',1993,8,20,2449220,0,0,0,0),(1848,'Results from D0 at FNAL (SLAC Summer Institute, Prelecture Notes,July 26-Aug. 6, 1993)','Sculli ','','','','','','','','',1993,8,6,2449206,0,0,0,0),(1849,'Multiple Interaction Tool Study','Bantly','','','','','','','','',1993,8,25,2449225,0,0,0,0),(1850,'A Comparison of Fake Electron Rates in Data and the ISAJET MonteCarlo. A Comparison of Multi-jet Triggers with ISAJET Monte Carlo.','Fatyga','','','','','','','$D0_PRI/1850/m_d0note_1850.pdf','',1993,9,9,2449240,2004,11,5,2453315),(1851,'CP-violation at D0?','Hoeneisen','','','','','','','','',1993,8,17,2449217,0,0,0,0),(1852,'Calorimeter Response for Low Energy Electrons After Using StandardD0 Reconstruction Packages With New Sampling Weights.','Denisenko, N.','','','','','','','$D0_PRI/1852/m_d0note_1852.pdf','',1993,9,9,2449240,2004,11,5,2453315),(1853,'Contribution from Uranium Noise to the Energy of Electron (PELC)Cluster','Denisenko','','','','','','','$D0_PRI/1853/m_d0note_1853.pdf','',1993,8,30,2449230,2004,11,5,2453315),(1854,'Comparison of experimental data with MC simulated in PYTHIA andISAJET','Kozlovsky','','','','','','','','',1993,10,14,2449275,0,0,0,0),(1855,'Discovery limit for top in D0 using the ee, e? and e + jets','Raja','','','','','','','','',1993,8,24,2449224,0,0,0,0),(1856,'Multiple Interactions, A Primer','Eppley','','','','','','','','',1993,8,31,2449231,0,0,0,0),(1857,'Electroweak Physics at the Tevatron Collider (Presented at the XIIIInternational Conference on Physics in Collision, Heidelberg, Germany, June16-18, 1993 & to be published in the Proceedings) (D0CONF-93-22)','Aihara','','','','','','','','',1993,9,9,2449240,0,0,0,0),(1858,'Study of Hadron Punchthrough in D0','Bhatnagar/Singh','','','','','','','','',1993,9,27,2449258,0,0,0,0),(1859,'VLPC QC Operational Manual, Version 1.0','Won','','','','','','','$D0_PRI/1859/m_won_1859.ps','',1993,8,20,2449220,2002,2,28,2452334),(1860,'VLPC Quality Control for the 3000 Channel System Test','Won','','','','','','','$D0_PRI/1860/m_won_1860.ps','',1993,9,9,2449240,2002,2,28,2452334),(1861,'TB90L2_SURVEY Test Beam Alignment Package','Feher/Stewart','','','','','','','','',1993,8,29,2449229,0,0,0,0),(1862,'Response of the DAB and TEST BEAM Liquid Argon Purity Monitors','Blazey','','','','','','','','',1993,9,9,2449240,0,0,0,0),(1863,'','Peryshkin','','','','','','','','',0,0,0,0,0,0,0,0),(1864,'W Boson Mass Measurement Using Inclusive Electron Spectrum(D0CONF-93-23)','Peryshkin','','','','','','','','',1993,9,9,2449240,0,0,0,0),(1865,'Identifying B-Jets with Electrons','Peryshkin','','','','','','','$D0_PRI/1865/m_d0note_1865.pdf','',1993,11,1,2449293,2004,11,5,2453315),(1866,'B Production and BB mixing at D0 (Heavy Flavours Conference, Pavia,September 3-7, 1993)','Denisov, D.','','','','','','','','',1993,9,9,2449240,0,0,0,0),(1867,'A Study of Cone Size Dependence of Inclusive Jet cross-section inD0','Singh','','','','','','','$D0_PRI/1867/m_d0note_1867.pdf','',1993,8,27,2449227,2004,11,5,2453315),(1868,'A Test of QCD Based on the Topologies of the Three- and Four-JetEvents','Qian','','','','','','','','',1993,9,19,2449250,0,0,0,0),(1869,'Muon Hit Library Punch-Through Simulation Package','Singh/Stewart','','','','','','','','',1993,8,25,2449225,0,0,0,0),(1870,'Search for Top at D0 (Advance Study Conf. on \"Heavy Flavours\"9/6/93)','Butler','','','','','','','','',1993,9,6,2449237,0,0,0,0),(1871,'CD Meeting, 9/1/93, Copies of Transparencies','n/a','','','','','','','','',1993,9,1,2449232,0,0,0,0),(1872,'B Production at D0 (proceedings of the \"Workshop on B Physics athardon Accelerators\", Snowmass, C0, June 21 - July 2, 1993) (D0CONF-93-24)','Choudhary','','','','','','','','',1993,9,7,2449238,0,0,0,0),(1873,'Silicon Microstrip Wedge Detectors for the D0 Silicon Tracker(Presented at the International Symposium on Development & Application ofSemiconductor Tracking Detectors, May 22-24, 1993, Hiroshima, Japan)(D0CONF-93-25)','Ellison','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1874,'Dijet Angular Distributions at s = 1800 GeV using the D0Detector. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.AZ01:[Scratch.milder.data]diss.ps','Milder','','','','','','','','',1993,10,14,2449275,0,0,0,0),(1875,'Rapidity Gaps and Forward Physics at D0 (Slides & ProceedingsArticle Vth Blois Workshop, Brown University, June 8-12, 1993)','Draper','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1876,'On Possible Peculiar Properties of the t-Quark and High Mass PhotonPairs at LEP','Arbuzov','','','','','','','','',1993,9,9,2449240,0,0,0,0),(1877,'Search for the Top Quark and Other New Particles at D0 (proceedingsof the International Conference (Vth Blois Workshop) on Elastic andDiffractive Scattering (1993)) (D0CONF-93-26)','Bhat','','','','','','','','',1993,9,9,2449240,0,0,0,0),(1878,'CD Software Meeting, 9/3/93, Copies of Transparencies(Collaboration Meeting)','n/a','','','','','','','','',1993,9,9,2449240,0,0,0,0),(1879,'Determination of the Strong Coupling Constant (as) and a Test ofPerturbative QCD Using W + Jets Processes in the D0 Detector.(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Yu','','','','','','','','',1993,9,9,2449240,0,0,0,0),(1880,'Offline Reconstruction Meeting (Collaboration meeting)','Klima','','','','','','','','',1993,9,3,2449234,0,0,0,0),(1881,'Measurement of B? -- B? Mixing Using Dimuon Events at D0(D0CONF-93-27)','Johns','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1882,'Search for the Top Quark at D0 (D0CONF-93-28)','Narain','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1883,'D0 General Upgrade Meeting Transparencies from D0 CollaborationMeeting: Sept 3, 1993','Mont','','','','','','','','',1993,9,3,2449234,0,0,0,0),(1884,'D0 Upgrade Tracking Transparencies from D0 Collaboration Meeting:Sept 1-3, 1993','Mont','','','','','','','','',1993,9,3,2449234,0,0,0,0),(1885,'Electron Identification in the D0 Detector (submitted for theProceedings of the Workshop on B-Physics at Hadron Accelerators)(D0CONF-93-29)','Denisenko','','','','','','','','',1993,9,13,2449244,0,0,0,0),(1886,'Parton-Level ISAJET Study of Extra Jet in Dilepton Top','Strovink','','','','','','','','',1993,9,15,2449246,0,0,0,0),(1887,'Level 2 Muon Filter in Run 1A','Diehl','','','','','','','','',1993,9,15,2449246,0,0,0,0),(1888,'Proposed Correction Methods for Fringing Field of 2 Telsa D0Solenoid on Main Ring Beam','Yamada/Goderre/Ostiguy/Mesin','','','','','','','','',1993,9,29,2449260,0,0,0,0),(1889,'Trigger Issues','Johnson','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1890,'A New Method to Determine Luminosity','Seebohm/Bantly/Partridge','','','','','','','','',1993,10,25,2449286,0,0,0,0),(1891,'Rapidity Gap Results from D0 (XXIII International Symposium onMultiparticle Dynamics, Aspen, Sept. 1993)','Feher','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1892,'Selected D0 Physics Results (Aspen Symposium on MultiparticleDynamics, Sept. 13-18, 1993)','Zylberstejn','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1893,'D0 Results on Searches for the Top Quark (Summary of Talk Given at5th International Symposium on Heavy Flavour Physics, Montreal, Canada,July 6-10, 1993) (D0CONF-93-30)','Abachi','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1894,'','May','','','','','','','','',0,0,0,0,0,0,0,0),(1895,'','May','','','','','','','','',0,0,0,0,0,0,0,0),(1896,'Likelihood Functions for the Top Quark Mass','Peters/Prosper/Yoshikawa','','','','','','','','',1993,9,22,2449253,0,0,0,0),(1897,'What\'s Wrong with the Central Detector? A view from the \"Physics\'Groups\"','Graf/Rajagopalan/Zieminska/Claes','','','','','','','','',1993,9,22,2449253,0,0,0,0),(1898,'Minutes of the Sept. 1 W/Z Meeting','Rijssenbeek','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1899,'The TRD_ANALYSIS Package','Pluquet','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1900,'','Forden','','','','','','','','',0,0,0,0,0,0,0,0),(1901,'D0 Silicon Meeting','Lipton','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1902,'The Effects of Zero-Suppression on Test Beam Data','Streets','','','','','','','','',1993,9,28,2449259,0,0,0,0),(1903,'Muon A-Layer Stub Trigger Rates in Run II','Diehl/Glenn','','','','','','','','',1993,11,1,2449293,0,0,0,0),(1904,'Updated status report on cross section measurements of W and Z toMuons at D0','Gerber/Quintas/Wood','','','','','','','$D0_PRI/1904/m_1904.ps','',1993,9,24,2449255,2001,3,14,2451983),(1905,'B Mixing and CP Violation Studies','Lipton','','','','','','','','',1992,1,21,2448643,0,0,0,0),(1906,'Further ISAJET Study of Extra Jet in Dilepton Top','Strovink','','','','','','','','',1993,10,6,2449267,0,0,0,0),(1907,'Scintillating Fiber Readout and Triggering Design for the D0Upgrade','Glenn/Lander/Mani/Pellett','','','','','','','','',1993,10,14,2449275,0,0,0,0),(1908,'Gluon Emission Study in tt Production and Decay on ISAJET - ASummary','Saririan','','','','','','','','',1993,9,30,2449261,0,0,0,0),(1909,'Search for Top at D0 ( at Wine & Cheese)','Klima','','','','','','','','',1993,10,11,2449272,0,0,0,0),(1910,'Transparencies from Workshop on B Physics at D0','n/a','','','','','','','','',1993,10,6,2449267,0,0,0,0),(1911,'Search for the Top Quark with the D0 Detector at the FermilabCollider (D0CONF-93-31)','Hadley','','','','','','','','',1993,10,14,2449275,0,0,0,0),(1912,'New Electroweak Results from D0 (Presented at Fermilab Wine &Cheese)','Demarteau','','','','','','','','',1993,10,11,2449272,0,0,0,0),(1913,'B Physics at the D0 Detector (Plenary talk at Snowmass) (D0CONF-93-32)','Cummings','','','','','','','','',1993,11,1,2449293,0,0,0,0),(1914,'A Search for First Generation Scalar Leptoquarks at s = 1.8 TeVwith the D0 Detector.(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Norman','','','','','','','','',1993,11,1,2449293,0,0,0,0),(1915,'Plenary Talks Oct. 7, 1993 - Oct. 8, 1993','Collaboration','','','','','','','','',1993,11,1,2449293,0,0,0,0),(1916,'HDIFFB; A Bin by Bin Comparator for HBOOK','Genik/Linnemann','','','','','','','','',1993,10,27,2449288,0,0,0,0),(1917,'','Genik','','','','','','','','',0,0,0,0,0,0,0,0),(1918,'','Genik','','','','','','','','',0,0,0,0,0,0,0,0),(1919,'A Program to Calculate Leading Order Triple Differential Di-JetCross Sections','Feher/Mooney','','','','','','','','',1994,1,18,2449371,0,0,0,0),(1920,'A Search for Rapidity Gap Events in pbarp Collisions at D0(D0CONF-93-33)','Streets','','','','','','','','',1993,11,1,2449293,0,0,0,0),(1921,'Efficiencies of WAMUS chambers in overlap region','Sirotenko','','','','','','','','',1993,10,26,2449287,0,0,0,0),(1922,'','Paterno, L.','','','','','','','','',0,0,0,0,0,0,0,0),(1923,'Post Cooldown Capacitance Testing of the Endcalorimeters on theCenterbeam prior to run 1A','Ito/Smith, R.','','','','','','','','',1993,11,1,2449293,0,0,0,0),(1924,'A Method Which Eliminates the Discreteness in Poisson Confidets andLessens the Effecect of Moving Cuts Specifically to Eliminate CandidateEvents','Cousins','','','','','','','','',1993,5,28,2449136,0,0,0,0),(1925,'Top Quark Search with the D0 Detector (D0CONF-93-34)','Strovink','','','','','','','','',1993,10,31,2449292,0,0,0,0),(1926,'Study of Associated Gauge Boson Production at D0. Wg Production.(Presented at the 9th Topical Workshop on pp Collider Physics - Tsukuba,Japan, Oct. 18, 1993)','Spadafora','','','','','','','','',1993,10,18,2449279,0,0,0,0),(1927,'Control and Monitoring of the D0 Detector','Bartlett/Ahn/Denisenko, N. /Fuess/Jonckheere/ Krzywdzinski/Paterno, L./Prosper/Raja/Featherly/ Gibbard/Rasmussen','','','','','','','','',1993,11,1,2449293,0,0,0,0),(1928,'Search for Top at D0 (Presented at Advanced Study Conference onHeavy Flavours, Pavia, Italy, Sept. 3-7, 1993) (D0CONF-93-35)','Butler, J.','','','','','','','','',1993,9,30,2449261,0,0,0,0),(1929,'D0 Analysis Computing Model for Run 1b DACPB Report 1','Bhat/Fuess/Prosper/Butler, Joel/ Christenson/ Diesburg/ Hadley/Leininger/Nagy/Protopopescu/ Wolbers/Gibbard/Nash','','','','','','','','',1993,12,9,2449331,0,0,0,0),(1930,'','Glebov','','','','','','','','',0,0,0,0,0,0,0,0),(1931,'Searching for Top with Neural Nets II. NN versus ProbabilityDensity Estimation','Miettinen/Ou/Holmstrom/Sain','','','','','','','','',1993,11,2,2449294,0,0,0,0),(1932,'Efficiency of the single muon detection in SAMUS spectrometer ofthe D0 detector','Denisov, D./Eroshin/Podstavkov','','','','','','','','',1993,12,28,2449350,0,0,0,0),(1933,'E823 (D0 Upgrade): Magnetic Tracking','D0 Collaboration','','','','','','','','',1993,10,12,2449273,0,0,0,0),(1934,'Conference Summary (9th Topical Workshop on proton-antiprotonCollider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Grannis','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1935,'Preliminary D0 Measurements of the Inclusive Single Muon CrossSection (9th Topical Workshop on proton-antiproton Collider Physics,Tsukuba, Japan, Oct. 18-22, 1993)','Maciel','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1936,'Measurement of the pp -> p X single diffraction cross section ats = 546 and 1800 GeV','Miscetti','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1937,'','Denby','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1938,'Top Search in the Lepton + Jets Channel at CDF (9th TopicalWorkshop on proton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22,1993)','Contreras','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1939,'Search for the Top Quark in e Single Lepton + Jets Channel at D0(9th Topical Workshop on proton-antiproton Collider Physics, Tsukuba,Japan, Oct. 18-22, 1993)','Greenlee','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1940,'Search for the Top Quark in the Dilepton Channel at CDF (9thTopical Workshop on proton-antiproton Collider Physics, Tsukuba, Japan,Oct. 18-22, 1993)','Chikauratsu','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1941,'Search for the Top Quark at D0 - Di-lepton channels (9th TopicalWorkshop on proton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22,1993)','Fatyga, M.','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1942,'A Search for t -> H+b in pp at s = 1.8 TeV','Jessop','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1943,'\"New Hadronic State\" observed in Extremely High Energy Cosmic-RayInteractions (9th Topical Workshop on proton-antiproton Collider Physics,Tsukuba, Japan, Oct. 18-22, 1993)','Hasegawa','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1944,'Supersymmetry and Higgs Sector (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Okada','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1945,'Search for Excited Quarks at CDF (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Kephart','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1946,'SUSY Search at CDF (9th Topical Workshop on proton-antiprotonCollider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Kato','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1947,'Search for Supersymmetry and Leptoquark States in DZero','White','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1948,'Transparencies from 9th Topical Workshop on proton-antiprotonCollider Physics, Tsukuba, Japan, Oct. 18-22, 1993','Tollestrup','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1949,'Strong W/Z Sector (9th Topical Workshop on proton-antiprotonCollider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Hikasa','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1950,'Physics by the GEM Detector at SSC (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Yamamoto','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1951,'Physics with the SDC Detector at SSC (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Takekawa','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1952,'Jet Structure and Quark/Gluon Seperation in CDF (9th TopicalWorkshop on proton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22,1993)','Ninomiya','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1953,'Recent QCD Results from CDF (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Kuhlman','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1954,'A Search for Rapidity Gaps in Jet Events at D0 and A Study of ColorCoherence in Multijet Events at D0 (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Borcherding','','','QCD','','','','','',1993,11,9,2449301,0,0,0,0),(1955,'Inclusive Jet and Photon Production at D0 (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Kotcher','','','QCD','','','','$D0_PRI/1955/m_1955_kotcher_tsukuba.ps','',1993,11,9,2449301,2002,2,28,2452334),(1956,'Studies of Jet Production with the D0 Detector (9th TopicalWorkshop on proton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22,1993)','Weerts','','','QCD','','','','','',1993,11,9,2449301,0,0,0,0),(1957,'Observation of the Bs at CDF (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Holscher','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1958,'b Production at CDF (9th Topical Workshop on proton-antiprotonCollider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Crane','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1959,'B Lifetimes at CDF (9th Topical Workshop on proton-antiprotonCollider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Skarha','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1960,'Study of B? - B? mixing in D0 (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Igarashi','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1961,'Measurement of bb Correlations at UA1 and Tests of QCD (9th TopicalWorkshop on proton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22,1993)','Geiser','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1962,'Recent Progress in the Theory of Heavy Flavour Production (9thTopical Workshop on proton-antiproton Collider Physics, Tsukuba, Japan,Oct. 18-22, 1993)','Michelangelo Mangano','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1963,'UA1 Minimum Bias data at s = 630 GeV(9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Norton','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1964,'Inclusive Production of Strange Particles at UA1 (9th TopicalWorkshop on proton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22,1993)','Tan','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1965,'Measurement of the Elastice and Total Gross Sections at s = 546and 1800 GeV, using the Luminosity Independent Method','Chiarelli','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1966,'A Precise Measurement of the Real Part of the pp Elastic ScatteringAmplitude at the SppS (9th Topical Workshop on proton-antiproton ColliderPhysics, Tsukuba, Japan, Oct. 18-22, 1993)','Djama','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1967,'Production of W and Z Bosons at D0 (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Graf','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1968,'Measurement of the W Mass in the DZero Detector (9th TopicalWorkshop on proton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22,1993)','Zhu','','','','','','','$D0_PRI/1968/m_1968_zhu_tsukuba_1968.ps','',1993,11,9,2449301,2002,2,28,2452334),(1969,'A Measurement of the W Mass Using Electrons at CDF (9th TopicalWorkshop on proton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22,1993)','Saltzberg','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1970,'CDF Electroweak Results from 21.4 pb-1 of Proton-AntiprotonCollisions at s = 1.8 TeV (9th Topical Workshop on proton-antiprotonCollider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Badgett','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1971,'Lepton Charge Asymmetry from W Decay and Search for New GaugeBosons at D0 (9th Topical Workshop on proton-antiproton Collider Physics,Tsukuba, Japan, Oct. 18-22, 1993)','Taketani','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1972,'W Charge Asymmetry Measurement & Z\' Search at CDF (9th TopicalWorkshop on proton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22,1993)','Maeshima','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1973,'Composite Higgs Models (9th Topical Workshop on proton-antiprotonCollider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Muta','','','','','','','','',1993,11,9,2449301,0,0,0,0),(1974,'First Generation Leptoquark Search in pp Collisions at s= 1.8TeV ( D0PUB-93-2)','Abachi, et. al.','','','','','','','','',1993,12,28,2449350,0,0,0,0),(1975,'','Yamada','','','','','','','','',0,0,0,0,0,0,0,0),(1976,'Mini-Workshop on Top Mass Finding, Oct. 13, 1993, Bloomington, IN','Raja/Strovink/Heinz/Dalitz/ Goldstein/Prosper/Peters/Yoshikawa/Pang','','','','','','','','',1993,11,1,2449293,0,0,0,0),(1977,'Transparencies from D0 Trigger Upgrade Meeting, November 11, 1993','n/a','','','','','','','','',1993,11,11,2449303,0,0,0,0),(1978,'','Raja','','','','','','','','',0,0,0,0,0,0,0,0),(1979,'B - Bbar Mixing from Gluon Fusion and Gluon Splitting','Hoeneisen','','','','','','','','',1993,11,12,2449304,0,0,0,0),(1980,'Transparencies from Global Fitting Meeting, November 10, 1993','n/a','','','','','','','','',1993,11,10,2449302,0,0,0,0),(1981,'Offline Reconstruction Meeting (Nov. 12, 1993)','Klima','','','','','','','','',1993,11,12,2449304,0,0,0,0),(1982,'A Study on the resolution of the limited streamer tubes','Kim,D.W./Kim, C.L.','','','','','','','','',1993,11,16,2449308,0,0,0,0),(1983,'D0 W/Z Physics Group Meeting Transparencies (11/11/93)','Madaras','','','','','','','','',1993,11,11,2449303,0,0,0,0),(1984,'Can Exclusive Beauty Decays Be See at D0a?','Alvarez/Castilla-Valdez/Hoeneisen/ Ramirez','','','','','','','','',1993,11,30,2449322,0,0,0,0),(1985,'Muon Momentum Resolution from D0 Reco v10','Gerber/Quintas','','','','','','','','',1993,11,24,2449316,0,0,0,0),(1986,'B Physics in Run II at D0','Green, D.','','','','','','','','',1993,12,28,2449350,0,0,0,0),(1987,'The Minimal Supersymmetric Standard Model (transparencies from NewPhenom Group Meeting)','Baer','','','','','','','','',1993,11,12,2449304,0,0,0,0),(1988,'Inclusive b Quark Cross Section (D0 Collaboration Planery Session)','Bazizi','','','','','','','','',1993,11,11,2449303,0,0,0,0),(1989,'Search for the Top Quark in the Single Lepton + Jets Channel at D0(D0CONF-93-36)','Greenlee','','','','','','','','',1993,12,28,2449350,0,0,0,0),(1990,'Vertex Determination for Jets','Abbott','','','QCD','','','','$D0_PRI/1990/m_d0note_1990.pdf','',1993,12,1,2449323,2004,11,5,2453315),(1991,'PDFLIB: Nucleon, Pion and Photon Parton Density Functions and asCalculations User\'s Manual','Plothow-Besch','','','','','','','','',1993,12,28,2449350,0,0,0,0),(1992,'Inclusive Single Muon Production in D0 (D0CONF-93-37)','Maciel','','','','','','','','',1993,12,28,2449350,0,0,0,0),(1993,'Search for the Top Quark in the Electron-Electron and Electron-MuonChannels at D0 (D0CONF-93-38)','Fatyga','','','','','','','$D0_PRI/1993/m_1993_fatyga_kek.ps','',1993,12,3,2449325,2002,2,28,2452334),(1994,'Heavy Flavors in Jets','Green, D.','','','','','','','','',1993,12,28,2449350,0,0,0,0),(1995,'Measurement of the W and Z Production Cross Sections in theElectron Channel ','Yang','','','','','','','','',1993,9,24,2449255,0,0,0,0),(1996,'The Level 0 Trigger for the D0 Detector (Submitted to IEEE Trans.Nucl. Sci.; Presented at 1993 Nuclear Science Symposium) (D0CONF-94-1)','Bantly/Epstein/Fowler/Gao/Hlustick/Lanou/Nang/Partridge/ Wang/Xu','','','','','','','','',1994,1,27,2449380,0,0,0,0),(1997,'The Heavy Quark Tagging at the D0','Xu/Partidge','','','','','','','','',1993,10,20,2449281,0,0,0,0),(1998,'D0 W/Z Physics Group Meeting Transparencies (12/3/93)','n/a','','','','','','','','',1993,12,3,2449325,0,0,0,0),(1999,'Search for the Top Quark in pp Collisions at s=1.8 TeV (D0PUB-94-1)','Abachi, et. al.','','','','','','','','',1994,1,5,2449358,0,0,0,0),(2000,'Measurement of the W-g Couplings in the Muon Channel','Aihara/Choudhary/Ellison/Graf/ Grannis/Kelly/Klatchko/Lami/ Landsberg/Padley/Rijssenbeek/ Spadafora','','','','','','','','',1994,1,27,2449380,0,0,0,0),(2001,'Search for W Boson Pair Production with Dilepton Decay Modes atD-Zero','Diehl/Oshima/Johari','','','','','','','','',1993,12,28,2449350,0,0,0,0),(2002,'','n/a','','','','','','','','',0,0,0,0,0,0,0,0),(2003,'Transparencies from Upgrade Meeting (Collaboration Meeting November10-12, 1993)','Collaboration','','','','','','','','',1993,12,28,2449350,0,0,0,0),(2004,'Momentum and angular resolutions of the SAMUS spectrometer','Denisov, D./Eroshin/Podstavkov','','','','','','','','',1993,12,28,2449350,0,0,0,0),(2005,'','n/a','','','','','','','','',0,0,0,0,0,0,0,0),(2006,'Description of the SAMUS Alarms for run 1B','Bezzubov/Denisov,D.','','','','','','','','',1993,12,14,2449336,0,0,0,0),(2007,'A direct measurement of the Wg production in the electron channelat D0','Aihara, Choudhary, Ellison, Kelly, Landsberg, Spadafora','','','','','','','','',1995,9,18,2449979,0,0,0,0),(2008,'Fiber Ribbon Mounting and Test an Axial Mounting Procedure','Howell/Koltick/Schmitz/Cooper/ Crone/ Michael','','','','','','','','',1993,4,30,2449108,0,0,0,0),(2009,'Spatial Calibration for the D0 Cosmic Ray Fiber Tracker','Howell/Koltick/Cooper/Hinson/ Crone/Michael','','','','','','','','',1993,12,14,2449336,0,0,0,0),(2010,'Accuracy Requirements for the Construction of the D-ZeroScintillating Fiber Charged Particle Tracker','Koltick','','','','','','','','',1992,3,5,2448687,0,0,0,0),(2011,'Inserting Scanned Postscript Files into LATEX Documents','Heuring/Hirosky','','','','','','','','',1993,12,20,2449342,0,0,0,0),(2012,'Transparencies from the Upgrade General Meeting','Collaboration','','','','','','','','',1993,12,10,2449332,0,0,0,0),(2013,'D0 Upgrade Silicon Meeting 12/9/93','Lipton','','','','','','','','',1993,12,9,2449331,0,0,0,0),(2014,'Transparencies from Upgrade Simulation Meeting 12/9/93 includingsummary from General Meeting 12/10/93','n/a','','','','','','','','',1993,12,10,2449332,0,0,0,0),(2015,'The D0 Upgrade - Abstract (9th Topical Workshop onproton-antiproton Collider Physics, Tsukuba, Japan, Oct. 18-22, 1993)','Grunendahl','','','','','','','','',1993,12,28,2449350,0,0,0,0),(2016,'Searches for Right-Handed W Bosons','Goldschmidt','','','','','','','','',1993,12,28,2449350,0,0,0,0),(2017,'Top Production: Sensitivity to New Physics','Hill/Parke','','','','','','','','',1993,12,28,2449350,0,0,0,0),(2018,'D0 Pixel Array in Run II','Green, D.','','','','','','','','',1993,12,28,2449350,0,0,0,0),(2019,'Study of Associated Gauge Boson Production at D0: Wg Production -abstract (9th Topical Workshop on pp Collider Physics, Tsukuba, Japan, Oct.18-22, 1993).','Spadafora','','','','','','','','',1994,1,27,2449380,0,0,0,0),(2020,'Level 0 Raw Data Format','Partridge','','','','','','','','',1993,12,31,2449353,0,0,0,0),(2021,'Rapidity Gaps Between Jets in pp Collisions at s = 1.8 TeV( D0PUB-94-2)','Abachi, et. al','','','QCD','','','','','',1994,1,4,2449357,0,0,0,0),(2022,'Introduction to Programming Motif Applications using VUIT','Featherly','','','','','','','','',1993,12,31,2449353,0,0,0,0),(2023,'2-D and 3-D Display and Plotting of 3-D Magnetic Field Calculationfor Upgraded D0 Detector','Yamada/Ostiguy/Mesin','','','','','','','','',1994,1,7,2449360,0,0,0,0),(2024,'TPM Production Manager Operator\'s Manual and User\'s Guide','Denisenko,K.','','','','','','','$D0_PRI/2024/m_denisenko_2024.ps','',1994,1,7,2449360,2002,1,9,2452284),(2025,'Operation of the SAMUS gas recirculation system during SAMUScommissioning for collider Run Ib.','Denisov/Evdokimov','','','','','','','','',1994,1,27,2449380,0,0,0,0),(2026,'Minutes of the W/Z Physics Analysis Group Meeting, January 7, 1994','n/a','','','','','','','','',1994,1,7,2449360,0,0,0,0),(2027,'Global Fit to Two-Muon Events','Hoeneisen','','','','','','','','',1994,1,5,2449358,0,0,0,0),(2028,'Vertex Finding in Level2: Description of L2_Vert function andstudies of comparisions and resolutions for L2 CDC vertex finding andLevel0.','Fahland','','','','','','','','',1994,1,27,2449380,0,0,0,0),(2029,'Decay Backgrounds in Gluon Jet Heavy Flavor Evolution','Green, D.','','','','','','','','',1994,1,27,2449380,0,0,0,0),(2030,'Run 3 Meeting Transparencies - D0 Collaboration Meeting','n/a','','','','','','','','',1994,1,18,2449371,0,0,0,0),(2031,'Luminosity Calculations for D0','D0 Luminosity Group','','','','','','','','',1994,1,31,2449384,0,0,0,0),(2032,'ICD/Level Zero Laser Filter Wheel Electronics','Bagby/Sussex','','','','','','','','',1994,1,24,2449377,0,0,0,0),(2033,'Search for Supersymmetry and Leptoquark States (D0CONF-94-2)','White, J.','','','','','','','','',1994,1,27,2449380,0,0,0,0),(2034,'Copy of Academic Lectures','Green, D.','','','','','','','','',1994,1,27,2449380,0,0,0,0),(2035,'Analysis of tt -> e? Events using the H-matrix','Prosper/Raja','','','','','','','','',1994,10,14,2449640,0,0,0,0),(2036,'Estimating the Top Quark Mass with a Handful of Events','Prosper','','','','','','','','',1994,1,28,2449381,0,0,0,0),(2037,'The Top Quark Mass from Event 417','Prosper','','','','','','','','',1994,2,2,2449386,0,0,0,0),(2038,'Transparencies from the D0 Silicon Meeting','n/a','','','','','','','','',1994,1,14,2449367,0,0,0,0),(2039,'Simulation of the D0 Scintillating Fiber Trigger','Glenn','','','','','','','','',1994,1,31,2449384,0,0,0,0),(2040,'Calorimeter Depth and Dijet Leakage into the Gluino Signal','Green, D.','','','','','','','$D0_PRI/2040/m_d0note_2040.pdf','',1994,1,31,2449384,2004,11,5,2453315),(2041,'Materials from Global Fitting Meeting 1/20/94','n/a','','','','','','','','',1994,1,20,2449373,0,0,0,0),(2042,'The D0 VLPC Based Fiber Tracking Cosmic Ray Test Stand','Kim, C.L.','','','','','','','','',1994,2,1,2449385,0,0,0,0),(2043,'','Miettinen','','','','','','','','',0,0,0,0,0,0,0,0),(2044,'','Heintz','','','','','','','','',0,0,0,0,0,0,0,0),(2045,'','Madaras','','','','','','','','',0,0,0,0,0,0,0,0),(2046,'Description of the D0 DataBase Linker Prototype','Neal','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2047,'','Miettinen','','','','','','','','',0,0,0,0,0,0,0,0),(2048,'Vector Leptoquark Mass Limits','Norman','','','','','','','$D0_PRI/2048/m_2048_vect_lq.ps','',1994,2,9,2449393,2002,2,28,2452334),(2049,'Scintillation Counter Trigger Board (Technical description)','Baldin/Hansen/Li, R./Regan','','','','','','','','',1994,2,15,2449399,0,0,0,0),(2050,'Simulation of Effects of Radiative W and Z Electron Decays','Mincer','','','','','','','','',1994,2,23,2449407,0,0,0,0),(2051,'Level2 Electron Et Efficiency Turnon in the Multiple InteractionEnvironment','Tartaglia','','','','','','','','',1994,2,10,2449394,0,0,0,0),(2052,'Resolution Bias in Jet Response Measurement','Kehoe','','','','','','','$D0_PRI/2052/m_note2052.ps','',1994,2,8,2449392,2004,11,5,2453315),(2053,'Resolution Bias in Jet Response Measurement (elaboration of D0 Note2052)','Kehoe','','','QCD','','','','$D0_PRI/2053/m_d0note_2053.pdf','',1994,11,17,2449674,2004,11,5,2453315),(2054,'B Tagging and Electron Identification','D0 Collaboration','','','','','','','','',1994,2,12,2449396,0,0,0,0),(2055,'Minutes of the WZ Meeting 1/20/94','Rijssenbeek','','','','','','','','',1994,1,20,2449373,0,0,0,0),(2056,'Effects of Light on Scintillating Fibers Containing 3-Hydroxflavone(presented at the workshop on Scintillating Fiber Detectors, Notre Dame,Oct. 24-28, 1993) (D0CONF-94-3)','Chung/Margulies','','','','','','','','',1994,2,1,2449385,0,0,0,0),(2057,'Effects of Irradiation on Kuraray Multiclad Fibers (Presented atthe workshop on Scintillating Fiber Detectors, Notre Dame, Oct. 24-28,1993) (D0CONF-94-4)','Margulies/Chung/Bross/ Kim, C./Pla-DalmauA.','','','','','','','','',1994,2,1,2449385,0,0,0,0),(2058,'Contamination in QDC-MDST Files Version 10','Elvira','','','QCD','','','','','',1994,2,17,2449401,0,0,0,0),(2059,'Spaceframe Design and System Assembly for the New Silicon Tracker(Version 2.0)','Heinson','','','','','','','','',1994,2,10,2449394,0,0,0,0),(2060,'SAMUS EXAMINE2 program','Denisov D./Glebov/Kozelov/Podstavkov','','','','','','','','',1994,2,6,2449390,0,0,0,0),(2061,'Meson decays in mass spectrom of EM cluster pairs','Madden/Linn','','','','','','','','',1994,3,2,2449414,0,0,0,0),(2062,'Punchthrough in the Central Calorimeter','Jaques','','','','','','','$D0_PRI/2062/m_note2062.ps','',1994,2,14,2449398,2004,11,5,2453315),(2063,'W-Bosons at the Tevatron','Yuan','','','','','','','','',1994,2,4,2449388,0,0,0,0),(2064,'Response of D-Zero U-LAr Calorimeters at Low Energies and theEffect of Oxygen Contamination on Observed Signals (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Hirosky','','','','','','','','',1994,1,31,2449384,0,0,0,0),(2065,'An Introduction to Supersymmetry and Supersymmetry Phenomenology(presented at the Mt. Sorak Symposium on the The Standard and Beyond, Mt.Sorak, Korea, Aug. 1990)','Wightman/Baer','','','','','','','','',1990,12,31,2448257,0,0,0,0),(2066,'The MTC Package (Muon Tracking in the D0 Calorimeter)','Gallas','','','MUON','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/2066/M_D0NOTE_2066.PS','',1994,4,24,2449467,2004,11,5,2453315),(2067,'Search for high mass W+jet states (presented at GeneralCollaboration Meeting)','Para/Genser, K./Brock/Klatchko/ Li-Demarteau','','','','','','','','',1994,1,20,2449373,0,0,0,0),(2068,'Testing MTC (Muon Tracking in the Calorimeter) with Run 1A physicsdata samples','Zieminska/Gallas/Hu/Demina/Alvarez/Balderston','','','','','','','','',1994,2,10,2449394,0,0,0,0),(2069,'D0 Upgrade Progress (PAC Presentation)','Christenson','','','','','','','','',1994,2,12,2449396,0,0,0,0),(2070,'D0 Upgrade Silicon Meeting 2/16/94','n/a','','','','','','','','',1994,2,16,2449400,0,0,0,0),(2071,'Some Recent Experimental Results from Fermilab (presented at theInternational School of Sub-nuclear Physics, Erice, Trapani, Sicily, Italy,July 1993) (D0CONF-94-5)','Montgomery','','','','','','','','',1994,2,15,2449399,0,0,0,0),(2072,'Main Ring Veto Counters for Run 1b','Amos','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2073,'Bc Decyas','Gomez/Negret/Zanabria','','','','','','','','',1994,2,28,2449412,0,0,0,0),(2074,'Impact of Long Range Plans on the Medium Term Hadron ColliderProgram (HEPAP Town Meeting at LBL)','Heinson','','','','','','','','',1994,2,28,2449412,0,0,0,0),(2075,'Full Specification for D0 Silicon Detectors (Version 1.2)','Ellison','','','','','','','','',1994,1,19,2449372,0,0,0,0),(2076,'Muon Scintillator Track Matching Program (Document for MSCINTroutine)','Taketani','','','','','','','','',1994,3,1,2449413,0,0,0,0),(2077,'The D0 Test Beam Transporter and the Transporter Control Systems','Borders','','','','','','','','',1994,3,10,2449422,0,0,0,0),(2078,'Structure of the D0 Particle LIbrary and How it is Used to SimulateD0 Jets','Borders','','','QCD','','','','','',1994,3,10,2449422,0,0,0,0),(2079,'Optimizing Jet Energy Resolution with Jets Simulated from Test-BeamData','Borders','','','QCD','','','','$D0_PRI/2079/m_note2079.ps','',1994,3,10,2449422,2004,11,5,2453315),(2080,'Assembly Alignment Constraints for the D0 Silicon Vertex DetectorBarrels','Hobbs','','','','','','','','',1994,3,21,2449433,0,0,0,0),(2081,'ICD Laser Calibration Studies (Run Ia Laser Data)','Stewart','','','','','','','','',1994,4,25,2449468,0,0,0,0),(2082,'Search for a non-minimal Higgs boson produced in the reaction e+e--hz*','The ALEPH Collaboration','','','','','','','','',1994,4,5,2449448,0,0,0,0),(2083,'Search for a scalar top quark using the OPAL detector','Asai/Kawagoe/Komamiya/Orito','','','','','','','','',1994,3,4,2449416,0,0,0,0),(2084,'New Particle and SUSY Searches (CDF & D0)','Thuile/Lueking','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2085,'Limits on WWa anonalous couplings from the Pt (a) spectrum(Collaboration meeting)','Landsberg','','','','','','','','',1994,3,24,2449436,0,0,0,0),(2086,'OCD results from D0 (Seminar, Fermilab March 1994)','Weerts','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2087,'Transparencies from D0 Silicon Meeting Fermilab 3/21 - 22/1994','n/a','','','','','','','','',1994,3,21,2449433,0,0,0,0),(2088,'Correction of MET','Astur','','','QCD','','','','','',1994,3,21,2449433,0,0,0,0),(2089,'Energy Scale Corrections','Astur','','','QCD','','','','','',1994,3,21,2449433,0,0,0,0),(2090,'Report #16 on the bottom collider detector: Progress on a fastimaging ultra-violet detector with a CsI photocathode','Hoeneisen','','','','','','','','',1991,10,21,2448551,0,0,0,0),(2091,'Results from the samus \'hardware\' special runs in the run IB','Denisov D/Efimov/Evdokimov','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2092,'Momentum and angular resolutions of the Samus spectrometer withDORECO version 11','Efimov','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2093,'Momentum and angular resolutions of the SAMUS spectrometer withDORECO version 12','Efimov A.','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2094,'Search for luminosity monitor backgrounds','Bantly/Partridge','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2095,'High PT Collider Physics (presented at Fermilab Annual DOE Review)','Heintz','','','','','','','','',1994,3,30,2449442,0,0,0,0),(2096,'Missing Energy Induced by Thin Hadron Calorimetry','Green D.','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2097,'Inclusive b Production at CDF and D0 (29th Rencontres de Monriond)','Bazizi','','','','','','','','',1994,3,26,2449438,0,0,0,0),(2098,'Estimation of the QCD background to W-eu+jets','Chopra/Raja','','','','','','','','',1994,4,4,2449447,0,0,0,0),(2099,'Cross Section Measurements of W and Z to Muons at D0','Gerber/Quintas/Wood','','','','','','','$D0_PRI/2099/m_2099.ps','',1994,4,6,2449449,2001,3,14,2451983),(2100,'Electroweak and b-Physics at the Tevatron Collider (22 INSsymposium, Tokyo, March 8-10, 1994) (D0CONF-94-7)','Hara','','','','','','','','',1994,3,10,2449422,0,0,0,0),(2101,'','Green, D.','','','','','','','','',1994,4,6,2449449,0,0,0,0),(2102,'The Wide Angle Muon Online Calibration System','Cummings/Green, D.','','','','','','','','',1994,4,6,2449449,0,0,0,0),(2103,'Muon Offline Calibration Procedures for To and DT Constants in run1A','Quintas/Wood','','','','','','','','',1994,3,22,2449434,0,0,0,0),(2104,'Time-to-Distance Relationship for D0 Muon Drift Tubes','Haggerty/Markeloff/Mueller/Shao','','','','','','','','',1994,4,8,2449451,0,0,0,0),(2105,'Determination of QCD backgrounds in e+jets events','S.Chopra/M. Narain','','','','','','','','',1994,5,1,2449474,0,0,0,0),(2106,'Random Charged Track Overlap Probability in the Central and ForwardDirect Photon Samples','Womersley','','','','','','','','',1994,3,30,2449442,0,0,0,0),(2107,'Top Triggers for Run 1B','Narain','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2108,'Issues in Determining the Mass of a Very Heavy Quark (MoriondHadron Conference)','Wu','','','','','','','','',1994,3,25,2449437,0,0,0,0),(2109,'Top Mass From LEP & SLC Electroweak Measurements','Jacobsen','','','','','','','','',1994,3,25,2449437,0,0,0,0),(2110,'The Search for the Top Quark at D0 (XXIXth Rencontres de MoriondMeribel, Savoie - France)','Cochran','','','','','','','','',1994,3,25,2449437,0,0,0,0),(2111,'D-Zero Results on QCD and on the Search For Top (presented atRencontres du Vietnam, Hanoi, Vietnam, December 13-18, 1993) (D0CONF-93-39)','Ferbel','','','','','','','','',1993,12,18,2449340,0,0,0,0),(2112,'Measurement of W Mass and Wg Couplings at D0 (29th Rencontres deMoriond Merible, Savoie, France, March 12-19, 1994)','Choudhary','','','','','','','','',1994,3,19,2449431,0,0,0,0),(2113,'Possible Muon Acceptances in Run II','Hedin/Johns','','','','','','','','',1994,5,25,2449498,0,0,0,0),(2114,'Estimated cross section for high mass top','Chakraborty/Protopopescu','','','','','','','','',1994,4,15,2449458,0,0,0,0),(2115,'Combining W Mass Measurements','M. Demarteau/H/ Frisch/U.Heintz/R.Keup/S. Saltzberg','','','','','','','','',1994,5,5,2449478,0,0,0,0),(2116,'A Leading Order Estimate of the Relative Contributions of Quarksand Gluons to a Triple Differential Di-Jet Cross Section','Feher/Mooney','','','QCD','','','','','',1994,4,19,2449462,0,0,0,0),(2117,'The Level 1.5 Calorimeter Trigger for D-Zero','Edmunds/Gross/Laurens','','','','','','','','',1994,4,21,2449464,0,0,0,0),(2118,'Search for Top in em Events with the D0 Detector','Kehoe','','','','','','','','',1994,4,18,2449461,0,0,0,0),(2119,'D0 Experiment Top Quark Search','D0 Collaboration','','','','','','','','',1994,4,26,2449469,0,0,0,0),(2120,'A calculation of the probability of accomodating the CDF top signalin the lepton + jets channel','R. Raja','','','','','','','','',1994,5,13,2449486,0,0,0,0),(2121,'Testing CTool Clustering with Isolated J/u-e+e-in the D0 CCEM','Klatchko/Youssef','','','','','','','','',1994,4,27,2449470,0,0,0,0),(2122,'','Raja','','','','','','','','',1994,4,28,2449471,0,0,0,0),(2123,'Jet Pairs With Large Relative Rapidity in pp Collisions at s=1.8TEV','WJS','','','QCD','','','','','',1994,4,15,2449458,0,0,0,0),(2124,'D0 Upgrade General Meeting Slides','Yarema/Blazey/Qian/Stoker/Park/Christenson','','','','','','','','',1994,4,29,2449472,0,0,0,0),(2125,'B Physics Results from D0','K. Johns','','','','','','','','',1994,5,1,2449474,0,0,0,0),(2126,'','Candor','','','','','','','','',1994,5,4,2449477,0,0,0,0),(2127,'Muon Wide Angle Chamber Efficiencies in Run Ia','D. Hedin/P/Quintas/D/ Wood','','','','','','','','',1994,5,6,2449479,0,0,0,0),(2128,'WZ APS Presentations','I. Adam/E. Flattum/C. Gerber/P. Grudberg/A.Goldschmidt/J. Jiang/H. Johari/M. Kelly/G. Landsberg/H. Li/J. Yang','','','','','','','','',1994,4,22,2449465,0,0,0,0),(2129,'An Expression of Interest (EoI) Based on the D0 Detector for run 3at the Fermilab Tevatron','Abolins/Amos/Baden/Blazey/Boehnlein/Borcherding/Brock/Christenson/Cutts/De/Denisov/Fisk/Gibbard/Gobbi/Goldschmidt/Gordon/Graf/Grannis/Green/Guiterrez/Hadley/Hedin/Hoeneisen/Johns/Johnson/Kwan/Kunori/Lipton/Luehering/Mani/Mishra/Montgomery/Para.Pellet/Piekarz/Protopopescu/Qian/Raja/Rijssenbek/Ru','','','','','','','','',1994,5,5,2449478,0,0,0,0),(2130,'Using Kalman\'s Method for SAMUS Track Fitting','I. Mandrichenko','','','','','','','','',1994,5,11,2449484,0,0,0,0),(2131,'Upgrade of SAMUS Level 2 filter for run Ib','Balderston/Denisov,D./Efimov/Volkov','','','','','','','','',1994,5,10,2449483,0,0,0,0),(2132,'Efficiency of J/Psi detection in the SAMUS spectrometer of the D0detector','Denisov, D. / Efimov/Gutnikov/ Kozelov/Volkov','','','','','','','','',1994,4,30,2449473,0,0,0,0),(2133,'Study of SAMUS-FDC Track Matching','Kozlovsky','','','','','','','','',1994,5,10,2449483,0,0,0,0),(2134,'Overview of Proposed Upgrades to the D0 Trigger System','M. Johnson','','','','','','','','',1994,5,1,2449474,0,0,0,0),(2135,'Calculation of Jet Event Trigger Efficiencies','R. V. Astur/F. Nang','','','QCD','','','','','',1994,5,10,2449483,0,0,0,0),(2136,'Recent QCD Results from CDF and D0 -- Abstract (29th Recontres deMoriond)','Qian','','','','','','','','',1994,5,24,2449497,0,0,0,0),(2137,'The Central Preshower Detector for the D0 Run II Upgrade','Central Preshower Group','','','','','','','','',1994,5,24,2449497,0,0,0,0),(2138,'Search for the Top Quark at D0 (Madison Symposium April 11-13,1994)','A. Heinson','','','','','','','','',1994,4,13,2449456,0,0,0,0),(2139,'Electronics Design Specification for the D0 Upgrade ScintillatingFiber Detector with a Level 1.0 Trigger','SciFi Design Group','','','','','PUBLIC','','$D0_PUB/2139/m_note2139.ps','',1994,7,19,2449553,2002,2,28,2452334),(2140,'Muon Momentum Determination','Gerber/Haggerty/Quintas/Smart/Taketani/Wood/Yamada/Cummings/Yoshikawa/Zieminska/Varnes/ Yasuda/Green, J./Hedin/Markeloff/Lee','','','','','','','','',1994,10,22,2449648,0,0,0,0),(2141,'W+jets background to tt - e + jets + soft m','J. Butler/ H.Greenlee/R. Partridge/H. Xu','','','','','','','','',1994,3,10,2449422,0,0,0,0),(2142,'Kalman fit package','Mandrinchenko','','','','','','','','',1994,5,19,2449492,0,0,0,0),(2143,'Evidence for Top Quark Production in pp Collisions at s=1.8 TeV(presented at UD0)','Conteras','','','','','','','','',1994,5,19,2449492,0,0,0,0),(2144,'The TOP_LEPTONS Analysis Package (Version 6.01)','Wimpenny','','','','','','','','',1994,5,20,2449493,0,0,0,0),(2145,'Possible Hint of Top -> e + missing Et + jets','Miettinen/Eppley','','','','','','','','',1994,5,23,2449496,0,0,0,0),(2146,'More about CTool Clustering with Full Isajet J/u -> e+e- in theEntire D0 EM-Calorimeter','Klatchko/Youssef','','','','','','','','',1994,5,26,2449499,0,0,0,0),(2147,'The D0 Level 1.5 Calorimeter Trigger','Linnemann','','','','','','','','',1994,5,25,2449498,0,0,0,0),(2148,'Measuring the Top Mass using Electron plus Jet Events','Krzywdzinski/Prosper','','','','','','','$D0_PRI/2148/m_note2148.ps','',1994,5,27,2449500,2002,3,1,2452335),(2149,'(D0CONF-94-8)','','','','','','','','','',1994,5,1,2449474,0,0,0,0),(2150,'QCD background to W (eu) + jets','Xu/Partridge','','','','','','','','',1994,3,22,2449434,0,0,0,0),(2151,'Review of SUSY Searches at D0 (Collaboration Meeting)','Jung','','','','','','','','',1994,6,3,2449507,0,0,0,0),(2152,'Status of Single m Analyses (Collaboration Meeting)','Bazizi','','','','','','','','',1994,6,3,2449507,0,0,0,0),(2153,'An elegant method for proving the integral representation forlimited Poisson sums','Kozlovsky','','','','','','','','',1994,6,3,2449507,0,0,0,0),(2154,'Jet and Direct Photon Production at D0 and CDF (presented at LesRencontres de Physique de la Vallee d\'Aosta, La Thuila, Italy, March 6-12,1994) (D0CONF-94-9)','Pope','','','QCD','','','','','',1994,6,12,2449516,0,0,0,0),(2155,'Heavy Flavors in Jets at D0 (APS)','Balderston','','','','','','','','',1994,4,22,2449465,0,0,0,0),(2156,'Muon T0 Calibration Using Reconstructed Tracks','Markeloff','','','','','','','','',1994,6,1,2449505,0,0,0,0),(2157,'Data Organization, Management and Serving in D0 Collider Experiment','Genser, K.','','','','','','','','',1994,6,1,2449505,0,0,0,0),(2158,'b-quark cross section from events with two muons','Hoeneisen','','','','','','','','',1994,5,30,2449503,0,0,0,0),(2159,'Director\'s Review of D0 Project, May 27-28, 1994.','n/a','','','','','','','','',1994,5,28,2449501,0,0,0,0),(2160,'Measurement of the W Boson Mass in Proton-Antiproton Collisions ats=1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Zhu','','','','','','','','',1994,6,7,2449511,0,0,0,0),(2161,'Prospect of measuring CP Violation in D0 Detector (5th Conf. on theIntersections of Particle and Nuclear Physics, St. Petersburg, FL 5/31 -6/6/94)','Mishra','','','','','','','','',1994,6,7,2449511,0,0,0,0),(2162,'Electroweak Physics at D0 and CDF (D0CONF-94-10)','Ducos','','','','','','','','',1994,6,20,2449524,0,0,0,0),(2163,'QCD Physics with the KT Jet Algorithm','Astur/Frame/Snihur/Weerts','','','QCD','','','','','',1994,6,20,2449524,0,0,0,0),(2164,'Useful Kinematic Formulas for W Decay','Forden','','','','','','','','',1994,6,20,2449524,0,0,0,0),(2165,'Recent QCD Results from D0 (D0CONF-94-11)','Forden','','','','','','','','',1994,6,20,2449524,0,0,0,0),(2166,'SAMUS Kalman Fit and Doreco. Current Status and Future Plans.','Mandrichenko','','','','','','','','',1994,6,13,2449517,0,0,0,0),(2167,'Conceptual Design of A 2 TESLA Superconducting Solenoid for the Fermilab D0 Detector Upgrade','Brzezniak/Fast/Krempetz/Kristalinski/Lee/Markley/Mesin/Orr/Rucinski/Sakla/Schmitt/Smith/Squires/Stanek/Stefanik/Visser/Wands/Yamada','','','','','','','$D0_PRI/2167/m_report_title.pdf','',1994,5,13,2449486,1998,4,28,2450932),(2168,'Summary of B Physics Analyses (D0 Workshop at Northwestern Univ.6/12-14/1994)','Bazizi','','','','','','','','',1994,6,20,2449524,0,0,0,0),(2169,'D0 Silicon Tracker Technical Design Report','D0 UpgradeCollaboration','','','','','','','','',1994,7,1,2449535,0,0,0,0),(2170,'','Merritt','','','','','','','','',1994,6,20,2449524,0,0,0,0),(2171,'Inclusive Dijet Triple Differential Cross Section Measurement withthe D0 Detector d3 s/ (dh1dh2dET) (presented at VIth Rencontres de Blois,Chateau de Blois, France, June 1994)','Feher','','','','','','','','',1994,6,20,2449524,0,0,0,0),(2172,'Review of the Fermilab Fixed Target Program','Rameika','','','','','','','','',1994,5,19,2449492,0,0,0,0),(2173,'Jet h Bias and Resolution','Elvira','','','QCD','','','','$D0_PRI/2173/m_note2173.pdf','',1994,6,8,2449512,2002,9,20,2452538),(2174,'A Study of triggering on the ET at level 1 in run 1A','Boehnlein','','','','','','','','',1994,6,18,2449522,0,0,0,0),(2175,'D0 Workshop Plenary Session Trasparencies (Northwestern Univ. June12-14, 1994)','D0 Collaboration','','','','','','','','',1994,6,20,2449524,0,0,0,0),(2176,'Measurement of Jet Shapes from Transverse Energy Flow','Abbott/Streets','','','QCD','','','','$D0_PRI/2176/m_d0note_2176.ps','',1994,8,24,2449589,1998,9,8,2451065),(2177,'QCD Summary of Northwestern University Workshop','n/a','','','','','','','','',1994,7,11,2449545,0,0,0,0),(2178,'Report of the Review Panel D0 Upgrade - Director\'s Technical,Management Cost and Schedule Review','n/a','','','','','','','','',1994,6,16,2449520,0,0,0,0),(2179,'Transparency copies of Upgrade Session at D0 Collaboration Meeting,6/2/94','n/a','','','','','','','','',1994,6,2,2449506,0,0,0,0),(2180,'B Tagging Fraction from Multijet Data','Greenlee','','','','','','','','',1994,6,23,2449527,0,0,0,0),(2181,'High Luminosity Site-Filler of 5 TeV - 5 TeV Pbar-P','Yamada','','','','','','','','',1994,3,31,2449443,0,0,0,0),(2182,'','Yamada','','','','','','','','',0,0,0,0,0,0,0,0),(2183,'The Research of Forward Muons (SAMUS region)','Kozlovsky','','','','','','','','',1994,7,11,2449545,0,0,0,0),(2184,'Supersymmetry at the DiTevatron','Kamon/Lopez/McIntrye/White, J.','','','','','','','','',1994,6,1,2449505,0,0,0,0),(2185,'Iarocci\'s revisited','Park, Y.','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2186,'Change to the D0 Luminosity Monitor Constant','D0 LuminosityWorking Group','','','','','','','','',1994,6,30,2449534,0,0,0,0),(2187,'A Search for Squarks and Gluinos in pp Collisions at (sqrt) s=1.8TeV with the D0 Detector. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Paterno, M.','','','','','','','','',1994,5,31,2449504,0,0,0,0),(2188,'Topological Quark/Gluon Jet Tagging','Grannis','','','QCD','','','','','',1994,7,15,2449549,0,0,0,0),(2189,'Search for Truth in the e? channel at D0. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Cochran','','','','','','','','',1993,12,31,2449353,0,0,0,0),(2190,'Search for the Top Quark (presented at XXVIIth InternationalConference on High Energy Physics, Glasgow, July 1994)','Wimpenny','','','','','','','','',1994,7,11,2449545,0,0,0,0),(2191,'TRD Calibration','Chevalier, Ducros','','','','','','','','',1994,7,11,2449545,0,0,0,0),(2192,'On Extracting the Gluon Structure Function from Prompt Muons in bbEvents','Green, D.','','','','','','','','',1994,7,1,2449535,0,0,0,0),(2193,'Dimuons in Jets in Run Ib','Green, D.','','','','','','','','',1994,7,8,2449542,0,0,0,0),(2194,'B-Physics Results from D0 (D0CONF-94-12)','Johns','','','','','','','','',1994,7,11,2449545,0,0,0,0),(2195,'The MTCL2 Utility - Muon Tracking in the D0 Calorimeter in TriggerLevel 2','Gallas/Fahland','','','','','','','$D0_PRI/2195/M_D0NOTE_2195.PS;1','',1995,3,20,2449797,1998,10,18,2451105),(2196,'Status of the D0 Top Search (Transparencies at Physics in CollisionConference)','Li-Demarteau','','','','','','','','',1994,6,15,2449519,0,0,0,0),(2197,'Efficiencies of the Standard Jet Cuts for Cone Sizes: 0.3, 0.5, 0.7','Bhattacharjee/Elvira/Blazey ','','','QCD','','','','','',1994,7,15,2449549,0,0,0,0),(2198,'Silicon Detector Testing (Minutes of the April 26, 1994 meeting)','n/a','','','','','','','','',1994,4,26,2449469,0,0,0,0),(2199,'W? Boson - Jet Correlations in PP Collisions at (sqrt) s = 1.8TeV/c2 (D0CONF-94-13)','Forden','','','','','','','','',1994,8,1,2449566,0,0,0,0),(2200,'Inclusive b-Quark Production at CDF and D0 (Presented at LesRencontroes de Physique de la Vallee d\'Aosta La Thuile Aosta Valley, Italy,March 6-12, 1994) (D0CONF-94-14)','Zieminski, A.','','','','','','','','',1994,3,12,2449424,0,0,0,0),(2201,'Use of Plastic Optical Fibers for Charged Particle Tracking in HighEnergy Physics (submitted to the proceedings of the spring 1994 MRSmeeting) (D0CONF-94-15)','Wayne','','','','','','','','',1994,8,1,2449566,0,0,0,0),(2202,'The D0 Tracker Upgrade and Projections for B Physics (submitted tothe proceedings to Beauty 94) (D0CONF-94-16)','Wayne','','','','','','','','',1994,8,1,2449566,0,0,0,0),(2203,'Trilinear Vector Boson Couplings at D0 (\"Physics doesn\'t stop:recent developments in Phenomenology\", Univ. of WI, Madison, April 11-13,1994)','Lami','','','','','','','','',1994,4,13,2449456,0,0,0,0),(2204,'MU_SMEAR Studies of Muons in tt Events','Greenlee','','','','','','','','',1994,7,20,2449554,0,0,0,0),(2205,'Top Mass Likelihood Analysis at D0 (Madison Symposium, Madison, WI)','Bantly','','','','','','','','',1994,4,11,2449454,0,0,0,0),(2206,'','Xu','','','','','','','','',0,0,0,0,0,0,0,0),(2207,'A High Luminosity, 2x2 TeV Collider in the Tevatron Tunnel','Siemann/Jackson','','','','','','','','',1994,7,15,2449549,0,0,0,0),(2208,'Supersymmetry at Fermilab','Lopez','','','','','','','','',1994,7,21,2449555,0,0,0,0),(2209,'Reconstruction ?? Decays in the D0 Detector','Heintz','','','','','','','','',1994,7,23,2449557,0,0,0,0),(2210,'On the Kinematics of b -->B-->D*?v Decays','Green, D.','','','','','','','','',1994,6,29,2449533,0,0,0,0),(2211,'A Study of the Effects of the CAFIX Energy Scale Corrections','Joffee-Minor/Astur','','','QCD','','','','$D0_PRI/2211/m_note2211.ps','',1994,7,26,2449560,2002,2,28,2452334),(2212,'D0 Upgrade Trigger Overview, October 1994','Blazey','','','','','','','','',1994,10,12,2449638,0,0,0,0),(2213,'Proposal for Central Muon A-Layer Scintillator Trigger Counters','Diehl/Eno/Gomez/Hadley/Ito/ Lyon, A./Thompson, J.','','','','','','','','',1995,1,3,2449721,0,0,0,0),(2214,'Final Results for Run 1A: Cross section measurements of W and Z tomuons at D0','Gerber/Quintas/Wood','','','','','','','$D0_PRI/2214/m_note2214.ps','',1994,7,27,2449561,2002,3,1,2452335),(2215,'The Doomsday Study of QCD Flakes for Wg in RECO 11','Kelly','','','','','','','','',1994,7,27,2449561,0,0,0,0),(2216,'Measurement of the two Jet Triple Differential Cross Section atTevatron (University of D0)','Glover','','','QCD','','','','','',1994,7,28,2449562,0,0,0,0),(2217,'QCD with D0 at the Tevatron (Status report for the DPF QCD longrange planning working group)','Weerts','','','','','','','','',1994,4,8,2449451,0,0,0,0),(2218,'Search for Top Production in Electron+Jets+Muon Tag Channel (DPF\'94)','Cobau','','','','','','','','',1994,8,5,2449570,0,0,0,0),(2219,'Optimization of Jet Energy Resolution and Response of the D0Detector. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Borders','','','QCD','','','','','',1994,3,1,2449413,0,0,0,0),(2220,'Search for the Top Quark using Multivariate Analysis Techniques(DPF \'94)','Bhat','','','','','','','','',1994,8,2,2449567,0,0,0,0),(2221,'B - B mixing: pieces of a puzzle','Hoeneisen','','','','','','','','',1994,7,25,2449559,0,0,0,0),(2222,'Electroweak Physics from the Tevatron (Conference on RadiativeCorrections: Status and Outlook, Gatlinburg, TN, June 1994)','Nodulman','','','','','','','','',1994,6,1,2449505,0,0,0,0),(2223,'Preliminary Study of Dimuons in Jets','Green, D.','','','','','','','','',1994,8,1,2449566,0,0,0,0),(2224,'Search for First and Second Generation Leptoquarks at D0 (DPF \'94)(D0CONF-94-17)','Norman','','','','','','','$D0_PRI/2224/m_2224_dpf94_proc2.ps','',1994,9,2,2449598,2002,2,28,2452334),(2225,'Kinematic Fitting of the Z -> ee and Z-> ?? Events','Bhat','','','','','','','','',1994,10,3,2449629,0,0,0,0),(2226,'Search for the Top Quark using Multivariate Analysis Techniques(DPF\'94) (D0CONF-94-22)','Bhat','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2227,'An H-matrix study of the tt -> e ? channel','Beri/Bhat/Raja/Prosper','','','','','','','','',1994,9,23,2449619,0,0,0,0),(2228,'W Mass Measurements from D0 and CDF Experiments at TeVatron (ICHEP\'94 Glasgow)','Jung','','','','','','','','',1994,7,21,2449555,0,0,0,0),(2229,'Search for the Top Quark','Grannis','','','','','','','','',1994,7,25,2449559,0,0,0,0),(2230,'Searching for High-Mass Top in the Channel tt -> e? using NeuralNetworks','Beri/Prosper/Bhat','','','','','','','','',1994,8,29,2449594,0,0,0,0),(2231,'A Simple Method to Measure the Top Mass using Electron plus JetEvents','Krzywdzinski/Prosper','','','','','','','$D0_PRI/2231/m_note2231.ps','',1994,8,31,2449596,2002,7,1,2452457),(2232,'Inclusive Muon and B-Quark Cross Section at D0 (DPF\'94) (D0CONF-94-23)','Alves','','','','','','','$D0_PRI/2232/m_note2232.ps','',1994,9,2,2449598,2002,8,28,2452515),(2233,'D0 Upgrade General Meeting (Transparencies) 7/15/94','Collaboration','','','','','','','','',1994,7,15,2449549,0,0,0,0),(2234,'Measurement of the W Mass at D0 (DPF \'94) (D0CONF-94-24)','Mincer','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2235,'Calorimeter Electronics for the D0 Upgrade (DPF \'94) (D0CONF-94-25)','Kourlas','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2236,'Search for the Top Quark at D0','Butler','','','','','','','','',1994,8,12,2449577,0,0,0,0),(2237,'U of D0: Glasgow conference report on: Solar Neutrions; AtmosphericNeutrinos; Oscillations; and LHC Status','Fisk','','','','','','','','',1994,8,11,2449576,0,0,0,0),(2238,'Effects of stress and strain on scintillating and clear fibers(presented at the 1994 SPIE International Symposium, July 22-29, San Diego,CA) (D0CONF-94-26)','Chung/Margulies','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2239,'Fabrication and testing of clear lightguide fiber bundles for theD-Zero prototype fiber tracker cosmic-ray test (presented at the 1994 SPIEInternational Symposium, July 22-29, San Diego, CA) (D0CONF-94-27)','Margulies/Chung','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2240,'Probing Color Coherency Using High pT W Events at the TEVATRON(D0CONF-94-28)','Forden','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2241,'The D0 Level 1 Trigger Calibration Run 1B','Hahn/Owen/Streets','','','','','','','$D0_PRI/2241/m_note2241.ps','',1994,8,18,2449583,2002,8,28,2452515),(2242,'Preshower Trigger Simulations','Foster','','','','','','','','',1994,8,18,2449583,0,0,0,0),(2243,'Rapidity Gaps Between Jets at D0 (DPF \'94) (D0CONF-94-29)','May','','','QCD','','','','','',1994,8,6,2449571,0,0,0,0),(2244,'','Smith','','','','','','','','',0,0,0,0,0,0,0,0),(2245,'','Smith','','','','','','','','',0,0,0,0,0,0,0,0),(2246,'Measurement of B? -- B? Mixing using Dimuons at D0 (D0CONF-94-30)','James, E.','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2247,'Smearing Correction to the Jet Cross Sections','Elvira/Blazey/Bhattacharjee','','','QCD','','','','','',1994,8,18,2449583,0,0,0,0),(2248,'Small Angle Muon System for the D0 Detector at Fermilab (DPF \'94)','Denisov, D.','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2249,'Measurement of the W/Z PT Distributions at the DZero Experiment(transparencies at DPF \'94)','Jiang','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2250,'C-Tagging of Jets from W decays','Yamada','','','','','','','','',1994,9,14,2449610,0,0,0,0),(2251,'What\'s New in Level 2: Changes in Muon Code with Version 7','Quintas/Fortner/Markeloff','','','','','','','','',1994,8,24,2449589,0,0,0,0),(2252,'Search for Supersymmetric W1 and Z2 states using the D0 Detector(DPF \'94) (D0CONF-94-32)','Blessing','','','','','','','$D0_PRI/2252/m_note2522.ps','',1994,9,2,2449598,2002,8,28,2452515),(2253,'Measurement of the Strong Coupling Constant (as) using W + Jetsprocesses in the D0 Detector (DPF \'94) (D0CONF-94-33)','Kotcher','','','QCD','','','','','',1994,9,2,2449598,0,0,0,0),(2254,'Search for Squarks and Gluinos in D0 (DPF \'94) (D0CONF-94-34)','Claes','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2255,'Measurement of the Triple Differential Inclusive Dijet CrossSection, d3s/dETdh1dh2 in P Pbar Collisions at (sqrt) s = 1.8 TEV (DPF \'94)(D0CONF-94-35)','Nang','','','QCD','','','','','',1994,9,2,2449598,0,0,0,0),(2256,'Status of VSB (VME Subsystem Bus) Tests','Li, YueKuan/Buchholz/Tilden','','','','','','','','',1994,8,22,2449587,0,0,0,0),(2257,'Soft gluon resummation and the top quark production rate at theTevatron','Laenen (with Smith, J./Van Neery)','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2258,'Search for Top Quark with D0 Detector in Dilepton Channel (DPF \'94)','Genser, K.','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2259,'Jet Production at Large Rapidity Intervals (DPF \'94) (D0CONF-94-37)','Heuring','','','QCD','','','','','',1994,9,2,2449598,0,0,0,0),(2260,'A Search for tt -> ET + jets signature in p pbar collisions at(sqrt) s = 1.8 TeV with the D0 Detector (DPF \'94) (D0CONF-94-38)','Chakraborty','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2261,'A Study of the Inclusive Jet Cross-Section as a Function of JetCone Size with the D0 Detector (DPF \'94) (D0CONF-94-39)','Bhattacharjee','','','QCD','','','','','',1994,9,2,2449598,0,0,0,0),(2262,'Search for W Pair Production with Dilepton Decay Modes at D0 (DPF\'94) (D0CONF-94-40)','Oshima','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2263,'','Beri','','','','','','','','',0,0,0,0,0,0,0,0),(2264,'','Markosky','','','','','','','','',0,0,0,0,0,0,0,0),(2265,'B-Physics Results from D0 (D0CONF-94-41)','Hedin/Markosky','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2266,'D0 W/Z Physics Group Meeting Transparencies 24 June, 8 July, 22July, 1994','Demarteau','','','','','','','','',1994,8,8,2449573,0,0,0,0),(2267,'A Smearing Procedure for CDC Data from D0GEANT','Heintz','','','','','','','','',1994,8,6,2449571,0,0,0,0),(2268,'A Measurement of the Calorimeter Response using ?0 Decays','Heintz','','','','','','','$D0_PRI/2268/m_note2268.ps','',1994,8,27,2449592,2002,9,18,2452536),(2269,'VLPC Characterization for the DZero Upgrade (DPF \'94)','Adams, et.al.','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2270,'Measurement of Jet Shapes in P Pbar Collisions at D0 (DPF \'94)(D0CONF-94-42)','Abbott','','','QCD','','','','','',1994,9,2,2449598,0,0,0,0),(2271,'Bottom-Quark Production from Muon-Jet and Dimuon Events in ppbar-Interactions at (sqrt) s = 1.8 TeV (DPF \'94) (D0CONF-94-43)','Huehn','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2272,'Inclusive Jet Cross Sections at the D0 Detector (DPF \'94)(D0CONF-94-44)','Elvira','','','QCD','','','','','',1994,9,2,2449598,0,0,0,0),(2273,'Search for the Top Quark: Results from the D0 Experiment(D0CONF-94-45)','Grannis','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2274,'The D0 Level 1.5 Calorimeter Trigger (DPF \'94)','Drinkard','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2275,'Status of Wr Search (New Phenomena Meeting 8/26/94)','Goldschmidt','','','','','','','','',1994,8,26,2449591,0,0,0,0),(2276,'B Physics Results from D0 (Wine & Cheese - 8/28/94)','Johns','','','','','','','','',1994,8,28,2449593,0,0,0,0),(2277,'Direct Photon Production at D0 (DPF \'94) (D0CONF-94-46)','Fahey','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2278,'From Particle -> Parton ID (Univ. of D0 9/1/94)','Grannis','','','','','','','','',1994,9,1,2449597,0,0,0,0),(2279,'Muon Chamber Alignment','Johari/Smart/Taketani/Yasuda','','','','','','','','',1994,9,6,2449602,0,0,0,0),(2280,'Performance of a Large Scale Scintillating Fiber Tracker using VLPCReadout (DPF \'94)','Adams, et. al.','','','','','','','$D0_PRI/2280/m_note2280.ps','',1994,8,1,2449566,2002,8,28,2452515),(2281,'Proposal to Upgrade the Intermediate & Forward Regions of the D0Calorimeter','De/Draper/Gallas/Kaiser/Li, J./Perkins/Sawyer/Sosebee/Stephens/ White, A./Ferbel/Gruendahl/ Lobkowicz/Yu,J./Zhu, H.','','','','','','','','',1995,1,16,2449734,0,0,0,0),(2282,'Efficiency of the single muon detection in SAMUS spectrometer ofthe D0 detector for RUN 1B','Denisov/Eroshin','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2283,'Efficiency of Level 2 Missing Transverse Energy Filter','Heintz/Narain','','','','','','','','',1994,9,2,2449598,0,0,0,0),(2284,'MR and TeV losses and shielding walls','Denisov','','','','','','','','',1994,9,7,2449603,0,0,0,0),(2285,'The D0 Upgrade Trigger (DPF \'94) (D0CONF-94-47)','Eno','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2286,'Search for New Gauge Bosons at D0 (DPF \'94) (D0CONF-94-48)','Eppley','','','','','','','','',1994,8,4,2449569,0,0,0,0),(2287,'Measurement of the WWg, ZZg and Zgg Couplings at the FermilabTevatron (DPF \'94) (D0CONF-94-49)','Ellison','','','','','','','$D0_PRI/2287/m_note2287.ps','',1994,8,6,2449571,2002,8,28,2452515),(2288,'Monitoring of SAMUS operation and track reconstraction using DSTs.','Babintsev/Denisov, D./Kostritsky A./Volkov A.','','','','','','','','',1995,1,31,2449749,0,0,0,0),(2289,'Determination of Time to Distance Relations (TDR) for SAMUS drifttubes','Denisov, D./Efimov/Galyaev/Goncharov/ Kozelov','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2290,'A Search for a Second Generation Leptoquark (D0CONF-94-50)','Norman','','','','','','','$D0_PRI/2290/m_2290_LEPTO_MUON.ps','',1994,9,12,2449608,2002,2,28,2452334),(2291,'The D0 Silicon Tracker (DPF \'94)','Heinson','','','','','','','$D0_PRI/2291/m_note2291A.ps','',1994,8,31,2449596,2002,8,28,2452515),(2292,'FDC Reconstruction Speedup','Blessing','','','','','','','','',1994,9,13,2449609,0,0,0,0),(2293,'Fermilab: The Next Ten Years; 1994-2003 (U of D0)','Peoples','','','','','','','','',1994,9,8,2449604,0,0,0,0),(2294,'A Study of Events with Large Total Transverse Energy Produced inProton-Antiproton Collisions at (sqrt) s = 1.8 TeV (DPF \'94) (D0CONF-94-52)','Piekarz','','','','','','','','',1994,8,6,2449571,0,0,0,0),(2295,'Search for Supersymmetry and Leptoquark States at FNAL (glasgow)(D0CONF-94-53)','Hagopian','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2296,'Electroweak Physics Results from Hadronic Interactions (presentedat Physics in Collision 1994, Tallahassee, FL 15-17 June 1994) (D0CONF-94-54)','Wood','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2297,'Discrimination between low energy electrons and ?0s using \'spread\'','Bormann/Adam','','','','','','','','',1994,9,16,2449612,0,0,0,0),(2298,'Observation of the J/u -> ee decays at D0 and calibration of thecentral calorimeter electromagnetic energy scale','Adam/Bormann/Castilla/Denisenko/Flattum/Sanchez/ Tartaglia','','','','','','','$D0_PRI/2298/m_note2298.ps','',1994,10,3,2449629,2002,9,18,2452536),(2299,'Search for the Top Quark in Dimuon Events at D0(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Hall','','','','','','','','',1994,6,1,2449505,0,0,0,0),(2300,'Physics Capabilities of the D0 Upgrade Detector (Glasgow)','Ellison','','','','','','','','',1994,7,27,2449561,0,0,0,0),(2301,'D0 W/Z Physics Group Meeting Transparencies: 19 August, 7 September(collaboration meeting) 1994','Aihara/Demarteau','','','','','','','','',1994,9,19,2449615,0,0,0,0),(2302,'Search for top in D0 using the electron + jets channel with soft ?tagging (D0CONF-94-56)','Raja','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2303,'D0 Silicon Meeting 9/8/94','Lipton','','','','','','','','',1994,9,8,2449604,0,0,0,0),(2304,'The \"IH ?0\" A proposed new \"jet\" algorithm for Particle - ID in D0','Tartaglia','','','QCD','','','','','',1994,9,23,2449619,0,0,0,0),(2305,'The CDC R F Alignment','Lami','','','','','','','','',1994,9,25,2449621,0,0,0,0),(2306,'W Mass Measurements from D0 and CDF Experiments at TeVatron(D0CONF-94-57)','Jung','','','','','','','','',1994,10,28,2449654,0,0,0,0),(2307,'Status of the D0 Top Search (submitted to the proceeding of the XIVInternational Conference of Physics in Collision, Tallahasse, FL, June15-17, 1994) (D0CONF-94-58)','Li-Demarteau','','','','','','','','',1994,6,17,2449521,0,0,0,0),(2308,'Search for Centauro Events in the D0 Detector at Fermilab Collider(presented at the 8th International Symposium on Very High EnergyCosmic-Ray Interactions, 24-30 July 1994, Tokyo, Japan) (D0CONF-94-59)','Rao','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2309,'Maximum Entropy and Event Reconstruction','Thomson','','','','','','','','',1994,7,6,2449540,0,0,0,0),(2310,'Mechanical Design of the D0 Silicon Detector','Cooper','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2311,'Proposal for a DZero Teleconference Facility','Heinson','','','','','','','','',1994,7,1,2449535,0,0,0,0),(2312,'Measurement of W and Z Production Cross-Sections in pp Collisionsat (sqrt) s = 1.8 TeV (D0CONF-94-60)','Quintas','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2313,'','Graf','','','','','','','','',0,0,0,0,0,0,0,0),(2314,'','Adam','','','','','','','','',0,0,0,0,0,0,0,0),(2315,'Analysis of Events with Large Total Transverse Energy','Piekarz/Wightman','','','','','','','','',1995,1,16,2449734,0,0,0,0),(2316,'Cross Section Measurements of W and Z Bosons to Electrons at D0:Event Selection and Efficiency Studies','Grudberg','','','','','','','','',1994,10,31,2449657,0,0,0,0),(2317,'The Acceptance for W -> eu and Z -> ee at D0','Yang','','','','','','','','',1994,11,17,2449674,0,0,0,0),(2318,'Standardization of CDF and D0 Reported Luminosities','Bantly/Plunkett/Pruss/Tartaglia','','','','','','','','',1994,10,3,2449629,0,0,0,0),(2319,'D0 Muon Chamber Pulse Heights: June 1992 to September 1994 Shutdown','Butler, J.','','','','','','','','',1994,10,26,2449652,0,0,0,0),(2320,'Dimuon Production from D0 Run 1A','Zhang','','','','','','','','',1994,10,28,2449654,0,0,0,0),(2321,'Fluorescent Lamp Filters for Protecting Scintillating Fibers','Chung/Margulies','','','','','','','','',1994,8,26,2449591,0,0,0,0),(2322,'W-Jet Mass as a Function of Rapidity Difference','Forden','','','','','','','','',1994,10,28,2449654,0,0,0,0),(2323,'Study of converted photons in the D0 central detector','Ducros/Lebrat','','','','','','','','',1994,9,28,2449624,0,0,0,0),(2324,'Performance of the Transition Radiation Detector in D0','Pluquet','','','','','','','','',1994,10,28,2449654,0,0,0,0),(2325,'W-Jet Angular Distributions vs. Rapidity Correlations','Forden','','','','','','','','',1994,10,28,2449654,0,0,0,0),(2326,'The Photon Purity in the Central Rapidity Region','Linn','','','','','','','','',1995,8,1,2449931,0,0,0,0),(2327,'The Micro DST Format','Adam/Balamurali/Chopra/Heintz/Narain','','','','','','','$D0_PRI/2327/m_note2327.ps','',1994,10,24,2449650,2002,8,28,2452515),(2328,'Search for High Mass Top Quark Production in p pbar Collisions at(sqrt) s = 1.8 TeV ( D0PUB-94-3)','Greenlee','','','','','','','','',1994,11,1,2449658,0,0,0,0),(2329,'Comparison of D0 and CDF Sensitivity for Top','Butler, J./Greenlee','','','','','','','','',1994,11,4,2449661,0,0,0,0),(2330,'Extracts from Alain Pluquet\'s Thesis -- Electron ID with the TRD','Pluquet','','','','','','','','',1994,10,28,2449654,0,0,0,0),(2331,'Beam XY Position at D0 Determined with VTX Chamber','Bendich/Chen, L.-P./Clark/Grudberg/Oltman/Puseljic/Trippe/Pang/Zinchenko','','','','','','','','',1994,10,20,2449646,0,0,0,0),(2332,'Tutorial on how to use the TRD Information in the Analysis ofElectron Candidates (presented at electron ID meeting, transparencies)','Zylberstejn','','','','','','','','',1994,10,13,2449639,0,0,0,0),(2333,'Search for the TOP quark at D0 (1994 Fall Meeting of the TX sectionof the APS, Austin, TX, 14-15 October 1994)','Gallas','','','','','','','','',1994,10,28,2449654,0,0,0,0),(2334,'','Chakrabartory','','','','','','','','',0,0,0,0,0,0,0,0),(2335,'On the uses of Bayes Theorem in HEP analyses','Raja','','','','','','','$D0_PRI/2335/m_raja_2335.ps','',1994,10,24,2449650,2002,1,9,2452284),(2336,'','Raja','','','','','','','','',0,0,0,0,0,0,0,0),(2337,'VECBOS at D0: A Sorcerer\'s Manual','Chakraborty','','','','','','','','',1996,4,10,2450184,0,0,0,0),(2338,'Physics Prospects With a Forward Pre-Shower Detector','Stephens','','','','','','','$D0_PRI/2338/m_note2338.ps','',1994,10,25,2449651,2002,8,28,2452515),(2339,'Anomalous Events in Zg Production at D0','Glenn/Mani/Choudhary','','','','','','','','',1994,10,27,2449653,0,0,0,0),(2340,'QCD Background in the W -> eu Sample','Roe','','','','','','','','',1994,11,3,2449660,0,0,0,0),(2341,'','Landsberg','','','','','','','','',0,0,0,0,0,0,0,0),(2342,'Small Angle Muon and b-Quark Production in p pbar Collisions at(sqrt) s = 1800 GeV','Denisov, D./Ramirez/Hoeneisen','','','','','','','','',1994,10,25,2449651,0,0,0,0),(2343,'D0 Upgrade Meeding Slide Copies, Sept. 7, 1994','Tuts','','','','','','','','',1994,9,7,2449603,0,0,0,0),(2344,'Next-to-leading Order QCD Corrections to p pbar -> Wg and p pbar ->WZ (Presented at UD0 10/27/94)','Baur','','','','','','','','',1994,10,27,2449653,0,0,0,0),(2345,'Z + 4 Jet Production in Hadronic Collisions','Mirkes','','','','','','','','',1994,10,22,2449648,0,0,0,0),(2346,'Decay Lepton Distributions in Drell-Yan Type Processes h4 +h2 ->(W, Z, g, /Y) + X','Mirkes','','','','','','','','',1994,10,22,2449648,0,0,0,0),(2347,'Inclusive Muon Study and B Physics Results in 1.8 TeV pp Collisions','Sood','','','','','','','','',1994,11,17,2449674,0,0,0,0),(2348,'Search for top in lepton + jets final states with D0 Detector(D0CONF-94-61)','Protopopescu','','','','','','','','',1994,11,17,2449674,0,0,0,0),(2349,'1u + J Triggers in Run Ib and b bbar \"Reconstruction\"','Green, D.','','','','','','','','',1994,11,3,2449660,0,0,0,0),(2350,'An Impact Parameter Trigger Algorithm for the D0-b Detector','Drinkard/Stoker','','','','','','','','',1994,11,4,2449661,0,0,0,0),(2351,'Comparison of Electron ID Efficiencies in Run 1A and Run 1B','Chopra/Heintz/Narain','','','','','','','','',1994,12,15,2449702,0,0,0,0),(2352,'Electron Track Fitting','Zieminska/Zieminski','','','','','','','','',1994,11,18,2449675,0,0,0,0),(2353,'','Grudberg','','','','','','','','',0,0,0,0,0,0,0,0),(2354,'A Search for tt -> electron + ET + jets signature in p pbarcollisions at (sqrt) s = 1.8 TeV with the detector. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Chakraborty','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2355,'Electron ID with Transition Radiation Detector and Central DriftChamber','Heintz/Narain','','','','','','','$D0_PRI/2355/m_2355.ps','',1994,11,28,2449685,1999,3,29,2451267),(2356,'Review of Triple Gauge Vector Boson Physics at DZero','Choudhary','','','','','','','','',1994,11,11,2449668,0,0,0,0),(2357,'Performance of a Likelihood Weighted Electron+Jets Top Mass Fitter','Strovink/Varnes','','','','','','','','',1994,11,18,2449675,0,0,0,0),(2358,'Upgrade of the D0 forward Muon System with Pixel ScintillationCounters','Baldin/Denisov, D./Green, D./Ito/ Bezzubov/Bozko/Denisov,S./ Dyshkant/ Erosh/Evdokimov/Goncharov/Gurzhiev/Mandrichenko/Mayorov/Medovikov/Vaniev/ Zimin/ Johns/Markosky/Narayanan/Steinberg/Shupe','','','','','','','','',1994,11,30,2449687,0,0,0,0),(2359,'Level 1 Trigger Design for the D0 Upgrade Central Fiber Tracker','Borcherding','','','','','','','$D0_PRI/2359/m_note2359.ps','',1994,11,21,2449678,2002,8,28,2452515),(2360,'Transparancies from ISAJET Tutorial on SUSY Processes','Baer','','','','','','','','',1994,11,10,2449667,0,0,0,0),(2361,'Two channel timing measurement accuracy and precision for severalD0 Digital Storage Oscilloscopes','Matulik','','','','','','','','',1994,11,17,2449674,0,0,0,0),(2362,'Transparencies from CD meeting (Collaboration mtg. 9/8/94)','Collaboration','','','','','','','','',1994,9,8,2449604,0,0,0,0),(2363,'Tracking Performance & Issues (General Collaboration Mtg.)','Graf','','','','','','','','',1994,9,9,2449605,0,0,0,0),(2364,'','Graf','','','','','','','','',0,0,0,0,0,0,0,0),(2365,'Everything your advisor should have told you about CALORIMETRY...but probably didn\'t know. (U of D0)','Womersley','','','','','','','','',1994,11,17,2449674,0,0,0,0),(2366,'Study of QCD background in Z -> ee at D0','Yang','','','','','','','','',1994,11,22,2449679,0,0,0,0),(2367,'Introduction to Colliding Beams at Fermilab','Thompson','','','','','','','','',1994,10,31,2449657,0,0,0,0),(2368,'','Graf','','','','','','','','',0,0,0,0,0,0,0,0),(2369,'A Data-based Estimate of Jet Reconstruction Efficiencies','Hirosky','','','QCD','','','','','',1994,11,30,2449687,0,0,0,0),(2370,'D0 Muon System Upgrade Front End Electronics','Baldin/Denisov,D./Diehl/ Green, D. /Haggerty/Hansen/Ito/Wood/Johns/Markosky/Narayanan/Steinberg/Eno/ Thompson/Marshall/Bojko/Denisov, S.','','','','','','','','',1994,12,1,2449688,0,0,0,0),(2371,'Trigger Rates for Light and Intermediate Mass Higgs at an UpgradedTevatron Collider','Womersley','','','','','','','','',1994,12,14,2449701,0,0,0,0),(2372,'Upgrading the D0 Muon Detector and Trigger (Collaboration Mtg)','Diehl','','','','','','','','',1994,11,11,2449668,0,0,0,0),(2373,'Implementation of the W decay to fourth generation neutral heavylepton through mixing in PYTHIA','Jung/Wengler','','','','','','','','',1994,12,5,2449692,0,0,0,0),(2374,'cc Production at D0','Demina','','','','','','','','',1994,12,14,2449701,0,0,0,0),(2375,'GLUCHI - Generator of the Gluon-to-cc Fragmentation (ISAJETextension)','Demina','','','','','','','','',1994,12,14,2449701,0,0,0,0),(2376,'cc Production in p pbar Collisions at (sqrt) s = 1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Demina','','','','','','','','',1994,12,31,2449718,0,0,0,0),(2377,'EM Calorimeter Calibration for the D0 Upgrade','Womersley','','','','','','','$D0_PRI/2377/m_note2377.ps','',1994,12,2,2449689,2002,9,18,2452536),(2378,'Two-Dimensional Interpolation on an Irregular Grid','Lyon/Paterno, M.','','','','','','','$D0_PRI/2378/m_note2378.ps','',1995,3,13,2449790,2002,8,28,2452515),(2379,'Flagging Calorimeter Noisy Cells','Fahey/Guida, Jan/Guida,Joan/ Schamberger/Smith, R.','','','','','','','','',1994,12,20,2449707,0,0,0,0),(2380,'D0 Searches for SUSY','Sawyer','','','','','','','','',1994,11,11,2449668,0,0,0,0),(2381,'BB Mixing in Run Ib','Green, D.','','','','','','','','',1994,12,14,2449701,0,0,0,0),(2382,'Transparencies from the Rockwell-Fermilab Fiber Tracking HISTE VSummary Meeting 11/8/94-11/9/94','Bross','','','','','','','','',1994,11,9,2449666,0,0,0,0),(2383,'Transparencies from D0 Fiber Tracking Group Meetings,7/14/94-8/25/94','Bross','','','','','','','','',1994,8,25,2449590,0,0,0,0),(2384,'Transparencies from D0 Fiber Tracking Group Meetings,9/22/94-12/1/94','Bross','','','','','','','','',1994,12,1,2449688,0,0,0,0),(2385,'Performance and Upgrade of the D0 Calorimetry (1994 BeijingCalorimetry Symposium IHEP - Chinese Academy of Sciences Beijing, ChinaOctober 25-27, 1994)','Kotcher','','','','','','','','',1994,12,13,2449700,0,0,0,0),(2386,'A Likelihood Test for Electron ID','Narain/Heintz','','','','','','','$D0_PRI/2386/m_2386.ps','',1994,12,8,2449695,1999,3,29,2451267),(2387,'Inclusive ? and b-Quark Production Cross Sections in p pbarCollisions at (sqrt) s = 1.8 TeV ( D0PUB-94-4)','Abachi, et.al.','','','','','','','','',1994,12,14,2449701,0,0,0,0),(2388,'Mass Limit on \"Bosonic\" Higgs Particle from D0 Run 1A Data','Womersley','','','','','','','','',1994,12,14,2449701,0,0,0,0),(2389,'The D0 Run 1A t tbar -> ? + Jets + ?(tag) Analysis','Hobbs','','','','','','','','',1994,9,30,2449626,0,0,0,0),(2390,'D0 DAQ System','Johnson, M.','','','','','','','','',1994,12,14,2449701,0,0,0,0),(2391,'Search for W Pair Production in the Dilepton Channel at D0','Johari/Yasuda/Diehl/Oshima','','','','','','','','',1994,12,14,2449701,0,0,0,0),(2392,'Rapidity Gaps between Jets in p pbar Collisions at (sqrt) s = 1.8TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','May','','','QCD','','','','','',1994,12,14,2449701,0,0,0,0),(2393,'Effects of Stress and Strain on Scintillating and Clear Fibers(presented at the 1994 IEEE Nuclear Science Symposium, Norfolk, VA, 1-5Nov. 1994) (D0CONF-94-62)','Chung/Margulies','','','','','','','','',1994,12,14,2449701,0,0,0,0),(2394,'Estimation of Radiation Doses in the D0 Upgrade Scintillating-FiberTracker and Central Preshower Counter (D0CONF-94-63)','Chung/Margulies','','','','','','','','',1994,11,29,2449686,0,0,0,0),(2395,'','Madaras','','','','','','','','',0,0,0,0,0,0,0,0),(2396,'Effect of Electron Identification Cuts on radiative W events','Flattum','','','','','','','$D0_PRI/2396/m_note2396.ps','',1995,1,16,2449734,2002,8,28,2452515),(2397,'QCD Background to the W Mass Measurement','Flattum','','','','','','','$D0_PRI/2397/m_note2397.ps','',1995,1,16,2449734,2002,8,28,2452515),(2398,'W-Jet Rapidity Correlations in p pbar Collisions at (sqrt) s = 1.8TeV (Invited Talk to the 24th International Symposium on MultiparticleDynamics, Vietrie Sul Mare, Italy, Sept. 12-19, 1994) (D0CONF-94-64)','Forden','','','','','','','','',1994,9,14,2449610,0,0,0,0),(2399,'Measurement of Diboson Production at the Tevatron Collider with D0(Talk at Conference on \"Beyond the Standard Model IV\", Granlibakken, LakeTahoe, California, Dec. 13-18, 1994)','Chen, L.','','','','','','','','',1994,12,16,2449703,0,0,0,0),(2400,'D0 Silicon Tracker Technical Review','Lipton','','','','','','','','',1994,11,12,2449669,0,0,0,0),(2401,'Change to the D0 Luminosity Monitor Constant','Amos/Bantly/Brandt/Demina/ Goldschmidt/Partridge/ Paterno, L./Puseljic/Thompson, J.','','','','','','','','',1994,12,20,2449707,0,0,0,0),(2402,'ICD & EMICD Upgrade Review','De/Gallas/Li, J./Sawyer/Sosebee','','','','','','','','',1994,12,17,2449704,0,0,0,0),(2403,'Survival Guide to Putting Monte Carlo Files into FATMEN','Hagopian,S./Shaffer/Merritt','','','','','','','','',1994,12,21,2449708,0,0,0,0),(2404,'D0 W/Z Physics Group Meeting Transparencies, Nov. 10 & Dec. 2, 1994','Aihara/Demarteau','','','','','','','','',1994,12,21,2449708,0,0,0,0),(2405,'Jet Efficiencies and Seed Tower Distributions in the D0 ConeAlgorithm','Hirosky','','','QCD','','','','','',1995,1,31,2449749,0,0,0,0),(2406,'Statistics of Tossing Coins','Hu, Ting','','','','','','','$D0_PRI/2406/m_note2406.ps','',1994,12,17,2449704,2002,2,28,2452334),(2407,'','Yamada','','','','','','','','',0,0,0,0,0,0,0,0),(2408,'Kinematic Fitting for the Mass of the Top Quark','Dahl/Ferbel/Grannis/Hauptman/Johns/Kehoe/ Krzywdzinski/Pang/Partridge/Peters/Prosper/ Protopopescu /Raja/Snyder/Strovink /Varnes/Won/Yoshikawa','','','','','','','$D0_PRI/2408/m_note2408.ps','',1995,4,15,2449823,2002,8,28,2452515),(2409,'A Study of the Strong Coupling Constant Using W+ Jets Processes( D0PUB-95-1)','Abachi, et. al.','','','QCD','','','','','',1995,4,15,2449823,0,0,0,0),(2410,'Search for top in p pbar collisions at (sqrt) s = 1.8 TeV byconstrained kinematic fitting (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Pang','','','','','','','','',1994,12,31,2449718,0,0,0,0),(2411,'Calorimeter Level 1.5 Electromagnetic Physics Commissioning','Genik','','','','','','','$D0_PRI/2411/m_note2411.ps','',1995,3,6,2449783,2002,8,28,2452515),(2412,'What could be wrong with the (separated) beams at D-Zero?(presented at the Accelerator Physics Analysis Mtg.)','Tartaglia','','','','','','','','',1995,1,16,2449734,0,0,0,0),(2413,'Electron/pion discrimination using a TRD & CDC combined likelihoodmethod','Lebrat','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2414,'','Bhat','','','','','','','','',0,0,0,0,0,0,0,0),(2415,'Poor man\'s top masses','Protopopescu','','','','','','','','',1995,2,22,2449771,0,0,0,0),(2416,'Search for the top Quark by D0 (presented at 1995 Aspen WinterPhysics Conference, Jan. 1-8, 1995)','Narain','','','','','','','','',1995,1,16,2449734,0,0,0,0),(2417,'Design, performance, and upgrade of the D0 Calorimeter (submittedto the proceedings of 1994 Beijing Calorimetry Symposium, IHEP - ChineseAcadamy of Sciences, Beijing, China, Oct. 25-27, 1994) (D0CONF-95-1)','Kotcher','','','','','','','','',1995,1,16,2449734,0,0,0,0),(2418,'Performance and Calibration of the D0 Calorimeter at the FermilabTevatron (presented at the 4th International Conference on AdvancedTechnology and Particle Physics) - Transparencies','Guida, Joan','','','','','','','','',1995,1,16,2449734,0,0,0,0),(2419,'Corrections to Biases in Cluster-Track Matching','Glenn/Goldschmidt','','','','','','','','',1995,1,12,2449730,0,0,0,0),(2420,'Dimuons in Jets and Gluon Evolution','Green, D.','','','','','','','','',1995,1,16,2449734,0,0,0,0),(2421,'Fiber Studies for the Muon Scintillators','Bhatnagar/Chopra/Ito/Kohli/Singh','','','','','','','','',1994,10,15,2449641,0,0,0,0),(2422,'Search for the Top Quark in the Dielectron Channel in p pbarCollisions at (sqrt) s = 1.8 TeV. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Balamurali,V.','','','','','','','','',1994,11,30,2449687,0,0,0,0),(2423,'D0 Workshop on QCD Physics, Tucson, AZ, Jan. 8-13, 1995, Monday & Tuesday','Forden','','','','','','','','',1995,2,7,2449756,0,0,0,0),(2424,'Study of WWg and WWZ couplings with WW and WZ -> eujetjet events atD0','Chen. L.-P.','','','','','','','$D0_PRI/2424/m_note2424c.ps','',1995,7,18,2449917,2002,2,28,2452334),(2425,'Comparison of Jet Kinematics in VECBOS and W -> e + Jets Data','Varnes','','','','','','','','',1995,1,30,2449748,0,0,0,0),(2426,'','Brandt','','','','','','','','',0,0,0,0,0,0,0,0),(2427,'Director\'s Review of D0 Upgrade Project - schedule, notes, chargeto the D0 Review, letters, & Report of the Review Panel.','Collaboration','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2428,'D0 Upgrade - D0 Upgrade Director\'s Review Jan. 11-12, 1995','Montgomery','','','','','','','','',1995,1,12,2449730,0,0,0,0),(2429,'D0 Solenoid Status - D0 Upgrade Director\'s Review','Fisk','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2430,'The D0 Upgrade Silicon Tracker - D0 Upgrade Director\'s Review','Ellison','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2431,'Status Report of the D0 Scintillating Fiber Project - D0 UpgradeDirector\'s Review','Wayne','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2432,'The Central Preshower Detector - D0 Upgrade Director\'s Review','Qian','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2433,'The Inter-Cryostat Detector Upgrade Plans - D0 Upgrade Director\'sReview','De','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2434,'Muon Trigger Detectors - D0 Upgrade Director\'s Review','Diehl','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2435,'Intermediate and Forward Angle Detectors D0 Upgrade- D0 UpgradeDirector\'s Review','Grannis','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2436,'Electronics Certification Board - D0 Upgrade Director\'s Review','Tuts','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2437,'Calorimeter Upgrades -D0 Upgrade Director\'s Review','Tuts','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2438,'Tracking Detector Electronics - D0 Upgrade Director\'s Review','Johnson','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2439,'Central Fiber Trigger System - D0 Upgrade Director\'s Review','Johnson','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2440,'Muon System Front End Electronics Design - D0 Upgrade Director\'sReview','Baldin','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2441,'Muon Trigger for Upgrade D0 - D0 Upgrade Director\'s Review','Johns, Narayanan, Steinberg','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2442,'Trigger Studies - D0 Upgrade Director\'s Review','Womersley/Blazey','','','','','','','','',1995,1,12,2449730,0,0,0,0),(2443,'L1 Electron Triggers - D0 Upgrade Director\'s Review','Collaboration','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2444,'Muon Triggers - D0 Upgrade Director\'s Review','Womersley','','','','','','','','',1995,1,12,2449730,0,0,0,0),(2445,'L1, L2 & L3 Bandwith Estimates - D0 Upgrade Director\'s Review','Collaboration','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2446,'Computing - D0 Upgrade Director\'s Review','Fuess','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2447,'D0 Upgrade Plan - D0 Upgrade Director\'s Review','Collaboration','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2448,'D0 Upgrade Schedule - D0 Upgrade Director\'s Review','Christenson','','','','','','','','',1995,1,11,2449729,0,0,0,0),(2449,'D0 Upgrade Cost - D0 Upgrade Director\'s Review','Tuts','','','','','','','','',1995,1,12,2449730,0,0,0,0),(2450,'D0 Upgrade Cost Review - D0 Upgrade Director\'s Review','Crisler','','','','','','','','',1995,1,12,2449730,0,0,0,0),(2451,'A Study of the Long-Term Gain Dependence of Phototubes','Pope','','','','','','','','',1995,1,23,2449741,0,0,0,0),(2452,'Estimation of the background to W+jets and Z+jets','Manning, G.','','','','','','','$D0_PRI/2452/m_manning_2452.ps','',1995,1,20,2449738,2002,1,9,2452284),(2453,'Improved Low ET Electron Identification using Lower DimensionalH-Matrices and Fisher Variables','Norman','','','','','','','$D0_PRI/2453/m_2453_HMATRIX.ps','',1995,1,26,2449744,2002,2,28,2452334),(2454,'The D0 Detector at Fermilab: Recent Results and Future Plans(D0CONF-95-2)','Hoftun','','','','','','','$D0_PRI/2454/m_vertex_v2.ps','',1995,2,7,2449756,1998,6,9,2450974),(2455,'','Chopra','','','','','','','','',0,0,0,0,0,0,0,0),(2456,'Get_ACNET A Tool Providing ACNET Data to the D0 Online Cluster','Thompson, J.','','','','','','','','',1995,12,19,2450071,0,0,0,0),(2457,'','Gordon','','','','','','','','',0,0,0,0,0,0,0,0),(2458,'','Puseljic','','','','','','','','',0,0,0,0,0,0,0,0),(2459,'','Puseljic','','','','','','','','',0,0,0,0,0,0,0,0),(2460,'MI Flag Effects on the J/u Cross Section','Luminosity Group','','','','','','','','',1995,4,14,2449822,0,0,0,0),(2461,'Test of the Standard Model of Electroweak Interactions by Measuringthe Anomalous ZZg and Zgg Couplings (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Landsberg','','','','','','','','',1994,12,31,2449718,0,0,0,0),(2462,'A Measurement of Trigger Efficiency for high Pt muons for runs75000-84000','Quintas','','','','','','','','',1995,1,27,2449745,0,0,0,0),(2463,'Fast Monte Carlo Simulation of Z Production at the D0 Experiment','Jiang','','','','','','','','',1995,1,30,2449748,0,0,0,0),(2464,'VOID','VOID','','','','','','','','',0,0,0,0,0,0,0,0),(2465,'On Matters of Significance','Won','','','','','','','$D0_PRI/2465/m_note2465.ps','',1995,3,20,2449797,2002,8,28,2452515),(2466,'Searches for Supersymmetry and Top in the D0 Experiment (D0CONF-95-3)','White, A.','','','','','','','','',1995,2,7,2449756,0,0,0,0),(2467,'On Evidence for the b Quark at D0','Green, D.','','','','','','','','',1995,2,6,2449755,0,0,0,0),(2468,'','Linnemann','','','','','','','','',0,0,0,0,0,0,0,0),(2469,'Effects of Zero Suppression and Underlying Event on the MeasuredJet Energies','Abbott','','','QCD','','','','$D0_PRI/2469/m_note2469.ps','',1995,2,13,2449762,2002,9,18,2452536),(2470,'Studies of Radiative Decays of the W and Z','Demarteau,M./Sculli/Streets','','','','','','','$D0_PRI/2470/m_note2470.ps','',1995,2,6,2449755,2002,8,28,2452515),(2471,'Systematic Error Analysis for cc Production at D0','Demina','','','','','','','','',1995,3,14,2449791,0,0,0,0),(2472,'(Preliminary) W and Z Production Cross Sections at D-Zero (Wine &Cheese Seminar)','Tartaglia','','','','','','','','',1995,1,25,2449743,0,0,0,0),(2473,'Search for Right-handed W Bosons at D0','Goldschmidt','','','','','','','$D0_PRI/2473/m_note2473.ps','',1995,2,7,2449756,2002,8,28,2452515),(2474,'Trigger Efficiencies for Run 1A Inclusive Jet Triggers','Geld','','','QCD','','','','','',1995,2,9,2449758,0,0,0,0),(2475,'A New Multivariate Technique for Top Quark Search','Holmstrom/Sain/Miettinen','','','','','','','','',1995,3,14,2449791,0,0,0,0),(2476,'Statistical Analysis (presented at U of D0)','Prosper','','','','','','','','',1995,3,14,2449791,0,0,0,0),(2477,'Position Biases and Resolutions in Jet Measurements','Kim/Heuring/Jun','','','QCD','','','','$D0_PRI/2477/m_note2477.ps','',1995,2,15,2449764,2002,9,18,2452536),(2478,'A visit to the CERN Zoo (Part 1) (U of D0)','Wimpenny','','','','','','','','',1995,2,3,2449752,0,0,0,0),(2479,'Cosmic ray test results of the D0 prototype scintillating fibertracker','Adams, et. al.','','','','','','','','',1995,3,14,2449791,0,0,0,0),(2480,'Corrections to ET for Main-Ring Energy','Kehoe/Narain','','','','','','','','',1995,4,17,2449825,0,0,0,0),(2481,'An Estimate of the Energy Scale Offset at D0','Rajagopalan','','','','','','','','',1995,4,14,2449822,0,0,0,0),(2482,'Comments Relevant to 95/96 Schedule','Montgomery','','','','','','','','',1995,2,18,2449767,0,0,0,0),(2483,'W Mass & Diboson Production; Results from D0 and CDF at Fermilab(presented at Aspen Conference Jan. 1-8, 1995)','Tuts','','','','','','','','',1995,3,14,2449791,0,0,0,0),(2484,'ds (pbar + p -> Z)/dpT Measurement at the D0 Experiment','Jiang','','','','','','','','',1995,1,30,2449748,0,0,0,0),(2485,'STP file for the TRD at D0','Goss/Lebrat','','','','','','','$D0_PRI/2485/m_note2485.ps','',1995,2,21,2449770,2002,8,28,2452515),(2486,'Level 2 trigger and off-line track reconstruction in the SAMUSspectrometer.','Balderston/Denisov, D. /Diehl /Eroshin/Efimov/Fortner/Glebov/Goncharov/ Gurzhiev/Gutnikov/Hedin/Kirunin/Kozelov/Kozlovski/Kostritski/Mayorov/Mandrichenko/Podstavkov/Quintas/ Volkov/Zieminska','','','','','','','','',1995,3,2,2449779,0,0,0,0),(2487,'Test beam proposal for studies of the D0 forward muon detectors','Baldin/Denisov, D. /Diehl /Haggerty/Melanson/Ito/Bezzubov/Erosh/Evdokimov/Mayorov/ Gurzhiev','','','','','','','','',1995,4,14,2449822,0,0,0,0),(2488,'Consistency of the D0 top discovery numbers with the standard modelof top production. This is a controlled note, please see Becky at D0Trailer City 151 to look at the note. ','Raja','','','','','','','$D0_PRI/2488/m_note2488.ps','',1995,2,28,2449777,2002,8,28,2452515),(2489,'Search for W decay to two highly electromagnetic jets with the D0Detector','Bertram','','','','','','','$D0_PRI/2489/m_em2_wjj_note_vers_2.ps','',1995,2,28,2449777,1998,7,1,2450996),(2490,'The D0 Detector Upgrade (presented at 4th International Conferenceon Advanced Technology and Particle Physics, Como, Italy 3-6 October 1994)(D0CONF-95-4)','Bross','','','','','','','','',1995,3,14,2449791,0,0,0,0),(2491,'On Understanding Crosstalk in the Face of Small, Quantized, SignalsHighly Smeared by Poisson Statistics','Lincoln/Hsieh/Li, H.','','','','','','','','',1995,2,28,2449777,0,0,0,0),(2492,'','Shabilina','','','','','','','','',0,0,0,0,0,0,0,0),(2493,'Jet Production at Large Rapidity Intervals','Heuring/Jun/Kim','','','QCD','','','','$D0_PRI/2493/m_note2493.ps','',1995,3,6,2449783,2002,8,28,2452515),(2494,'The Contribution of the ICD to Missing Transverse Energy Resolutionin D0\'s Run 1','Gallas/De/Sosebee','','','CALORIMETER','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/2494/M_NOTE2494.PS;1','',1995,3,14,2449791,1998,10,18,2451105),(2495,'Direct Photon + Charm Feasibility Study','Hahn','','','','','','','','',1995,3,6,2449783,0,0,0,0),(2496,'Measurement of the ZZg and Zgg couplings in p pbar collisions at(sqrt) s = 1.8 TeV ( D0PUB-95-2)','Abachi, et. al.','','','','','','','','',1995,3,14,2449791,0,0,0,0),(2497,'D0 Silicon Meeting 2/23/95','Lipton','','','','','','','','',1995,2,23,2449772,0,0,0,0),(2498,'D0 Upgrade Meeting 2/23/95','Tuts','','','','','','','','',1995,2,23,2449772,0,0,0,0),(2499,'Preliminary Study of Parameters for Top to Jets Event Selection','Cretsinger/Stewart','','','','','','','$D0_PRI/2499/m_note2499.ps','',1995,3,16,2449793,2002,8,28,2452515),(2500,'The D0 Detector','Snyder','','','','','','','','',1995,3,16,2449793,0,0,0,0),(2501,'dN (Z -> e+ + e-)/dpT1 Measurement at D0 (D0CONF-95-5)','Jiang','','','','','','','','',1995,2,28,2449777,0,0,0,0),(2502,'Z -> e+ e- Data Sample','Jiang','','','','','','','','',1995,2,28,2449777,0,0,0,0),(2503,'Miscellaneous Musings on the Measurement of Much-Maligned Muons(University of D0)','Wood','','','','','','','','',1994,12,8,2449695,0,0,0,0),(2504,'A Study of the Effects of Fiber Placement Errors on the Level 1 CFTTrigger','Borcherding','','','','','','','','',1995,3,17,2449794,0,0,0,0),(2505,'Observation of a 2.3 Standard Deviation Mass Peak in the Top Mass -W Mass Plane','Strovink/Varnes','','','','','','','','',1995,3,19,2449796,0,0,0,0),(2506,'Offline Muon Identification in Run Ib','Hu, Tong/Zieminska','','','','','','','','',1995,3,20,2449797,0,0,0,0),(2507,'The Photon Di-Jet Cross Section','Linn/Shaffer','','','QCD','','','','','',1995,3,20,2449797,0,0,0,0),(2508,'Muon CALIB constants database manipulations using the muon ENDTSKprogram','Wilcox','','','','','','','','',1995,3,21,2449798,0,0,0,0),(2509,'How can we extract the gluon distribution?','Hoeneisen','','','','','','','','',1995,3,22,2449799,0,0,0,0),(2510,'Transition Radiation Detector in the D0 Colliding Beam Experimentat Fermilab (presented at Vienna Wire Chamber Conference \'95, Vienna, Feb.13-17, 1995) (D0CONF-95-6)','Piekarz','','','','','','','','',1995,4,14,2449822,0,0,0,0),(2511,'Top Quark and New Particle Searches, Recent Results from D0 and CDF(transparencies presented at Physics Colloquium, SACLAY, Feb. 20, 1995)','Piekarz','','','','','','','','',1995,4,14,2449822,0,0,0,0),(2512,'Shielding for D0 Detector: The First Look','Sirotenko','','','','','','','','',1995,3,27,2449804,0,0,0,0),(2513,'Developing a Test Setup and Software for Single Sided SiliconDetector Tests','Smith, L.','','','','','','','','',1994,11,18,2449675,0,0,0,0),(2514,'Measuring g+Jets Triple Differential Cross Section','Wen/Madden','','','QCD','','','','','',1995,7,24,2449923,0,0,0,0),(2515,'SAMUS Survey Procedure - RCP and STP files creation','Abramov/Gurzhiev/Gutnikov/ Mayorov/Denisov, D./ Smart/Efimov','','','','','','','','',1995,3,28,2449805,0,0,0,0),(2516,'Electroweak Results at D0 (Les Rencontres de Physique de la Valleed\'Aoste, La Thuile)','Rajagopalan','','','','','','','','',1995,3,6,2449783,0,0,0,0),(2517,'Comments on b-quark production at hadron colliders and status ofHVQJET: A Monte-Carlo event generator based on MNR O (a3) Q Q Productioncross-section calculations','Mohammadi-Baarmand','','','','','','','','',1995,3,31,2449808,0,0,0,0),(2518,'','Yamada','','','','','','','','',0,0,0,0,0,0,0,0),(2519,'ICD Contribution to the Energy Resolution in the IntermediateRegion of the D0 Detector','Sosebee/Gallas/De','','','CALORIMETER','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/2519/M_NOTE2519.PS;1','',1995,4,9,2449817,1998,10,18,2451105),(2520,'Search for W1Z2 Production via Trileptonic Final States','Sawyer,L./Sosebee/White, A./White, J.','','','','','','','','',1995,8,28,2449958,0,0,0,0),(2521,'Brief description of the forward J/Psi analysis - cross section','Denisov/Volkov','','','','','','','','',1995,4,4,2449812,0,0,0,0),(2522,'The Layperson\'s Guide to the TRD','Goss','','','','','','','$D0_PRI/2522/m_note2522.ps','',1995,4,5,2449813,2002,8,28,2452515),(2523,'','Lyon, A.','','','','','','','','',0,0,0,0,0,0,0,0),(2524,'A Fast l + Three Jet Top Mass Fitter','Varnes','','','','','','','','',1995,6,26,2449895,0,0,0,0),(2525,'A Study of Hot Cells and Jets: Should We Add Hotcells Back intoEvents?','Grossman','','','QCD','','','','','',1995,3,10,2449787,0,0,0,0),(2526,'PDE Primer','Eppley/Miettinen/Virador','','','','','','','','',1995,5,4,2449842,0,0,0,0),(2527,'Top Quark Results from D-Zero','Miettinen','','','','','','','','',1995,5,31,2449869,0,0,0,0),(2528,'','Jiang','','','','','','','','',0,0,0,0,0,0,0,0),(2529,'','Jiang','','','','','','','','',0,0,0,0,0,0,0,0),(2530,'Missing Et Resolution Effects on Reconstructing the W BosonRapidity','Forden','','','','','','','','',1995,5,26,2449864,0,0,0,0),(2531,'Measurement of the Inclusive Jet Cross Sections at (sqrt) s = 1.8TeV with the D0 Detector. (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Elvira','','','QCD','','','','','',1995,4,14,2449822,0,0,0,0),(2532,'Measurement of the Production and Muonic Decay Rate of W and ZBosons in p pbar collisions at (sqrt) s = 1.8 TeV with the D0 Detector.(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Gerber','','','','','','','','',1995,4,14,2449822,0,0,0,0),(2533,'Small Angle Muon and b-Quark Production in p pbar Collisions at(sqrt) s = 1800 GeV','Hoeneisen','','','','','','','','',1995,4,10,2449818,0,0,0,0),(2534,'Selected copies of transparencies from Moriond QCD Conference','n/a','','','','','','','','',1995,4,14,2449822,0,0,0,0),(2535,'Search for W Boson Pair Production in p pbar Collisions at (sqrt) s= 1.8 TeV ( D0PUB-95-3)','Abachi, et. al.','','','','','','','','',1995,3,31,2449808,0,0,0,0),(2536,'Resummation of Gluon Radiation around an Initial Parton','Astur','','','QCD','','','','','',1995,4,13,2449821,0,0,0,0),(2537,'D0 Analysis Computing Recommendations','Fuess/Gibbard/Greenlee/Hobbs/ Manning/Prosper/ Womersley','','','','','','','','',1995,4,19,2449827,0,0,0,0),(2538,'More Convenient Roots of the Quadratic Equation','Linnemann','','','','','','','','',1995,7,17,2449916,0,0,0,0),(2539,'Highlights of D0 Physics','Hobbs/Brandt/Greenlee/Merritt/Quintas/Zieminski','','','','','','','$D0_PRI/2539/m_note2539.ps','',1995,4,14,2449822,2002,2,28,2452334),(2540,'Search for W\' in Run 1A Data','Eppley/Yepes','','','','','','','','',1995,4,21,2449829,0,0,0,0),(2541,'Scintillator Timing and T0 Calibration','Markeloff','','','','','','','','',1995,4,10,2449818,0,0,0,0),(2542,'The D0 Upgrade','The D0 Collaboration','','','','','','','','',1995,4,17,2449825,0,0,0,0),(2543,'Search for Fourth Generation Neutral Heavy Leptons','Jung/Wengler','','','','','','','','',1995,5,5,2449843,0,0,0,0),(2544,'Improvement to the D0 Luminosity Monitor Constant','Bantly/Brandt/Partridge/Perkins/ Puseljic','','','','','','','','',1995,12,29,2450081,0,0,0,0),(2545,'','Astur','','','','','','','','',0,0,0,0,0,0,0,0),(2546,'','Claes','','','','','','','','',0,0,0,0,0,0,0,0),(2547,'QCD at D0 and CDF (proceedings for Les Rencontres de Physique de laVallee D\'Aoste, Results and Perspectives in Particle Physics, La Thuile,Aosta Valley, March 5-11, 1995) (D0CONF-95-8)','Blazey','','','','','','','','',1995,5,26,2449864,0,0,0,0),(2548,'D0 Search for New Phenomena (presented at Recontres des MoriondXXX, March 11-18, 1995, Electroweak Interactions and Unified Theories)(D0CONF-95-9)','Eno','','','','','','','','',1995,5,26,2449864,0,0,0,0),(2549,'Muon Charge Asymmetry at the D0 Experiment','Narayanan/Quintas/Wood','','','','','','','$D0_PRI/2549/m_note2549.ps','',1995,4,18,2449826,2002,8,28,2452515),(2550,'The D0 Upgrade (presentation to the Fermilab Program AdvisoryCommittee)','Womersley','','','','','','','','',1995,4,28,2449836,0,0,0,0),(2551,'Muon System Pixel Trigger Rates in EF','Green, D.','','','','','','','','',1995,5,1,2449839,0,0,0,0),(2552,'','Hu, Ting','','','','','','','','',0,0,0,0,0,0,0,0),(2553,'Electron ID in the End Calorimeters using a likelihood method','Adam, Ian','','','','','','','','',1995,6,5,2449874,0,0,0,0),(2554,'A Detailed Study of Platic Scintillating Strips with AxialWavelength Shifting Fiber and VLPC Readout ( D0PUB-95-4)','Adams/Amos/Averill/Baringer/Chung/Hsieh/Li, H./ Linocoln/ Margulies/Neal/Neis/Oesch/Qian/Rijssenbeek/ Yasuda','','','','','','','','',1995,5,9,2449847,0,0,0,0),(2555,'Changes to Muon Level 2 in Spring 1995','Quintas/Fortner/Markeloff','','','','','','','','',1995,5,12,2449850,0,0,0,0),(2556,'Crud Removal from Muon Drift Chamber Wires using \"ZAP\" Cleaning','Marshall/Haggerty','','','','','','','','',1995,6,8,2449877,0,0,0,0),(2557,'Jet Energy Resolution','Bhattacharjee/Blazey/Hirosky','','','QCD','','','','','',1995,7,6,2449905,0,0,0,0),(2558,'B-Quark and ONIA Produciton at D0 (10th Topical Workshop onProton-Antiproton Collider Physics, Fermilab, May 9-13, 1995)','Bazizi','','','','','','','','',1995,5,13,2449851,0,0,0,0),(2559,'Reduction of Tevatron and Main Ring Induced Backgrounds int9e D0Detector','Butler, J./Denisov, D. /Diehl/ Drozhdin/Mokhov/Wood','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2560,'Observation of the Top Quark (presented at the 1995 Recontre dePhysique de la Vallee d\'Aoste on Results and Perspectives in ParticlePhysics, La Thuile, Italy, March 5-11, 1995) (D0CONF-95-11)','Greenlee','','','','','','','','',1995,0,0,2449687,0,0,0,0),(2561,'Recent Improvements in Electron Identification at the D0 Detector(APS, Washington DC, April 18, 1995)','Genik','','','','','','','','',1995,4,18,2449826,0,0,0,0),(2562,'Jet Shapes at D0 and CDF (submitted for the proceedings of theXXXth Rencontres de Moriond on QCD and High Energy Interactions, Les Arcs,Savoie, France, March 19-26, 1995) (D0CONF-95-12)','Streets','','','QCD','','','','$D0_PRI/2562/m_note2562.ps','',1995,7,6,2449905,2002,8,28,2452515),(2563,'Definition dependence of c in Z boson','Feher','','','','','','','','',1995,5,25,2449863,0,0,0,0),(2564,'','Feher','','','','','','','','',0,0,0,0,0,0,0,0),(2565,'','Feher','','','','','','','','',0,0,0,0,0,0,0,0),(2566,'','Feher','','','','','','','','',0,0,0,0,0,0,0,0),(2567,'D0CAP Design Report','Ahn/Fuess/Galli/Li/Lueking/ Paterno, L.','','','','','','','','',1995,5,17,2449855,0,0,0,0),(2568,'New Phenomena Studies for the Forward Study Group','Sawyer, L.','','','','','','','','',1995,5,16,2449854,0,0,0,0),(2569,'Description of the Preliminary Version of the Forward PreshowerDetector in UPG_GEANT','Sawyer, L.','','','','','','','','',1995,5,17,2449855,0,0,0,0),(2570,'A Cookbook Recipe for Optimizing Cuts in New Particle Searches','Yoshikawa','','','','','','','','',1995,5,24,2449862,0,0,0,0),(2571,'A Top Quark Mass Determination Using the HT Variable in ? + JetEvents at D0','Yoshikawa','','','','','','','','',1995,6,21,2449890,0,0,0,0),(2572,'The Transverse Energy Flow Differences of q and g Jets','Green','','','QCD','','','','','',1995,5,22,2449860,0,0,0,0),(2573,'D0 Physics Results (Transparencies shown at the 1995 AnnualFermilab DOE review)','Weerts','','','','','','','','',1995,5,23,2449861,0,0,0,0),(2574,'b-quark production cross section from \"muon+jet\" and \"muon+energyin cone\"','Hoeneisen','','','','','','','','',1995,5,11,2449849,0,0,0,0),(2575,'On Correcting Jets by Correcting the Electromagnetic and HadronicCalorimeters Separately','Astur','','','QCD','','','','$D0_PRI/2575/m_note2575.ps','',1995,5,23,2449861,2002,9,18,2452536),(2576,'Measurement of W & Z Inclusive Cross Sections and Determination ofthe W Decay Width (presented at the 10th Topical Workshop on pbar pCollider Physics, May 11, 1995, Fermilab)','Spadafora','','','','','','','','',1995,5,11,2449849,0,0,0,0),(2577,'Wg and Zg Production at Tevatron (Invited talk given at theInternational Symposium on Vector Boson Self-Interactions, UCLA, February1-3, 1995) (D0CONF-95-13)','Aihara','','','','','','','','',1995,2,3,2449752,0,0,0,0),(2578,'Managing and Serving a Multi-Terabyte Data Set at the Fermilab D0Experiment','Lueking','','','','','','','','',1995,5,31,2449869,0,0,0,0),(2579,'A Multiplicity Study in Jet Events with Large Rapidity Separation','Taylor/Brandt/May','','','QCD','','','','','',1995,3,20,2449797,0,0,0,0),(2580,'W and Z Boson Production in p pbar Collisions at (sqrt) s = 1.8 TeV (D0PUB-95-5)','Abachi, et. al.','','','','','','','','',1995,5,26,2449864,0,0,0,0),(2581,'D0 Running at Center of Mass Energies of 630 GeV and 1200 GeV','Blazey/Brandt/Elvira/Fahey/Grannis/Heuring/Hirosky/Johns/Krane/May/ McCarthy/Montgomery/Snow','','','','','','','','',1995,6,8,2449877,0,0,0,0),(2582,'Inclusive J/u Production at D0 (note available as a ps file)PRJ$ROOT226:[BPHYSICS_3.D0NOTES]D0NOTE_PSI.PS] (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Murphy, C.','','','','','','','','',1995,5,31,2449869,0,0,0,0),(2583,'The SAMUS Scintillation Pixel Counters Simulation Package.','Denisov, D./Mayorov/Womersley','','','','','','','$D0_PRI/2583/m_note2583.ps','',1995,5,25,2449863,2002,8,28,2452515),(2584,'Measurements of Heavy Quark Production at D0 (D0CONF-95-14)','Markosky','','','','','','','','',1995,5,31,2449869,0,0,0,0),(2585,'Search for W pair production in p pbar collisions at (sqrt) s = 1.8TeV(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Johari','','','','','','','','',1995,4,30,2449838,0,0,0,0),(2586,'A Preliminary Analysis of the Mass of the Top Quark using SQUAW inthe All-jets Channel','Won','','','','','','','$D0_PRI/2586/m_note2586.ps','',1995,6,9,2449878,2002,8,28,2452515),(2587,'Estimation of Double Interaction Background for W+Jets events','Qi','','','QCD','','','','','',1995,5,1,2449839,0,0,0,0),(2588,'W/Z + Jets Production at the Tevatron Pbar P Collider (presented atXXXth Rencontres de Moriond, \"QCD and High Energy Interactions\", March19-26, 1995, Les Arcs, France) (D0CONF-95-15)','Yu','','','QCD','','','','','',1995,3,26,2449803,0,0,0,0),(2589,'Using Modern Software Tools to Design, Simulate and Test a Level 1Trigger Sub-System for the DZero Detector (presented at 1995 IEEEConference on Real Time Computer Applications in Nuclear Particle andPlasma Physics (RT-95), Michigan State Univ., May 23-26, 1995)','Angstadt/Borcherding/Johnson/ Moreira','','','','','','','','',1995,5,26,2449864,0,0,0,0),(2590,'Upgrade Trigger Single Interaction Simulations for the D0Scintillating Fiber Tracker','Blazey, Bloom','','','','','','','','',1995,6,15,2449884,0,0,0,0),(2591,'A Study of Kinematic Fitting of ?? Events','Hall R., Hobbs J.,Zhu ZH.','','','','','','','$D0_PRI/2591/m_note2591.ps','',1996,10,15,2450372,2002,8,28,2452515),(2592,'Muon and b-Quark Production Cross Sections from the 1992-93 Run(D0CONF-95-16)','Bazizi','','','','','','','','',1995,6,30,2449899,0,0,0,0),(2593,'Measurement of the Top Quark Mass at D0 (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Snyder','','','','','','','','',1995,6,13,2449882,0,0,0,0),(2594,'Multivariate Studies of the Top (transparencies from Plenarysession of the D0 Collaboration Mtg. 3/24/95)','Bhat','','','','','','','','',1995,6,15,2449884,0,0,0,0),(2595,'Multivariate Searches for the Top Quark (transparencies from pbar pworkshop May 9-13, 1995)','Bhat','','','','','','','','',1995,6,15,2449884,0,0,0,0),(2596,'Jet Correlation Studies as a Function of Rapidity Interval at D0(talk given at XXXth Rencontres de Moriond, \"QCD and High EnergyInteratctions\", March 19-26, 1995, Les Arcs, France) (D0CONF-95-17)','Heuring','','','QCD','','','','$D0_PRI/2596/m_moriond95.ps','',1995,7,6,2449905,1998,8,17,2451043),(2597,'Determination of the D0 Jet Energy Corrections','Kehoe/Astur','','','QCD','','','','','',1995,6,12,2449881,0,0,0,0),(2598,'Effect of Some Vapors on Microstrip Detectors','Amos/Finocchiaro/Gobbi/Neis/ Oesch/ Peskov/Rubinov','','','','','','','','',1995,6,20,2449889,0,0,0,0),(2599,'Mixing single muon events in EF WAMUS region with minbias eventsfrom teh Run Ib','Sirotenko','','','','','','','','',1995,6,17,2449886,0,0,0,0),(2600,'Single Top Physics with a High Luminosity Tevatron','Baringer/Heinson','','','','','','','$D0_PRI/2600/m_note2600.ps','',1995,6,22,2449891,2002,8,28,2452515),(2601,'Possible Minimal Solutions for D0 Detector Shielding Based onGCALOR and MARS13 Simulations','Mokhov/Sirotenko','','','','','','','$D0_PRI/2601/m_2601.pdf','',1995,7,21,2449920,2004,12,6,2453346),(2602,'EF Muon ID for b-Tagging in the Post-Zap Era - Revised 8/1/95','Butler, J.','','','','','','','$D0_PRI/2602/m_note2602.ps','',1995,6,28,2449897,2002,8,28,2452515),(2603,'A first look at electron finding in the D0 upgraded detector','daMotta','','','','','','','$D0_PRI/2603/m_note2603.ps','',1995,3,31,2449808,2002,8,28,2452515),(2604,'W/Z + Jets Production at the Tevatron (talk given at the 10thTopical Workshop on Proton-Antiproton Collider Physics, Fermilab, 9-13, May1995) (D0CONF-95-18)','Yu','','','QCD','','','','','',1995,7,6,2449905,0,0,0,0),(2605,'High Pt Single Muon Trigger Rate Estimates for the Intermediate EtaRegion During Run 2','Diehl','','','','','','','','',1995,6,27,2449896,0,0,0,0),(2606,'Transverse Energy Distributions within Jets in p pbar Collisions at(sqrt) s = 1.8 TeV (submitted to the International Europhysics Conferenceon High Energy Physics (HEP 95), Brussels, Belgium, 27 July - 2 August1995) (D0CONF-95-19)','Abbott/Streets','','','QCD','','','','$D0_PRI/2606/m_note2606.ps','',1995,7,6,2449905,2002,8,28,2452515),(2607,'The TeV2000 Workshop (presented at teh 10th Topical Workshop onProton-Antiproton Collider Physics, Fermilab, May 1995) (D0CONF-95-20)','Womersley','','','','','','','','',1995,6,29,2449898,0,0,0,0),(2608,'','Yu','','','','','','','','',0,0,0,0,0,0,0,0),(2609,'Search for First and Second Generation Leptoquarks at D0 (submittedto the International Europhysics Conference on High Energyhysics (HEP 95),Brussels, Belgium, 27 July - 2 August 1995) (D0CONF-95-21)','Abachi, et. al.','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2610,'Update on the Second Generation Leptoquark','Norman','','','','','','','$D0_PRI/2610/m_2610_LEPTO_MUON_UP.ps','',1995,6,29,2449898,2002,2,28,2452334),(2611,'D0 Top Quark Mass Analysis (to be published in the Proceedings,10th Topical Workshop on Proton-Antiproton Collider Physics, Fermilab,9-13, May 1995) (D0CONF-95-22)','Strovink','','','','','','','','',1995,6,28,2449897,0,0,0,0),(2612,'','Protopopescu','','','','','','','','',0,0,0,0,0,0,0,0),(2613,'D0 W/Z Contributions to 1995 APS meeting','Aihara/Demarteau','','','','','','','','',1995,6,30,2449899,0,0,0,0),(2614,'Search for Squarks and Gluinos in p pbar collisions at the D0Detector (submitted to the International Europhysics Conference on HighEnergyhysics (HEP 95), Brussels, Belgium, 27 July - 2 August 1995)(D0CONF-95-23)','The D0 Collaboration','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2615,'Trigger Equation and Error Calculations Using Analytical Techniques','Johnson, M.','','','','','','','','',1995,7,5,2449904,0,0,0,0),(2616,'Second Generation Leptoquark Search in p pbar Collisions at (sqrt)s = 1.8 TeV ( D0PUB-95-6)','Abachi, et. al.','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2617,'The D0 Monte Carlo Status and Plans (D0 Summer Workshop, Ann Arbor)','Raja','','','','','','','','',1995,6,13,2449882,0,0,0,0),(2618,'Color Coherent Radiation in Multijet Events from pbar p Collsiionsat (sqrt) s = 1.8 TeV (submitted to the International EurophysicsConference on High Energy Physics (HEP 95), Brussels, Belgium, 27 July - 2August 1995) (D0CONF-95-24)','The D0 Collaboration','','','QCD','','','','','',1995,7,6,2449905,0,0,0,0),(2619,'Results on Soft Gluon Resummation and Color Coherence in p pbarCollisions at (sqrt) s = 1.8 TeV (Pbar P Proceedings) (D0CONF-95-25)','Varelas','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2620,'Search for Anomalous Couplings in WW and WZ Measurements at theTevatron (D0 and CDF Results) (Pbar P Conference) (D0CONF-95-26)','Diehl','','','','','','','','',1995,6,26,2449895,0,0,0,0),(2621,'Search for Light Top Squarks with the D0 Detector (submitted to theInternational Europhysics Conference on High Energy Physics (HEP 95),Brussels, Belgium, 27 July - 2 August 1995) (D0CONF-95-27)','Claes','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2622,'The Search for Squarks, Gluinos and Stop Squarks in D0 (Pbar PProceedings) (D0CONF-95-28)','Claes','','','','','','','','',1995,7,5,2449904,0,0,0,0),(2623,'Measurement of W and Z pT Distributions at the Tevatron (Pbar PProceedings) (D0CONF-95-29)','Puseljic','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2624,'Plenary Talk (D0 Summer Workshop, Ann Arbor, Michigan) Pleasecontact Becky at x2039 or Becky@fnal.gov if you would like a copy (229pages).','n/a','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2625,'Particle ID (D0 Summer Workshop, Ann Arbor, Michigan) Pleasecontact Becky at x2039 or Becky@fnal.gov if you would like a copy (152pages).','n/a','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2626,'W/Z (D0 Summer Workshop, Ann Arbor, Michigan) Please contact Beckyat x2039 or Becky@fnal.gov if you would like a copy (184 pages).','n/a','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2627,'QCD (D0 Summer Workshop, Ann Arbor, Michigan) Please contact Beckyat x2039 or Becky@fnal.gov if you would like a copy (373 pages).','n/a','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2628,'New Phenomena (D0 Summer Workshop, Ann Arbor, Michigan) Pleasecontact Becky at x2039 or Becky@fnal.gov if you would like a copy (120pages).','n/a','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2629,'B-Physics (D0 Summer Workshop, Ann Arbor, Michigan) Please contactBecky at x2039 or Becky@fnal.gov if you would like a copy (635 pages).','n/a','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2630,'W/Z - QCD (D0 Summer Workshop, Ann Arbor, Michigan) Please contactBecky at x2039 or Becky@fnal.gov if you would like a copy (121 pages).','n/a','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2631,'Upgrade (D0 Summer Workshop, Ann Arbor, Michigan) Please contactBecky at x2039 or Becky@fnal.gov if you would like a copy (673 pages).','n/a','','','','','','','','',1995,7,6,2449905,0,0,0,0),(2632,'Rapidity Gaps between jets at D0 and CDF (to be published in theProceedings of the 10th Topical Workshop on Proton Antiproton ColliderPhysics, May 9-13, 1995, Fermilab) (D0CONF-95-30)','Bertram','','','QCD','','','','$D0_PRI/2632/m_note2632.ps','',1995,7,7,2449906,2002,8,28,2452515),(2633,'Muon Wide Angle Chamber Efficiencies in Run Ib','Hedin','','','','','','','','',1995,7,31,2449930,0,0,0,0),(2634,'Efficiency of the single muon detection in SAMUS spectrometer ofthe D0 detector for RUN 1B (new L1.5 trigger tables)','Denisov, D./Eroshin','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2635,'Smearing of muons using resolution and efficiency functions insteadof GEANT and trigger simulation in the SAMUS spectrometer','Denisov,D./Eroshin','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2636,'','Jerger','','','','','','','','',0,0,0,0,0,0,0,0),(2637,'Dijet Angular Distributions Measured by the D0 Detector','Fatyga, K.','','','QCD','','','','','',1995,4,30,2449838,0,0,0,0),(2638,'Search for the Top Quark at D0 using Multivariate Methods (to bepublished in the Proceedings of the 10th Topical Workshop onProton-Antiproton Collider Physics) (D0CONF-95-31)','Bhat','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2639,'Dimuon Production and B? - Bbar? Mixing at D0 (10th topicalworkshop on proton-Antiproton Collider Physics) (D0CONF-95-32)','Feher','','','','','','','','',1995,7,5,2449904,0,0,0,0),(2640,'J/u Production in p pbar Collisions at (sqrt) s = 1.8 TeV(submitted to the International Europhysics Conference on High EnergyPhysics (HEP 95), Brussels, Belgium, 27 July - 2 August 1995) (D0CONF-95-33)','The D0 Collaboration','','','','','','','','',1995,7,31,2449930,0,0,0,0),(2641,'Measurement of the g Cross Section at D0 Using Dimuons (submittedto the International Europhysics Conference on High Energy Physics (HEP95), Brussels, Belgium, 27 July - 2 August 1995) (D0CONF-95-34)','The D0 Collaboration','','','','','','','','',1995,7,31,2449930,0,0,0,0),(2642,'Inclusive Dimuon and b-quark Production Cross Sections in p pbarCollisions at (sqrt) s = 1.8 TeV (submitted to the InternationalEurophysics Conference on High Energy Physics (HEP 95), Brussels, Belgium,27 July - 2 August 1995) (D0CONF-95-35)','The D0Collaboration','','','','','','','','',1995,7,31,2449930,0,0,0,0),(2643,'Inclusive Muon and b Quark Production Cross Sections in p pbarCollisions at (sqrt) s = 1.8 TeV (submitted to the InternationalEurophysics Conference on High Energy Physics (HEP 95), Brussels, Belgium,27 July - 2 August 1995) (D0CONF-95-36)','The D0Collaboration','','','','','','','','',1995,7,31,2449930,0,0,0,0),(2644,'Measurement of B? - Bbar ? Mixing Using Dimuons at D0 (submitted tothe International Europhysics Conference on High Energy Physics (HEP 95),Brussels, Belgium, 27 July - 2 August 1995) (D0CONF-95-37)','TheD0 Collaboration','','','','','','','','',1995,7,31,2449930,0,0,0,0),(2645,'','Merritt','','','','','','','','',0,0,0,0,0,0,0,0),(2646,'A Study of the Strong Coupling Constant Using W + Jets Processes (submitted to the International Europhysics Conference on High Energy Physics (HEP 95), Brussels, Belgium, 27 July - 2 August 1995) (D0CONF-95-38)','The D0 Collaboration','','','QCD','','','','','',1995,7,31,2449930,0,0,0,0),(2647,'Jet Correlation Studies as a Function of Rapidity Interval at D0(submitted to the International Europhysics Conference on High EnergyPhysics (HEP 95), Brussels, Belgium, 27 July - 2 August 1995) (D0CONF-95-39)','The D0 Collaboration','','','QCD','','','','','',1995,7,31,2449930,0,0,0,0),(2648,'Studies of Topological Distributions of the Three- and Four-JetEvents in p pbar Collisions at (sqrt) s = 1800 GeV with the D0 Detector.(submitted to the International Europhysics Conference on High EnergyPhysics (HEP 95), Brussels, Belgium, 27-July - 2 August 1995) (D0CONF-95-40)','The D0 Collaboration','','','QCD','','','','','',1995,7,31,2449930,0,0,0,0),(2649,'Singe Photon, Photon-Jet and Diphoton Production at D0 (submittedto the International Europhysics Conference on High Energy Physics (HEP95), Brussels, Belgium, 27 July - 2 August 1995) (D0CONF-95-41)','The D0 Collaboration','','','QCD','','','','','',1995,7,31,2449930,0,0,0,0),(2650,'Rapidity Gaps between Jets at D0 (submitted to the InternationalEurophysics Conference on High Energy Physics (HEP 95), Brussels, Belgium,27 July - 2 August 1995) (D0CONF-95-42)','The D0Collaboration','','','QCD','','','','','',1995,7,31,2449930,0,0,0,0),(2651,'Measurement of the Inclusive Triple Differential Dijet CrossSection, d3s/dETdh1dh2 in p pbar Collisions at (sqrt) s = 1.8 TeV(submitted to the International Europhysics Conference on High EnergyPhysics (HEP 95), Brussels, Belgium, 27 July - 2 August 1995) (D0CONF-95-43)','The D0 Collaboration','','','QCD','','','','','',1995,7,31,2449930,0,0,0,0),(2652,'RAPIDITY CORRELATIONS BEWTEEN high PT Intermediate Vector Bosonsand Jets in p pbar Collisions at (sqrt) s = 1.8 TeV (submitted to theInternational Europhysics Conference on High Energy Physics (HEP 95),Brussels, Belgium, 27 July - 2 August 1995) (D0CONF-95-44)','TheD0 Collaboration','','','','','','','','',1995,7,31,2449930,0,0,0,0),(2653,'','Collaboration','','','','','','','','',0,0,0,0,0,0,0,0),(2654,'Top Quark Mass Fitting in the Dilepton Channel by ApproximateIntegration Over Neutrino Variables','Varnes','','','','','','','$D0_PRI/2654/m_note2654.ps','',1995,7,13,2449912,2002,8,28,2452515),(2655,'New Particle Searches at the Tevatron (transparencies from FermilabUsers Annual Meeting 1995)','Gallas','','','','','','','','',1995,7,16,2449915,0,0,0,0),(2656,'Level 2 Capacity Calculations and Measurements','Linnemann/Hoftun/Fahland/ Tartaglia','','','','','','','$D0_PRI/2656/m_note2656.ps','',1995,10,13,2450004,2002,8,28,2452515),(2657,'Two Jet Production and Triple Differential Cross Sections(D0CONF-95-45)','Nang','','','QCD','','','','','',1995,8,7,2449937,0,0,0,0),(2658,'Top Mass Analysis of Dilepton Events','Heintz','','','','','','','','',1995,7,16,2449915,0,0,0,0),(2659,'A Measurement of the Top Quark Mass with Dilepton Events','Heintz','','','','','','','','',1995,8,5,2449935,0,0,0,0),(2660,'Vx Tools Support Package (VSB specific)','Li, Y.','','','','','','','','',1994,11,1,2449658,0,0,0,0),(2661,'Brief Guide to Use VxWorks at D0','Li, Y.','','','','','','','','',1994,7,18,2449552,0,0,0,0),(2662,'Parton Distribution Function in b bar Production with JJu Events','Green','','','','','','','','',1995,7,10,2449909,0,0,0,0),(2663,'Diphoton Production in p pbar Collisions at (sqrt) s = 1.8 TeV(D0CONF-95-46)','Womersley','','','','','','','','',1995,7,25,2449924,0,0,0,0),(2664,'Search for Squarks and Gluinos with the D0 Detector (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Goforth','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2665,'Efficiency and Resolution of a Scintillating Fiber Doublet','Adams','','','','','','','','',1995,7,19,2449918,0,0,0,0),(2666,'An Observation of the energy deposited in the solenoid magnet atthe D0 upgraded detector','da Motta','','','','','','','$D0_PRI/2666/m_note2666.ps','',1995,5,4,2449842,2002,8,28,2452515),(2667,'Z Calibration Detector Proposal','Feher/Rijssebeek/Demarteau/Para','','','','','','','','',1995,7,20,2449919,0,0,0,0),(2668,'D0 Migration to UNIX: I. Key Features of hte Current SoftwareEnvironment','Bhat','','','','','','','','',1995,7,31,2449930,0,0,0,0),(2669,'Studies of the Effect of Architecture and Training Parameters onthe Performance of the Neural Networks','Mirles/Bhat','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2670,'Tracking with scintillating fibers (presented at the 4thInternational Conference on Advanced Technology and Particle Physics, Como,Italy, 3-7, October 1994) (D0CONF-95-47)','Ruchti','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2671,'Physics Prospects with the D0 Upgrade (presented at the 10thTopical Workshop on Proton-Antiproton Colider Physics, May 9-13, 1995,Fermilab) (D0CONF-95-48)','Ruchti','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2672,'Transparencies from the D0 Silicon Meeting on Probe Station Testingat UC Riverside','Ellison/Lipton','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2673,'Transparencies from the D0 Silicon Meeting FNAL July 21, 1995','Ellison/Lipton','','','','','','','','',1995,7,21,2449920,0,0,0,0),(2674,'Jet Multipliciyt of TeVatron jet events (as a probe of theunderlying colour structure). (Transparencies from Special QCD meeting June21, 1995)','Summers, D.','','','QCD','','','','','',1995,8,7,2449937,0,0,0,0),(2675,'Transparencies from Fiber Tracking General Group Meetings:12/15/94-6/11/95','Bross','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2676,'Transparencies from Fiber Tracking Analysis Meetings:2/2/95-5/11/95','Bross','','','','','','','','',1995,7,2,2449901,0,0,0,0),(2677,'Transparencies from Fermilab - Rockwell 1024 Channel CassetteDesign Review Meeting: June 29-30','Bross','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2678,'D0 Upgrade 1024 Channel VLPC Cassette Design ReviewRockwell-Fermilab 6-29-95 ','Rockwell-Fermilab','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2679,'Effects of Radiation Damage on the D0 Silicon Tracker','Ellison/Heinson','','','','','','','$D0_PRI/2679/m_note2679.ps','',1995,7,27,2449926,2002,8,28,2452515),(2680,'History of Muon Trigger Level 1 and Level 1.5 Hardware and Level 2Code and Status of Offline Simulations for Run 1B','Quintas/Vititoe','','','','','','','','',1995,8,3,2449933,0,0,0,0),(2681,'QCD Corrections to Squark and Gluino Production at the Tevatron','Hopker/Beenakker/Spira/Zerwas','','','','','','','','',1995,7,25,2449924,0,0,0,0),(2682,'Status of SUSY Searches at D0 (presented at the Valencia \'95International Workshop on Elementary Particle Physics - Present and Future)(D0CONF-95-49)','Norman','','','','','','','$D0_PRI/2682/m_2682_VALENCIA_PROC.ps','',1995,8,7,2449937,2002,2,28,2452334),(2683,'Construction and Testing of the Prototype Inside Cylinder RibbonLaying Machine','Carabello/Gau/Koltick/Pischalnikov/ Michael','','','','','','','','',1995,8,2,2449932,0,0,0,0),(2684,'Results on Top Quark Production from D0 (Presented at the Workshopon the Physics of the Top Quark, IITAP, Iowa State University, Ames, Iowa,May 25-26, 1995) (D0CONF-95-50)','Wimpenny','','','','','','','','',1995,8,1,2449931,0,0,0,0),(2685,'Test of a Polyethylene Shield for the Central Muon A-layer Upgrade','Diehl/Cobau/Eno/Lyon/Thompson, J.','','','','','','','','',1995,8,3,2449933,0,0,0,0),(2686,'Technical Design Report for the Upgrade of the ICD for D0 Run 2','L. Sawyer, K. De, P. Draper, E. Gallas, J. Li, M. Sosebee, R.W. Stephens, A. White','','gallas','CALORIMETER','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/2686/M_ICD_TDR.PS;1','',1997,6,30,2450630,1998,10,18,2451105),(2687,'Effect of Muon Momentum Resolution on W Mass Measurement with theUpgraded D0 Detector','Heintz/Wood','','','','','','','$D0_PRI/2687/m_note2687.ps','',1995,8,2,2449932,2002,8,28,2452515),(2688,'Very High Momentum Muons - Detection in forward Region(transparencies from muon ID meeting)','Mayorov/Quintas/Denisov, D.','','','','','','','','',1995,8,2,2449932,0,0,0,0),(2689,'Latest results in fiber tracking from the D0 Upgrade (Presented atSPIE\'95, Optical Science, Engineering, and Instrumentation Symposium, July10-14, 1995, San Diego, California) (D0CONF-95-51)','Ruchti','','','','','','','','',1995,8,28,2449958,0,0,0,0),(2690,'Search for Anomalous WW and WZ Production at D0 (subm. to HEP 95, Brussels,7/27-8/2/95 27 & 17th InternationalSymposium on Lepton-Photon Interactions, Beijing, China, August 10-15,1995) (D0CONF-95-52)','The D0 Collaboration','','','','','','','','',1995,7,25,2449924,0,0,0,0),(2691,'Tests of QCD in W and Z Production at Tevatron (submitted to HEP 95,Brussels,7/27-8/2/95 & 17th Intl Symposium on Lepton-Photon Interactions, Beijing, China,8/10-15/95) (D0CONF-95-53)','The D0 Collaboration','','','','','','','','',1995,8,1,2449931,0,0,0,0),(2692,'Preliminary C F T -- A (f) Trigger Studies using GEANT','R. T. deMello Neto','','','','','','','','',1995,4,1,2449809,0,0,0,0),(2693,'','Soo-Bong','','','','','','','','',0,0,0,0,0,0,0,0),(2694,'Well-Tempered Fortran with /d0dst/','Ahn','','','','','','','','',1995,8,13,2449943,0,0,0,0),(2695,'Physics with the Tevatron The D0 and CDF Upgrades','Tuts','','','','','','','','',1995,7,27,2449926,0,0,0,0),(2696,'General Upgrade Meeting 7/21/95 3-5pm, 9th Circle','Tuts','','','','','','','','',1995,7,21,2449920,0,0,0,0),(2697,'Observation of the Top Quark (Presented at the XXXth Rencontres deMoriond, QCD and High Energy Hadronic Interactions, Les Arcs, France, March19-26, 1995) (D0CONF-95-54)','Thompson','','','','','','','','',1995,5,1,2449839,0,0,0,0),(2698,'Observation of the Top Quark ( D0PUB-95-7)','Abachi et.al.','','','','','','','','',1995,2,1,2449750,0,0,0,0),(2699,'Transition Radiation Detector in the D0 Colliding Beam Experimentat Fermilab (Presented at the Vienna Wire Chamber Conference 95, Vienna,Austria, February 13-17, 1995) (D0CONF-95-55)','Piekarz','','','','','','','','',1995,4,1,2449809,0,0,0,0),(2700,'Top Physics at D0 (17th International Symposium on Lepton-PhotonInteractions, Beijing, China, August 10-15, 1995)','Klima','','','','','','','','',1995,8,7,2449937,0,0,0,0),(2701,'Measurement of the WWg Gauge Boson Couplings in ppbar Collisions at?s = 1.8 TeV ( D0PUB-95-8)','Abachi et. al.','','','','','','','','',1995,5,11,2449849,0,0,0,0),(2702,'Search for Anomalous ZZg and Zgg Couplings with D0 (Presented atthe International Symposium on Vector Boson Interactions, UCLA, LosAngeles, California, February 1-3, 1995) (D0CONF-95-56)','Landsberg','','','','','','','','',1995,3,1,2449778,0,0,0,0),(2703,'Observation of the Top Quark (Presented at the 30th Rencontres deMoriond on Electroweak Interactions and Unified Theories, Les Arcs, France,March 11-18, 1995) (D0CONF-95-57)','Klima','','','','','','','$D0_PRI/2703/m_note2703.ps','',1995,5,1,2449839,2002,8,28,2452515),(2704,'Kinematic acceptance for top squarks to dielectrons using the D0top to dielectrons analysis cuts','Blessing/Boehnlein','','','','','','','$D0_PRI/2704/m_note2704.ps','',1995,8,25,2449955,2002,8,28,2452515),(2705,'Proposed Timing Scheme for D0 Detectors in Run II','Baldin/Hansen','','','','','','','','',1995,7,7,2449906,0,0,0,0),(2706,'Study of Magnetic Shielding Configurations for the ICDPhoto-multiplier Tubes in the D0 Upgrade.','Stephens R., Fan A., PoolT. J., Cooper G.','','Stephens','CALORIMETER','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/2706/m_b_field_studies.ps','',1996,10,23,2450380,1999,1,29,2451208),(2707,'','Boehnlein','','','','','','','','',0,0,0,0,0,0,0,0),(2708,'More on Queueing Theory and Upgrade L2','Linnemann','','','','','','','$D0_PRI/2708/m_note2708.ps','',1995,8,29,2449959,2002,8,28,2452515),(2709,'Materials in the D0 Upgrade','Landsberg','','','','','','','$D0_PRI/2709/m_note2709.ps','',1995,9,1,2449962,2002,8,28,2452515),(2710,'K? -> ?+?- reconstruction at D0','Burtovoy','','','','','','','','',1995,10,2,2449993,0,0,0,0),(2711,'Simulation of the Test Shielding in the D0 Forward Muon System','Striganov, S. ','','','','','','','','',1995,8,31,2449961,0,0,0,0),(2712,'Trigger Efficiency for W -> mu in Run 1B','Quintas','','','','','','','','',1995,9,21,2449982,0,0,0,0),(2713,'Aggressive Shielding Strategies for the Muon Upgrade','Diehl','','','','','','','$D0_PRI/2713/m_max_shield.ps','',1995,9,1,2449962,2004,4,30,2453126),(2714,'Using CTool Clustering with electrons near jets at the D0 upgradeddetector','da Motta, H.','','','','','','','$D0_PRI/2714/m_note2714.pdf','',1995,8,21,2449951,2002,8,28,2452515),(2715,'Study of Jet Structure With Subjet Multiplicity','Astur','','','QCD','','','','','',1995,10,2,2449993,0,0,0,0),(2716,'Run Ib Muon Event Scanning','Hedin/Lagger/Nicholson','','','','','','','','',1995,9,25,2449986,0,0,0,0),(2717,'Measurements of the W and Z Inclusive Cross Sections andDetermination of the W Decay Width (To be published in the Proceedings,10th Topical Workshop on p pbar Collider Physics, Fermilab, May 9-13, 1995)(D0CONF-95-58)','Spadafora','','','','','','','','',1995,5,13,2449851,0,0,0,0),(2718,'Desktop Video Conferencing','Partridge/Watts','','','','','','','','',1995,9,8,2449969,0,0,0,0),(2719,'The Muon Upgrade Intermediate Eta A-Layer Scintillation Counters','Diehl/Ito/Butler, J./Denisov, D./ Green, D./Kohli/Shivpuri/Eno','','','','','','','$D0_PRI/2719/m_EFA_scint.ps','',1995,9,19,2449980,2004,4,30,2453126),(2720,'','Eppley','','','','','','','','',0,0,0,0,0,0,0,0),(2721,'Drift Study of the TVBS and TVBS_F Signals','Chappa','','','','','','','','',1995,9,8,2449969,0,0,0,0),(2722,'','Chappa','','','','','','','','',0,0,0,0,0,0,0,0),(2723,'Limits on the Anomalous ZZg and Zgg Couplings in p pbar Collisionsat (sqrt) s = 1.8 TeV (Submitted to the International EurophysicsConference on High Energy Physics (HEP 95), Brussels, Belgium, July 27-Aug.2, 1995) (D0CONF-95-59)','Abachi, et. al.','','','','','','','','',1995,7,1,2449900,0,0,0,0),(2724,'Diphoton Production in p pbar Collisions at (sqrt) s = 1.8 TeV(Submitted to the 17th International Symposium on Lepton-PhotonInteractions (LP95), Beijing, China, August 10-15, 1995) (D0CONF-95-60)','Abachi, et. al.','','','','','','','','',1995,7,1,2449900,0,0,0,0),(2725,'Top Quark Search with the D0 1992-93 Data Sample (Submitted toPhysical Review D.) ( D0PUB-95-9)','Abachi, et al.','','','','','','','','',1995,7,1,2449900,0,0,0,0),(2726,'A Study of the Strong Coupling Constant Using W + Jets Processes(Submitted to Physical Review Letters) ( D0PUB-95-10)','D0Collaboration','','','QCD','','','','','',1995,7,1,2449900,0,0,0,0),(2727,'Searches for New Gauge Bosons Using the D0 Detector (Submitted tothe International Europhysics Conference on High Energy Physics (HEP 95),Brussels, Belgium, July 27-Aug. 2, 1995) (D0CONF-95-61)','Abachi, et. al.','','','','','','','','',1995,7,1,2449900,0,0,0,0),(2728,'Inclusive b Quark and Heavy Quarkonium Production at D0 (to appearin the Proceedings of the 10th Topical Workshop on Proton-AntiprotonCollider Physics, Fermilab, May 9-13, 1995) (D0CONF-95-62)','Bazizi','','','','','','','','',1995,7,1,2449900,0,0,0,0),(2729,'Search for W Boson Pair Production in p pbar Collisions at (sqrt) s= 1.8 TeV (Submitted to the International Europhysics Conference on HighEnergy Physics (HEP 95), Brussels, Belgium, July 27-Aug. 2, 1995)(D0CONF-95-63)','Abachi, et. al.','','','','','','','','',1995,7,19,2449918,0,0,0,0),(2730,'A Simulation Package for the D0 Silicon Tracker','Drinkard','','','','','','','','',1995,9,27,2449988,0,0,0,0),(2731,'Design Description for the CF Bottom B Layer Scintillator Counterand Support Frame','Cease/Diehl/Ito/Miller, D./Mondal','','','','','','','','',1995,7,12,2449911,0,0,0,0),(2732,'D0 and E811 Hard Single Diffraction Trigger: Status Report andRequest for Separators Off Run','Brandt/Amos/Hirosky/ The D0 Collaboration','','','','','','','','',1995,9,14,2449975,0,0,0,0),(2733,'External inputs into the D0 Measurements of W and Z boson crosssections, B (W -> lu) and G (W)','Grudberg/Lami/Wood','','','','','','','$D0_PRI/2733/m_note2733.ps','',1995,7,28,2449927,2002,8,28,2452515),(2734,'VOID','VOID','','','','','','','','',0,0,0,0,0,0,0,0),(2735,'Studies of Topological Distributions of Inclusive Three- andFour-Jet Events in p pbar Collisions at (sqrt) s = 1800 GeV with the D0Detector ( D0PUB-95-11)','Abachi, et. al.','','','','','','','','',1995,10,2,2449993,0,0,0,0),(2736,'Prospects for Top & Stop Quarks at a High Luminosity Tevatron(Presented at EPS 95, Brussels) - Transparencies','De','','','','','','','','',1995,7,29,2449928,0,0,0,0),(2737,'','Puseljic','','','','','','','','',0,0,0,0,0,0,0,0),(2738,'Top Search via the Dimuon Channel at D0 (D0CONF-95-64)','Bantly, Hall','','','','','','','','',1995,8,20,2449950,0,0,0,0),(2739,'','Heintz','','','','','','','','',0,0,0,0,0,0,0,0),(2740,'','Heintz','','','','','','','','',0,0,0,0,0,0,0,0),(2741,'Event Generators and Perturbation Theory (Univ. of D0)','Paige','','','','','','','','',1995,8,17,2449947,0,0,0,0),(2742,'\"The 10 Perils of Paw\" or Practical Statistics (Univ. of D0)','Schellman','','','','','','','','',1995,9,14,2449975,0,0,0,0),(2743,'Photo- and Hadro-Production of Charm and Beauty at Fermilab (EPS\'95 Brussels) (D0CONF-95-65)','Maciel','','','','','','','','',1995,10,2,2449993,0,0,0,0),(2744,'Search for the Top Quark in the Electron + Jets + Soft Muon Channelat D0 (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Xu, Haowei','','','','','','','','',1995,5,31,2449869,0,0,0,0),(2745,'The Inclusive Cross Section for Isolated Photons in Run 1A','Linn','','','','','','','','',1995,6,19,2449888,0,0,0,0),(2746,'Processor Based Run II Level 2 Trigger','Abolins/Brock/Edmunds/Geld/Gross/Laurens/Linnemann/Owen/Varelas/Weerts','','','','','','','','',1995,10,4,2449995,0,0,0,0),(2747,'Calculation of dimuon correlation using MNR and CLEO packages','Park, Y. M.','','','','','','','','',1995,10,3,2449994,0,0,0,0),(2748,'How Hard Should You Cut When the Data Sample is Finite? (Presented at \"Computing in High Energy Physics, Rio de Janiero, Brazil, Sept 21,1995) (D0CONF-95-66)','Linnemann','','','','CONF','D0_PRIVATE','OTHER','$D0_PRI/2748/m_2748_How_Hard_Should_You_Cut.pdf','',1995,9,21,2449982,2004,4,9,2453105),(2749,'Hastac: an Algorithm for Developing a Tree of Cuts, and itsRelation to Neural Networks (Presented at \"Computing in High EnergyPhysics, Rio de Janiero, Brazil, Sept 21, 1995) (D0CONF-95-67)','Linnemann/Bowser-Chao/Hughes','','','','','','','$D0_PRI/2749/m_2749_Hastac_and_neural_nets.pdf','',1995,9,21,2449982,2004,4,9,2453105),(2750,'Top Physics at D0 (presented at LP\' 95, Beijing, China) (D0CONF-95-68)','Klima','','','','','','','','',1995,10,3,2449994,0,0,0,0),(2751,'Improved Mass Limit on a \"Bosonic\" Higgs Particle using D0 Run 1A +1B Data','Womersley','','','','','','','','',1995,10,5,2449996,0,0,0,0),(2752,'Diphoton + Jet Event Structure in p pbar Collisions at (sqrt) s =1.8 TeV (D0CONF-95-69)','Womersley','','','QCD','','','','','',1995,10,7,2449998,0,0,0,0),(2753,'Orthodox Statistics (Univ. of D0 10/5/95)','Prosper','','','','','','','','',1995,10,5,2449996,0,0,0,0),(2754,'Silcon Meeting Transparencies 9/21/95','Lipton','','','','','','','','',1995,9,21,2449982,0,0,0,0),(2755,'D0 Neutrinos Have Mass? (Univ. of D0 9/28/95)','Morfin','','','','','','','','',1995,9,28,2449989,0,0,0,0),(2756,'Investigation of Heavy Quark Production by Gluon Splitting fromAnalysis of Muons in QCD Jest at the D-Zero Detector at Fermi NationalAccelerator Laboratory (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Balderston','','','','','','','','',1994,12,1,2449688,0,0,0,0),(2757,'Muon ID in the Overlap Region','Hedin','','','','','','','','',1995,10,18,2450009,0,0,0,0),(2758,'Some Track Occupancies for the CFT Trigger Sectors','Blazey','','','','','','','$D0_PRI/2758/m_note2758.ps','',1995,10,12,2450003,2002,8,28,2452515),(2759,'Search for Particles Beyond the Standard Model at CDF and D0(Presented at the QCD and High Energy Hadronic Interatcions Session of theXXXth Recontres de Moriond, Les Arcs, France, March 19-26, 1995)(D0CONF-95-70)','Benlloch','','','','','','','','',1995,8,30,2449960,0,0,0,0),(2760,'B? - Bbar? Mixing, Lifetimes and Rare Decays at CDF and D0(Presented at the QCD and High Energy Hadronic Interatcions Session of theXXXth Recontres de Moriond, Les Arcs, France, March 19-26, 1995)(D0CONF-95-71)','Lucchesi','','','','','','','','',1995,6,30,2449899,0,0,0,0),(2761,'Radiation Tests of an Instrumented Layer 1 Detector','Gu,W./Lipton','','','','','','','','',1995,10,11,2450002,0,0,0,0),(2762,'Lightweight, Cheap and Fast Pad Chambers','Bladin/Haggerty/Hansen/Marshall','','','','','','','','',1995,10,13,2450004,0,0,0,0),(2763,'Super-gravity Inspired SUSY Search in the Dielectron Channel','Mondal, Narasimham, Shankar, De','','','','','','','','',1996,7,24,2450289,0,0,0,0),(2764,'Comparisons of Level Two Muon Confirmation Algorithms in ?+JetsEvents','Hobbs/Rockwell','','','','','','','$D0_PRI/2764/m_note2764.ps','',1995,10,16,2450007,2002,8,28,2452515),(2765,'Bayesian Statistics (U of D0)','Prosper','','','','','','','','',1995,10,12,2450003,0,0,0,0),(2766,'Summary of Preshower Simulation Results','Neis','','','','','','','','',1995,12,4,2450056,0,0,0,0),(2767,'Jet Production via Strongly-Interacting Color-Singlet Exhange in ppbar Collisions (supporting document for Physical Review Letterssubmission). This is a controlled note, please see Becky at Trailer 151for a copy.','Brandt/May/Taylor','','','QCD','','','','$D0_PRI/2767/m_note2767.ps','',1995,11,14,2450036,2002,8,28,2452515),(2768,'SAMUS muons background','Kozelov','','','','','','','$D0_PRI/2768/m_note2768.ps','',1995,10,17,2450008,2002,8,28,2452515),(2769,'Effects of h and f Definitions on Reconstruction Jets','Abbott','','','QCD','','','','$D0_PRI/2769/m_note2769.ps','',1995,11,10,2450032,2002,9,18,2452536),(2770,'A Precision Technique for Mounting Scintillating Fiber Ribbons forCharged Particle Tracking','Carabello/Gau/Howell/Koltick/Pischalnikov/Michael','','','','','','','','',1995,12,4,2450056,0,0,0,0),(2771,'Observation of the Top Quark with the D0 Detector (XXIII SLACSUmmer Institute on Particle Physics) (D0CONF-95-72)','Hadley','','','','','','','$D0_PRI/2771/m_note2771.ps','',1995,12,1,2450053,2002,8,30,2452517),(2772,'Observation of ?? From Isolated Decay into Two Photons','Chen, W.','','','','','','','','',1995,7,20,2449919,0,0,0,0),(2773,'Porting and Installation of EPICS Control System on the D0SGIClusters','McDonald','','','','','','','','',1995,10,26,2450017,0,0,0,0),(2774,'Transparencies from the D0 Silicon Meeting, October 27, 1995','Ellison/Lipton','','','','','','','','',1995,10,27,2450018,0,0,0,0),(2775,'Small Angle Muon and b-Quark Production in p pbar Collisions at(sqrt) s = 1.8 TeV. This is a controlled note, please an administrative asst for a copy. For note\r\non confidence limits, see D0note 3476.','Hoeneisen','','','','','','','','',1995,10,31,2450022,0,0,0,0),(2776,'Future D0 Graphics (presented at Computing in HEP in Brasil,September 1995)','Hagopian/Youssef/Shupe/Graf/ Oshima/Adams','','','','','','','$D0_PRI/2776/m_note2776.ps','',1995,12,4,2450056,2002,8,30,2452517),(2777,'Electroweak Single Top Physics at the Upgraded Tevatron','Heinson','','','','','','','','',1995,11,2,2450024,0,0,0,0),(2778,'Electroweak Results from the Tevatron (Talk given at the XVInternational Conference on Physics in Collision, Cracow, Poland, June8-10, 1995) (D0CONF-95-73)','Demarteau','','','','','','','','',1995,12,4,2450056,0,0,0,0),(2779,'Performance of a Scintillating Fiber XUV Superlayer','Adams','','','','','','','','',1995,11,7,2450029,0,0,0,0),(2780,'The D0 Muon System Upgrade','Butler J., et. al.','','','','','','','$D0_PRI/2780/m_note2780.ps','',1996,1,30,2450113,2002,8,30,2452517),(2781,'Update on b-Tag Muon ID','Butler, J.','','','','','','','$D0_PRI/2781/m_note2781.ps','',1995,11,15,2450037,2002,8,30,2452517),(2782,'A Study on CDC z Measurement Using Collider Muon Tracks','Yasuda','','','','','','','$D0_PRI/2782/m_note2782.ps','',1996,1,11,2450094,2002,8,30,2452517),(2783,'Results from a Deadtime Analysis of the Current Proposal for aLevel 2 Trigger for the D0 Upgrade','Wightman/Johnson, M./Linnemann','','','','','','','$D0_PRI/2783/m_note2783.ps','',1995,12,6,2450058,2002,8,30,2452517),(2784,'W+2jets production at Tevatron - VECBOS and CompHEP comparison','Belyaev/Boos/Dudko/Pukhov','','','','','','','','',1995,11,13,2450035,0,0,0,0),(2785,'QCD at the Tevatron: Recent QCD Results from the CDF and D0Experiments (Presented at the XXV International Symposium on Multiparticle Dynamics, Stara Lesna, Slovakia, September 12-16, 1995) (D0CONF-95-74)','Womersley','','','','','','','','',1995,11,13,2450035,0,0,0,0),(2786,'Observation of the Top Quark (Published proceedings from the 15th International Converence on Phyics in Collisions, Cracow, Poland, June 8-10, 1995) (D0CONF-95-75)','Kim, S. B.','','','','','','','','',1995,8,1,2449931,0,0,0,0),(2787,'Hard Diffraction and Rapidity Gaps (Published proceedings from the15th International Converence on Phyics in Collisions, Cracow, Poland, June 8-10, 1995) (D0CONF-95-76)','Brandt','','','','','','','','',1995,9,1,2449962,0,0,0,0),(2788,'Search for Heavy W Bosons in 1.8 TeV p pbar Collisioins (D0PUB-95-12)','Abachi, et. al.','','','','','','','','',1995,8,1,2449931,0,0,0,0),(2789,'Recent D0 Results on Isolated Photon Production (Transparenciesfrom CTEQ Workshop, Michigan State University, October 1995)','Womersley','','','','','','','','',1995,11,15,2450037,0,0,0,0),(2790,'D0 Software Workshop Transparencies 11/8/95 - 11/10/95','n/a','','','','','','','','',1995,12,4,2450056,0,0,0,0),(2791,'The Random Grid Search: A Simple Way to Find Optimal Cuts (Talkgiven at the 1995 Computing in High Energy Phsyics Conference, Rio deJaneiro, Brazil) (D0CONF-95-77)','Amos/Stewart/Bhat/Cretsinger/Won/ Dharmaratna/Prosper','','','','','','','','',1996,1,11,2450094,0,0,0,0),(2792,'','Bhat','','','','','','','','',0,0,0,0,0,0,0,0),(2793,'Evaluation of LSF Batch System on the d0sgi Cluster','Bhat','','','','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/2793/m_d0note2793.ps','',1995,1,11,2449729,1998,3,16,2450889),(2794,'Comparison of Random Grid Search and Neural Network Methods in ttbar -> e + jets analysis','Bhat, Prosper','','','','','','','','',1995,12,6,2450058,0,0,0,0),(2795,'Muchk Software Modifications','Lauer, Wightman, Guida Jan, GuidaJoan','','','','','','','','',1995,11,20,2450042,0,0,0,0),(2796,'Front-end Software for the D0 Upgrade Silicon Tracker','Wightman/Bartlett/Paterno, L./Buchholz/Jia/Taylor','','','','','','','$D0_PRI/2796/m_note2796.ps','',1996,1,5,2450088,2002,8,30,2452517),(2797,'','Heintz','','','','','','','','',0,0,0,0,0,0,0,0),(2798,'Multiple Interaction Tool Study for Run 1','Carvalho/Taylor','','','','','','','$D0_PRI/2798/m_note2798.ps','',1995,11,5,2450027,2002,8,30,2452517),(2799,'Performance of a Scintillating Fiber XUV Superlayer II: Clusteringwithout Gaps','Adams','','','','','','','','',1995,11,28,2450050,0,0,0,0),(2800,'Radiation damage effects on the forward H-disks of D0 silicontracker','Shabalina/Sirotenko','','','','','','','','',1995,11,13,2450035,0,0,0,0),(2801,'Effective ICD Azimuthal Uniformity','Hsieh','','','','','','','','',1995,12,4,2450056,0,0,0,0),(2802,'H Disk Design Workshop Transparencies','Lipton','','','','','','','','',1995,11,27,2450049,0,0,0,0),(2803,'Transparenices from the D0 Silicon Meeting','Ellison','','','','','','','','',1995,11,30,2450052,0,0,0,0),(2804,'New Phenomena At the Tevatron and the LHC (Weak Interactions andNeutrinos, September 1995)','Blessing','','','','','','','','',1995,9,1,2449962,0,0,0,0),(2805,'D0 Upgrade General Meeting Transparencies','Collaboration','','','','','','','','',1995,11,30,2450052,0,0,0,0),(2806,'The D0 Silicon Tracker (Presented at Beauty 95, Oxford, UK; to bepublished in NIM A as part of the proceedings) (D0CONF-95-78)','Cooper','','','','','','','','',1996,1,11,2450094,0,0,0,0),(2807,'Status Report: Search for Top in the All-Jets Channel','Ahn, Amos,Bhat, Cretsinger, McDonald, Moromisato, Prosper, Stewart, Won, Yamada','','','','','','','$D0_PRI/2807/m_note2807.ps','',1995,12,31,2450083,2002,8,30,2452517),(2808,'Theory of Correlated Errors in Top Quark Background and CrossSection Calculation','Greenlee/Hadley','','','','','','','$D0_PRI/2808/m_note2808.ps','',1995,12,11,2450063,2002,8,30,2452517),(2809,'General Upgrade Meeting Transparencies 10/27/95','Collaboration','','','','','','','','',1995,10,27,2450018,0,0,0,0),(2810,'The Standard Model and Beyond: Physics with the D0 Experiment','Quintas, Gruenendahl, Heuring, Huehn, Landsberg, Saywer, Watts','','','','','','','$D0_PRI/2810/m_note2810.ps','',1995,12,15,2450067,2002,8,30,2452517),(2811,'Analysis of Cosmic Ray Test of D0 Prototype Fiber Tracker II','Choi','','','','','','','','',1995,11,13,2450035,0,0,0,0),(2812,'','Ellison','','','','','','','','',0,0,0,0,0,0,0,0),(2813,'Selected results from the D0 Experiment (Presented at the ITEPConference on \"Fundamental Interactions of Elementary Particles\", Moscow,Oct. 1995) (D0CONF-95-79)','Zylberstejn','','','','','','','','',1996,1,11,2450094,0,0,0,0),(2814,'Run 1b W (eu) g Analysis','Kelly, M.','','','','','','','','',1996,1,11,2450094,0,0,0,0),(2815,'Fiber Test','Feher/Landry/Mao','','','','','','','$D0_PRI/2815/m_fiber2815.ps','',1996,1,11,2450094,2002,1,10,2452285),(2816,'Studies of Radiation Damage in Silicon Microstrip Detectors for theD0 Silicon Tracker (Presented at the 1995 IEEE Nuclear Science Symposium,San Franciso, CA, October 21-28, 1995) (D0CONF-95-80)','Gomez, R./Bischoff/Boswell/Dionson/Ellison/Heinson/Joffe-Minor/Gutierrez/ Guglilmo/Gu, W./ Cooper/Johnson, M./Lipton/Mishra/Rapidis/Spiegel','','','','','','','','',1996,1,11,2450094,0,0,0,0),(2817,'The Estimation of Full Depletion Voltage on Silicon Strip Detectorsby using ALPHA particles','Leflat/Manankov/Merkin/Zverev','','','','','','','','',1995,12,31,2450083,0,0,0,0),(2818,'A Comparison of the ZEBWIG Program on VAX and AXP Platforms','Meyer/Stephens','','','','','','','$D0_PRI/2818/m_note2818.ps','',1995,12,17,2450069,2002,8,30,2452517),(2819,'D0 Run-II Computing Language and Event Data PersistencyRecommendations','Language and Data Structure Working Group','','','','','','','','',1995,12,19,2450071,0,0,0,0),(2820,'Transparencies of the B-physics topical workshop - SAMUS analysis','Collaboration','','','','','','','','',1995,12,15,2450067,0,0,0,0),(2821,'A Characterization of the Differences Among pdf Fits and theirRelationship to W and Z Production','Brock','','','','','','','','',1996,3,8,2450151,0,0,0,0),(2822,'D0 Fiber Tracking Group General Meetings -- Transparencies:8/95-12/95','Bross','','','','','','','','',1995,12,25,2450077,0,0,0,0),(2823,'D0 Fiber Tracking Group Analysis Meetings - Transparencies:8/95-12/95','Bross','','','','','','','','',1995,12,25,2450077,0,0,0,0),(2824,'MTC Muon Track Vertex Finding','Gallas','','','','','','','','',1995,0,0,2449687,0,0,0,0),(2825,'Search for the Top Quark in the All-Jets Channel (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Cretsinger','','','','','','','','',1996,1,11,2450094,0,0,0,0),(2826,'D0b Level 2 Sum over Clusters Algorithm','Boehlein','','','','','','','$D0_PRI/2826/m_note2826.ps','',1996,1,26,2450109,2002,8,30,2452517),(2827,'Jet Production via Strongly-Interacting Color-Singlet Exchange in ppbar Collisions ( D0PUB-95-13)','Abachi, et. al.','','','QCD','','','','','',1996,1,11,2450094,0,0,0,0),(2828,'Observation of the Top Quark (Published Proceedings for the 10thTopical Workshop on Proton-Antiproton Collider Physics) (D0CONF-95-81)','Bantly','','','','','','','','',1996,1,11,2450094,0,0,0,0),(2829,'A Study on Azimuthal Decorrelation between Jets with Large RapiditySeparation (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Kim, Chang L.','','','QCD','','','','','',1995,12,31,2450083,0,0,0,0),(2830,'Top Quark Physics at the D0 Experiment (Invited plenary sessiontalk presented at the High Energy Physics and Quantum Field Theory XthInternational Workshop, Zvenigorod, Russia, September 1995) (D0CONF-95-82)','Heinson','','','','','','','$D0_PRI/2830/m_note2830.ps','',1996,1,26,2450109,2002,8,30,2452517),(2831,'Slides of the L2 Workshop January 9-10, 1996','Collected by G.Blazey','','','','','','','','',1996,1,26,2450109,0,0,0,0),(2832,'','Prosper','','','','','','','','',0,0,0,0,0,0,0,0),(2833,'Update on the Extraction o fhte Mass of the Top Quark in MultijetFinal States - Likelihood vs. Bayesian Estimators','Won E.','','','','','','','$D0_PRI/2833/m_note2833.ps','',1996,10,22,2450379,2002,8,30,2452517),(2834,'D0 Document to PAC 1/19/96','The D0 Collaboration','','','','','','','','',1996,1,18,2450101,0,0,0,0),(2835,'Progress on D0 Detector Shielding Optimization with GCALOR','Sirotenko','','','','','','','','',1996,1,23,2450106,0,0,0,0),(2836,'Measurement of the Top Quark Mass and Kinematic Properties with theD0 Detector (Proceedings of International Europhysics Conference in HighEnergy Physics, (CHEP \'95), Brussels, Belgium, July 27-August 2, 1995)(D0CONF-95-83)','Snyder','','','','','','','','',1995,10,31,2450022,0,0,0,0),(2837,'Rapidity Dependence of the Inclusive J/y Production in p pbarCollisions at (sqrt) s = 1.8 TeV (Submitted to the 17th InternationalSymposium on Lepton-Photon Interactions (LP95), Beijing, China, August10-15, 1995) (D0CONF-95-84)','Abachi, et. al.','','','','','','','','',1995,11,30,2450052,0,0,0,0),(2838,'Transparencies from D0 Electroweak Workshop at LBL January 17-20,','','','','','','','','','',1996,0,0,2450052,0,0,0,0),(2839,'Studies of the Top Quark with the D0 Detector (To be published inthe Proceedings of the IInd Rencontres du Vietnam, Ho Chih Minh City,Vietnam, 21-28 October 1995) (D0CONF-95-85)','Stephens','','','','','','','','',1996,1,26,2450109,0,0,0,0),(2840,'','n/a','','','','','','','','',0,0,0,0,0,0,0,0),(2841,'','Trippe','','','','','','','','',0,0,0,0,0,0,0,0),(2842,'Characterization of the SVXIIb Chip','Abbott, Baert, Bertram,Borcherding, Utes','','','','','','','$D0_PRI/2842/m_note2842.ps','',1996,2,1,2450115,2002,8,30,2452517),(2843,'','Borcherding','','','','','','','','',0,0,0,0,0,0,0,0),(2844,'Combined Limits with IA Wg, WW and WZ Data','Chen, L.P.','','','','','','','','',1996,2,14,2450128,0,0,0,0),(2845,'The D0 Upgrade Forward Preshower, Muon System, Level 2 Trigger(PAC)','The D0 Collaboration','','','','','','','','',1996,1,12,2450095,0,0,0,0),(2846,'A Parametric Detector Simulation for Dibosons','Glenn','','','','','','','','',1996,1,29,2450112,0,0,0,0),(2847,'','Cochran','','','','','','','','',0,0,0,0,0,0,0,0),(2848,'','Paterno, M.','','','','','','','','',0,0,0,0,0,0,0,0),(2849,'Transparencies of the Silicon Meeting Feb. 8, 1996','Ellison/Lipton','','','','','','','','',1996,2,8,2450122,0,0,0,0),(2850,'Top Production at D0 (1996 Aspen Winter Physics ConferenceElementary Particle Physics)','Li-Demarteau','','','','','','','','',1996,1,8,2450091,0,0,0,0),(2851,'Measurement of the Top Quark Mass in the Dilepton Channels','Varnes','','','','','','','$D0_PRI/2851/m_note2851.ps','',1996,2,28,2450142,2002,8,30,2452517),(2852,'Transparencies from the General Upgrade Meeting, February 8, 1996','Collaboration','','','','','','','','',1996,2,8,2450122,0,0,0,0),(2853,'Recommendations of the Software Tools Working Group Text Editingand Document/News Management','Baden, Bhat, Genser K., Hobbs, Jonckheere,Krzywdzinski, Li-Demarteau, Paterno L., Prosper, Protopopescu, Raja,Stephens','','','','','','','','',1995,10,24,2450015,0,0,0,0),(2854,'Event Building Using Switching Technologies -ATLAS Status andPossible Application at D0','Le Du','','','','','','','','',1996,2,16,2450130,0,0,0,0),(2855,'Event Building Using Switching Technologies - Switching Techniquesin Data_Acquisition Systems for Future Experiments','Letheren','','','','','','','','',1996,2,16,2450130,0,0,0,0),(2856,'Event Building Using Switching Technologies - Transport ProtocolIndependent Event Builder','Mandjavidze','','','','','','','','',1996,2,16,2450130,0,0,0,0),(2857,'Event Building Using Switching Technologies - First Results from anEvent Builder Demonstrator','Djidi','','','','','','','','',1996,2,16,2450130,0,0,0,0),(2858,'Event Building Using Switching Technologies - Some Issues for EventBuilding','Mandjavidze, et. al.','','','','','','','','',1996,2,16,2450130,0,0,0,0),(2859,'Event Building Using Switching Technologies - Overheads and LinkThroughput ','Dufey, J.P.','','','','','','','','',1996,2,16,2450130,0,0,0,0),(2860,'A Proposal for the D0 Upgrade Luminosity Monitor','Bantly,Brandt, Guida Jan, Partridge, Tartaglia','','','','','','','','',1996,2,23,2450137,0,0,0,0),(2861,'Calculating Efficiencies and Their Uncertainties','Paterno, M.','','','','','','','','',1996,2,26,2450140,0,0,0,0),(2862,'Electroweak Results from the D0 Detector at Fermilab (invited talkgiven at the 2nd Rencontres Du Vietnam, Ho Chi Minh Ville, October 22-28,1995 Vietnam)','Choudhary','','','','','','','','',1996,3,8,2450151,0,0,0,0),(2863,'Soft ? Tagging of Jets in Multi-Jet Events','Cobau W., GreenleeH., Hobbs J., Tamburello P., Zhu Z.','','','','','','','$D0_PRI/2863/m_note2863.ps','',1996,11,26,2450414,2002,8,30,2452517),(2864,'The Dijet Mass Spectrum at D0','Bertram, Choi','','','QCD','','','','$D0_PRI/2864/m_note2864.ps','',1996,5,13,2450217,2002,8,30,2452517),(2865,'Reconstruction and Selection Efficiencies for High PT Muons in Run1B','Quintas','','','','','','','','',1996,2,29,2450143,0,0,0,0),(2866,'Search for Excited Quarks in the Photon-Jet Invarient MassDistribution','Madden','','','','','','','','',1996,4,16,2450190,0,0,0,0),(2867,'The D0IP Package for Communication between Computers (Version: 0.5)','Hoftun, Watts','','','','','','','','',1996,3,1,2450144,0,0,0,0),(2868,'Tests of Prototypes for CF A layer Scintillator Trigger Counters','Bard, Colmer, Eno, Garza, Gomez G., Hadley, Han, Jayanna, Lyon,Miller, Scaldeferri, Thompson, Denisov D., Diehl, Ito','','','','','','','','',1996,2,27,2450141,0,0,0,0),(2869,'Scintillating Fiber XUV, XUV_X AND XU_XV Superlayers','Adams D.','','','','','','','','',1996,3,6,2450149,0,0,0,0),(2870,'ON-Chamber Electronics for Muon IAROCCI Mini-Drift Tubes (TechnicalSpecification)','Alexeev, Baldin, Denisov D., Hansen, Tokmenin','','','','','','','','',1996,4,2,2450176,0,0,0,0),(2871,'Update on Run II Muon Triggers','Green D.','','','','','','','','',1996,3,3,2450146,0,0,0,0),(2872,'B - Bbar mixing and CP violation in run 1b','Hoeneisen','','','','','','','','',1996,2,16,2450130,0,0,0,0),(2873,'A New Detector Technique Using Triangular Scintillating Strips toMeasure the Position of Minimum Ionizing Particles ( D0PUB-96-9)','Adams M., Amos, Averill, Baringer, Bross, Chung, Hsieh, Li H.,Lincoln, Margulies, Neal, Neis, Oesch, Qian, Rijssenbeek','','','','','','','','',1996,2,23,2450137,0,0,0,0),(2874,'A Measurement of Bottom Quark Production in p pbar Collisions at(sqrt) s = 1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Huehn','','','','','','','','',1995,12,31,2450083,0,0,0,0),(2875,'Direct Photon Production and Search for Excited Quarks with the D0Detector(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note. (Also available athttp://d0sgi0.fnal.gov/~madden/thesis.ps)','Madden','','','','','','','','',1995,10,1,2449992,0,0,0,0),(2876,'','Bhat','','','','','','','','',0,0,0,0,0,0,0,0),(2877,'','Bhat','','','','','','','','',0,0,0,0,0,0,0,0),(2878,'','Kelly, M.','','','','','','','','',0,0,0,0,0,0,0,0),(2879,'A Comparison of FastZ and SlowZ Luminosity Monitors','Tartaglia,Owen','','','','','','','','',1996,3,21,2450164,0,0,0,0),(2880,'Search for Right-Handed W Bosons and Heavy W\' in p pbar Collisionsat (sqrt) s = 1.8 TeV ( D0PUB-96-1)','Abachi, et. al.','','','','','','','','',1996,1,31,2450114,0,0,0,0),(2881,'J/u Production in p pbar Collisions at (sqrt) s = 1.8 TeV( D0PUB-96-2)','Abachi, et. al.','','','','','','','','',1996,3,7,2450150,0,0,0,0),(2882,'Transparencies from the Silicon Tracker Meeting 3/13/96','Ellison/Lipton','','','','','','','','',1996,3,13,2450156,0,0,0,0),(2883,'ECB Meeting, March 15, 1996 - Slide Copies','Tuts','','','','','','','','',1996,4,15,2450189,0,0,0,0),(2884,'General Upgrade Meeting Transparencies - March 14, 1996','Collaboration','','','','','','','','',1996,4,15,2450189,0,0,0,0),(2885,'Fixed Cone Jet Definitions in D0 and Rsep','Abbott,Bhattacharjee, Elvira, Nang, Weerts','','','QCD','','','','$D0_PRI/2885/m_d0note_2885.ps','',1996,3,31,2450174,1998,3,5,2450878),(2886,'Electroweak Measurements from the Tevatron (presented at LesRencontres de Physique de la Vallee d\' Aoste, La Thuile, March 5, 1996)','Heintz','','','','','','','$D0_PRI/2886/m_note-2886.pdf','',1996,4,15,2450189,2002,11,21,2452600),(2887,'Jet Energy Resolutions','Bhattacharjee, Choi, Elvira, Grinstein,Hirosky','','','QCD','','','','$D0_PRI/2887/m_note-2887.pdf','',1996,5,22,2450226,2002,11,21,2452600),(2888,'Muon Front End Data Formats for Run II (Updated)','Baldin,Podstavkov','','','','','','','$D0_PRI/2888/m_note-2888.pdf','',1996,3,20,2450163,2002,11,21,2452600),(2889,'','Prosper','','','','','','','','',0,0,0,0,0,0,0,0),(2890,'Search for SUSY in the D0 Experiment (D0CONF-96-1)','Hagopian','','','','','','','$D0_PRI/2890/m_note-2890.pdf','',1996,4,15,2450189,2002,11,21,2452600),(2891,'Minutes of VLPC Review Meeting @Rockwell InternationalElectro-Optical Center, Annahem, CA 3/7-8, 1996','Ruchti','','','','','','','','',1996,0,0,2450052,0,0,0,0),(2892,'A Search for Right-Handed W Bosons in pbar p Collisions with the D0Detector at Fermilab (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Goldschmidt','','','','','','','','',1996,1,31,2450114,0,0,0,0),(2893,'A First Use of a Fast Tracking Algorithm in the D0 Upgrade Detector','da Motta, Santoro, Yepes','','','','','','','$D0_PRI/2893/m_note-2893.pdf','',1996,7,24,2450289,2002,11,21,2452600),(2894,'The D0 Upgarde - Forward Preshower, Muon System, Level 2 Trigger','D0 Collaboration','','','','','','','$D0_PRI/2894/m_note-2894.pdf','',1996,3,27,2450170,2002,11,21,2452600),(2895,'Timing XUV and XUVX Superlayers','Adams','','','','','','','$D0_PRI/2895/m_note-2895.pdf','',1996,3,31,2450174,2002,11,21,2452600),(2896,'Charged-Higgs Boson Decays and Production t-> H+b Decay','Marin,Hernandez','','','','','','','$D0_PRI/2896/m_note-2896.pdf','',1994,9,20,2449616,2002,11,21,2452600),(2897,'Events Selection by the DVF Method','Moromisato','','','','','','','$D0_PRI/2897/m_note-2897.pdf','',1996,4,25,2450199,2002,11,21,2452600),(2898,'Limits of Anomalous Zg Couplings','Glenn','','','','','','','$D0_PRI/2898/m_note-2898.pdf','',1996,4,15,2450189,2002,11,21,2452600),(2899,'Electroweak Physics Results from the D0 Experiment at Fermilab(Presented at the Xth International Workshop on High Energy Physics andQuantum Field Theory, Zvenigorod, Russia, 20-26 September 1995).(Transparencies & write-up) (D0CONF-95-86)','Ellison','','','','','','','$D0_PRI/2899/m_note2899.ps','',1996,4,3,2450177,2002,11,21,2452600),(2900,'L2 Upgrade Trigger Meeting','Weerts','','','','','','','','',1996,0,0,2450052,0,0,0,0),(2901,'b Tagging Using Electrons Near a Jet','Gupta, Mondal, Narain','','','','','','','$D0_PRI/2901/m_note2901.ps','',1996,4,2,2450176,2002,11,21,2452600),(2902,'Inclusive Dimuon CP Violation','Hoeneisen','','','','','','','$D0_PRI/2902/m_note-2902.pdf','',1996,4,4,2450178,2002,11,21,2452600),(2903,'B-Physics at Fermilab D0 Experiment - Present and Prospects(presented at XVI Encontro Nacional de Fisica de Particulas e Campos,Caxambu, Brazil, October 24-28, 1995) (D0CONF-95-87)','Alves','','','','','','','$D0_PRI/2903/m_note2903.ps','',1996,4,15,2450189,2002,11,21,2452600),(2904,'Search for squarks/gluinos (and other New Phenomena) at theTevatron in Run 1 (transparenancies from Moriond - QCD)','Gallas','','','','','','','$D0_PRI/2904/m_note-2904.pdf','',1996,3,31,2450174,2002,11,21,2452600),(2905,'New Particle Searches at the Tevatron (I) (Proceedings from Moriond- QCD) (D0CONF-96-2)','Gallas','','','','','','','$D0_PRI/2905/M_MORIOND_96_P.PS;1','',1996,5,17,2450221,2002,11,21,2452600),(2906,'Implementation of the D0FIX for SAMUS - SAMUSFIX','Denisov D.,Hall, Hedin, Mayorov, Wood','','','','','','','$D0_PRI/2906/m_note-2906.pdf','',1996,4,3,2450177,2002,11,21,2452600),(2907,'Evidence for Double Parton Scattering (W+2jets channel) in p pbarcollisions at (sqrt) s = 1.8 TeV','Fisk, Qi, Huishen, Fatyga M.','','','QCD','','','','$D0_PRI/2907/m_note-2907.pdf','',1996,4,1,2450175,2002,11,21,2452600),(2908,'Determination of the Hadronic Energy Scale of D0 Calorimetry (CAFIXversion 5.0)','Kehoe, Astur','','','QCD','','','','$D0_PRI/2908/m_note2908.ps','',1996,5,7,2450211,2002,11,21,2452600),(2909,'Alignment of the D0 Detector','Smart','','','','','','','$D0_PRI/2909/m_note-2909.pdf','',1996,4,11,2450185,2002,11,21,2452600),(2910,'','Ahn','','','','','','','','',0,0,0,0,0,0,0,0),(2911,'Effects of Radiation on the Leakage Currents of Silicon MicrostripDetectors for the H and F-Disks of the D0 Silicon Tracker','Gomez R.,Bishoff, Boswell, Ellison, Gutierrez, Guglielmo, Cooper, Johnson M.,Lipton, Mishra, Rapidis, Spiegel','','','','','','','$D0_PRI/2911/m_note-2911.pdf','',1996,4,12,2450186,2002,11,21,2452600),(2912,'Direct Photon Production at (sqrt) s = 1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Fahey','','','','','','','','',1995,12,31,2450083,0,0,0,0),(2913,'A Search for the Top Quark Using Artificial Neural Networks (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Amidi','','','','','','','','',1996,2,29,2450143,0,0,0,0),(2914,' Search for Additional Gauge Bosons (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Eppley','','','','','','','','',1995,4,30,2449838,0,0,0,0),(2915,'Measurement of the Z Boson Transverse Momentum Distribution in ppbar Collisions at (sqrt) s = 1.8 TeV with the D0 Detector (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Jiang','','','','','','','','',1995,7,30,2449929,0,0,0,0),(2916,'General Upgrade Meeting Transparencies 4/11/96','Collaboration','','','','','','','$D0_PRI/2916/m_note-2916.pdf','',1996,4,11,2450185,2002,11,21,2452600),(2917,'The Top Quark and More: Some Highlights of Physics from the D0Experiment (Presented at the XVI Encontro Nacional de Fisica de Particles eCampos, Caxambu, MG, Brazil, October 24-28, 1995) (D0CONF-95-88)','Montgomery','','','','','','','$D0_PRI/2917/m_note-2917.pdf','',1996,2,29,2450143,2002,11,21,2452600),(2918,'Adding pads to XUV_X and XU_XV Scintillating Fiber Superlayers','Adams D.','','','','','','','$D0_PRI/2918/m_note-2918.pdf','',1996,4,30,2450204,2002,11,21,2452600),(2919,'Application of RGSEARCH to the t -> cZ1 Search','Blessing, Boehnlein','','','','','','','$D0_PRI/2919/m_note2919.ps','',1996,6,7,2450242,2002,11,21,2452600),(2920,'W Mass Analysis - Run 1A; Study of Bias in CD and CAL positions inW and Z events','Demarteau, Sculli, Streets','','','','','','','$D0_PRI/2920/m_note2920.ps','',1996,4,19,2450193,2002,11,21,2452600),(2921,'W Mass Analysis - Run 1A; Electron Direction Definition andResolution','Demarteau, Sculli, Streets','','','','','','','$D0_PRI/2921/m_note2921.ps','',1996,4,19,2450193,2002,11,21,2452600),(2922,'W Mass Analysis - Run 1A; Underlying Event Corrections: Summary ofPrevious Studies and Results of Study of Minimum Bias Data','Demarteau,Sculli, Streets','','','','','','','$D0_PRI/2922/m_note2922.ps','',1996,4,19,2450193,2002,11,21,2452600),(2923,'Electroweak Results from D0 - transparencies (presented at theXXXIth Rencontres De Moriond, Electroweak Interactions and UnifiedTheories, Les Arcs, Savoie, France, March 16-23, 1996)','Streets','','','','','','','$D0_PRI/2923/m_note-2923.pdf','',1996,4,19,2450193,2002,11,21,2452600),(2924,'Forward Electron Identification Using the Transition RadiationDetector','Kehoe','','','','','','','$D0_PRI/2924/m_note-2924.pdf','',1996,5,25,2450229,2002,11,21,2452600),(2925,'Transparencies from the Silicon Tracker Meeting - 4/10/96','Ellison, Lipton','','','','','','','$D0_PRI/2925/m_note-2924.pdf','',1996,4,10,2450184,2002,11,21,2452600),(2926,'D0 Collaboration Meeting - Plenary Talks April 1996','Collaboration','','','','','','','','',1996,4,30,2450204,0,0,0,0),(2927,'DC gain fitting in D0 calorimeter electronics','Wen, Guida Jan,Schamberger','','','','','','','$D0_PRI/2927/m_note-2927.pdf','',1993,9,29,2449260,2002,11,21,2452600),(2928,'Calorimeter Electronics Stability','Guida Jan, Guida Joan,Schamberger','','','','','','','$D0_PRI/2928/m_note-2928.pdf','',1996,5,27,2450231,2002,11,21,2452600),(2929,'Measurement of the W-Mass','Demarteau, Sculli, Streets','','','','','','','$D0_PRI/2929/m_note-2929.pdf','',1996,4,23,2450197,2002,11,21,2452600),(2930,'D0 Upgrade Transparencies from 4/19/96','Collaboration','','','','','','','$D0_PRI/2930/m_note-2930.pdf','',1996,4,19,2450193,2002,11,21,2452600),(2931,'','Kehoe','','','','','','','','',0,0,0,0,0,0,0,0),(2932,'The D0 Upgrade - Forward Preshower, Muon System, Level 2 Trigger','Abachi, et. al.','','','','','','','$D0_PRI/2932/m_note-2932.pdf','',1996,2,29,2450143,2002,11,21,2452600),(2933,'Search for Light Top Squarks in p pbar Collisions at (sqrt) s = 1.8TeV ( D0PUB-96-3)','Abachi, et. al.','','','','','','','$D0_PRI/2933/m_note-2933.pdf','',1996,3,31,2450174,2002,11,21,2452600),(2934,'The Azimuthal Decorrelation of Jets Widely Separated in Rapidity( D0PUB-96-4)','Abachi, et. al.','','','QCD','','','','$D0_PRI/2934/m_note-2934.pdf','',1996,3,31,2450174,2002,11,21,2452600),(2935,'D0 Run 2 Online Computing','Fuess','','','','','','','$D0_PRI/2935/m_note2935.ps','',1996,5,4,2450208,2002,11,21,2452600),(2936,'','Li-Demarteau','','','','','','','','',0,0,0,0,0,0,0,0),(2937,'A Study of Electron and Photon Fakes','Glenn','','','','','','','','',1996,5,1,2450205,0,0,0,0),(2938,'W -> eu Data-based W -> tu Monte Carlo','Griffith, Jung, Kotcher, LiHailin, Li-Demarteau, Protopopescu, Wirjawan','','','','','','','$D0_PRI/2938/m_note-2938.pdf','',1996,5,1,2450205,2002,11,21,2452600),(2939,'A Measurement of the s (p pbar -> W) ? Br (W -> tu) as a Test ofLepton Universality at sqrt (s) = 1.8TeV With the D0 Detector','Griffith,Jung, Kotcher, Li Hailin, Li-Demarteau, Protopopescu, Wirjawan','','','','','','','$D0_PRI/2939/m_note-2939.pdf','',1996,5,2,2450206,2002,11,21,2452600),(2940,'Search for Squarks and Gluinos with the D0 Detector (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Goforth','','','','','','','','',1995,7,31,2449930,0,0,0,0),(2941,'Study on the Inclusive Production Cross Section of Forward Muons inp pbar Collisions at (sqrt) s = 1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Lima','','','','','','','','',1995,5,31,2449869,0,0,0,0),(2942,'The Isolated Photon Cross Section in the Central and ForwardRapidity Regions in p pbar Collisions at (sqrt) s = 1.8 TeV (D0PUB-96-5)','Abachi','','','','','','','','',1996,3,31,2450174,0,0,0,0),(2943,'The Level-3 Trigger Upgrade','Cutts, Hoftun, Watts, Zeller','','','','','','','$D0_PRI/2943/m_note-2943.pdf','',1996,4,29,2450203,2002,11,21,2452600),(2944,'Test of the Standard Model of Electroweak Interactions by measuringthe Anomalous WWg couplings at (sqrt) s = 1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Kelly','','','','','','','','',1996,4,30,2450204,0,0,0,0),(2945,'Measurement of the B? - Bbar? Mixing Parameter using Dimuon EventsCollected with the D0 Detector (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','James','','','','','','','','',1995,12,31,2450083,0,0,0,0),(2946,'Measurement of the b bar Corss Section and Correlations UsingDimuon Events in p pbar Collisions at (sqrt) s = 1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Fein','','','','','','','','',1996,2,1,2450115,0,0,0,0),(2947,'Measurement of the U and Drell-Yan Production cross sections at(sqrt) s = 1.8 TeV Using Dimuons (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Smith','','','','','','','','',1995,12,31,2450083,0,0,0,0),(2948,'Measurement of the t tbar Production Cross Section at D0 -Transparencies (Rencontres de Moriond Les Arcs, France March 23-30, 1996)','Bhat','','','','','','','$D0_PRI/2948/m_note-2948.pdf','',1996,6,7,2450242,2002,11,21,2452600),(2949,'UD0: The Large Hadron Collider','Womersley','','','','','','','$D0_PRI/2949/m_note-2949.pdf','',1996,5,9,2450213,2002,11,21,2452600),(2950,'UD0: Tracking Technologies','Ruchti, Lipton','','','','','','','$D0_PRI/2950/m_note-2950.pdf','',1996,5,9,2450213,2002,11,21,2452600),(2951,'Studies of Jet-Jet Masses with two B-Tagged Jets with the D0Detector','Hedin, Markeloff, Sirotenko, Zieminska, Maciel, Murphy,Johns, Fein, Alvarez, Green, Adams, Vititoe, Yetter, Cummings, Zieminski,Baarmand','','','','','','','$D0_PRI/2951/m_note-2951.pdf','',1996,5,15,2450219,2002,11,21,2452600),(2952,'UD0: New Phenomena Beyond the Standard Model','Hewett','','','','','','','','',1996,5,9,2450213,0,0,0,0),(2953,'UD0: Hard Scattering and Small x Behavior','Mueller','','','','','','','$D0_PRI/2953/m_note-2953.pdf','',1996,5,9,2450213,2002,11,21,2452600),(2954,'UD0: GEANT','Womersley','','','','','','','$D0_PRI/2954/m_note-2954.pdf','',1996,5,9,2450213,2002,11,21,2452600),(2955,'UD0: KTEV: kaons at the Tevatron','Corcoran','','','','','','','$D0_PRI/2955/m_note-2955.pdf','',1996,5,9,2450213,2002,11,21,2452600),(2956,'W ->?u and Z -> ?? Cross Sections in Run 1B at D0','Hu Ting,Quintas P.','','','','','','','$D0_PRI/2956/m_note-2956.pdf','',1996,9,27,2450354,2002,11,21,2452600),(2957,'The Top Quark (to appear in Annual Reviews of Nuclear and ParticleScience)','Wimpenny, Winer','','','','','','','','',1996,5,20,2450224,0,0,0,0),(2958,'Finding Tracks','Adams D.','','','','','','','$D0_PRI/2958/m_d0note2958.ps','',1996,5,14,2450218,2002,11,21,2452600),(2959,'D0 Fiber Tracking Group Meetings - Transparencies: 2/96-5/96','Bross','','','','','','','','',1996,5,22,2450226,0,0,0,0),(2960,'Search for Anomalous WW and WZ Production in p pbar Collisions at(sqrt) s = 1.8 TeV ( D0PUB-96-6)','Abachi, et. al.','','','','','','','$D0_PRI/2960/m_note2960.ps','',1996,6,30,2450265,2002,11,21,2452600),(2961,'Future Top Physics at the Tevatron and LHC (presented at the XXXIstRencontres de Moriond, QCD and High Energy Hadronic Interactions, Les Arcs,Savoi, France, 23rd-30th March 1996) (D0CONF-96-3)','Heinson','','','','','','','$D0_PRI/2961/m_note2961.ps','',1996,5,31,2450235,2002,11,21,2452600),(2962,'D0 Upgrade Technical Design Summary','Grannis','','','','','','','','',1996,6,1,2450236,0,0,0,0),(2963,'Determinations of the Mass of the Top Quark Using the TopologicalVariables','Hsieh, Qian','','','','','','','$D0_PRI/2963/m_note-2963.pdf','',1996,6,1,2450236,2003,1,10,2452650),(2964,'Probability for a Jet to Fragment Into an Isolated Photon','Lauer','','','QCD','','','','$D0_PRI/2964/m_note-2964.pdf','',1996,5,20,2450224,2003,1,10,2452650),(2965,'Description of Wg -> mug Analysis','Fahland, Choudhary','','','','','','','$D0_PRI/2965/m_note-2965.pdf','',1996,7,14,2450279,2003,1,10,2452650),(2966,'Measuring the Tevatron Optics with the DZero Collider Detector.(AD Seminar)','Tartaglia','','','','','','','$D0_PRI/2966/m_note-2966.pdf','',1996,5,30,2450234,2003,1,10,2452650),(2967,'Studies of Muon Scintillator using Dimuon Data','Hedin','','','','','','','$D0_PRI/2967/m_note-2967.pdf','',1996,6,6,2450241,2003,1,10,2452650),(2968,'Studies of Z0 -> b bar Mass Resolution','Hedin','','','','','','','$D0_PRI/2968/m_note-2968.pdf','',1996,7,29,2450294,2003,1,10,2452650),(2969,'The Measurement of the Inclusive Triple Differential Dijet CrossSection at D0 (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Nang','','','QCD','','','','','',1996,5,31,2450235,0,0,0,0),(2970,'uv Trigger Processor for the D-Zero Upgrade','Bloom, Glenn,Klopfenstein, Lander, Mani','','','','','','','$D0_PRI/2970/m_note-2970.pdf','',1996,6,6,2450241,2003,1,10,2452650),(2971,'','Klopfenstein2928A','','','','','','','','',0,0,0,0,0,0,0,0),(2972,'An Inclusive 2-Track Trigger for the D-Zero Upgrade','Klopfenstein','','','','','','','$D0_PRI/2972/m_note-2972.pdf','',1996,6,7,2450242,2003,1,10,2452650),(2973,'Simulation of the D0 Upgrade Level-3 Trigger/ Data Acquisition','Cutts D., Hoftun J., Watts G., Zeller R.','','','','','','','$D0_PRI/2973/m_note2973.ps','',1996,10,29,2450386,2003,1,10,2452650),(2974,'Electroweak Measurements from the Tevatron (presented at LesRencontres de Physique de la Vallee d\'Aoste, La Thuile, Italy, March 3-9,1996) (D0CONF-96-4)','Heintz','','','','','','','$D0_PRI/2974/m_note-2974.pdf','',1996,6,7,2450242,2003,1,10,2452650),(2975,'Central Inclusive Jet Cross Section at DZERO','Elvira, Blazey','','','QCD','','','','$D0_PRI/2975/m_note2975.ps','',1996,6,6,2450241,2003,1,10,2452650),(2976,'Optical Isolation of Scintillator Tiles Using TiO2 Doped Epoxy for the DO ICD in Run II','Elizabeth Gallas','','gallas','CALORIMETER','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/2976/m_d0note_2976.ps','',1998,4,30,2450934,2003,1,10,2452650),(2977,'','Norm','','','','','','','','',0,0,0,0,0,0,0,0),(2978,'Measurement of the Top Quark production cross section using lepton+ jets events','Butler, Chopra, Cobau, Greenlee, Hobbs, Narain,Protopopescu, Rockwell, Tamburello, Zhu','','','','','','','','',1995,12,12,2450064,0,0,0,0),(2979,'The D0 Upgrade: Scope and Physics (1996 Fermilab Users AnnualMeeting)','Lincoln','','','','','','','$D0_PRI/2979/m_note-2979.pdf','',1996,6,7,2450242,2003,1,10,2452650),(2980,'Top Production at D0 (presented at the 1996 Recontre de Physique dela Vallee d\'Aoste on Results and Perspectives in Particle Physics, LaThuile, Italy, March 4-9, 1996) (D0CONF-96-5)','Narain','','','','','','','$D0_PRI/2980/m_note-2980.pdf','',1996,7,24,2450289,2003,1,10,2452650),(2981,'QQbar Dijet Spectroscopy','Murphy C., Adams','','','','','','','$D0_PRI/2981/m_note-2981.pdf','',1996,7,24,2450289,2003,1,10,2452650),(2982,'W Boson Mass Measurement using Run 1b Data','Adam, Flattum,Heintz, Kotwal','','','','','','','$D0_PRI/2982/m_note-2982.pdf','',1996,5,23,2450227,2003,1,10,2452650),(2983,'Top Mass Pseudo-likelihood Analysis','Jones','','','','','','','$D0_PRI/2983/m_note-2983.pdf','',1996,5,31,2450235,2003,1,10,2452650),(2984,'Working Group Report on A Vertex Trigger for Run II','Borcherding, Johnson M., Klima, Lipton, Mishra, Piekarz, Winer,Zieminski','','','','','','','$D0_PRI/2984/m_note-2984.pdf','',1996,6,30,2450265,2003,1,10,2452650),(2985,'Projections of the Radiation-Induced Increase in the Full DepletionVoltage of the D0 Silicon Tracker Barrels','Gomez Rafael','','','','','','','$D0_PRI/2985/m_note-2985.pdf','',1996,6,18,2450253,2003,1,10,2452650),(2986,'Electroweak Results from D0','Streets','','','','','','','$D0_PRI/2986/m_note2986.ps','',1996,7,24,2450289,2003,1,10,2452650),(2987,'Measurement of the Width of the W Boson in Proton-AntiprotonCollisions at (sqrt) s = 1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Yang','','','','','','','','',1995,5,31,2449869,0,0,0,0),(2988,'Mini-Drift Tube Digitizing Card Specification (Preliminary)','Baldin B., Denisov D., Golovtsov V., Gansen D., Neustroev P.,Uvarov L.','','','','','','','$D0_PRI/2988/m_note-2988.pdf','',1997,1,17,2450466,2003,1,10,2452650),(2989,'Study of tt -> ee+jets+ET','Blessing, Boehnlein','','','','','','','$D0_PRI/2989/m_note2989.ps','',1996,7,24,2450289,2002,8,30,2452517),(2990,'','Amos','','','','','','','','',0,0,0,0,0,0,0,0),(2991,'','Amos','','','','','','','','',0,0,0,0,0,0,0,0),(2992,'','Prosper','','','','','','','','',0,0,0,0,0,0,0,0),(2993,'The D0 Upgrade - PbarP Padova, May 30, 1996','Tuts','','','','','','','$D0_PRI/2993/m_note-2993.pdf','',1996,5,30,2450234,2003,1,10,2452650),(2994,'Fermilab Physics Achievements & Outlook, Users Annual Meeting, June3, 1996','Grannis','','','','','','','$D0_PRI/2994/m_note-2994.pdf','',1996,6,3,2450238,2003,1,10,2452650),(2995,'The Top Quark in Muon + Jet Events from 1.8 TeV Proton-AntiprotonCollisions (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Yoshikawa','','','','','','','','',1996,5,31,2450235,0,0,0,0),(2996,'W Properties and Boson Couplings (transparencies - XVIInternational Conference on Physics in Collision, Mexico City, Mexico, 19June 1996)','Rajagopalan','','','','','','','$D0_PRI/2996/m_note-2996.pdf','',1996,6,19,2450254,2003,1,10,2452650),(2997,'','Rajapolan','','','','','','','','',0,0,0,0,0,0,0,0),(2998,'Why You Probably Don\'t Understand Jet Kinematics as Well as YouThink You Do or Why Sometimes Small is Big','Lincoln','','','QCD','','','','$D0_PRI/2998/m_note2998.ps','',1996,7,12,2450277,2003,1,10,2452650),(2999,'General Upgrade Meeting, Wednesday, May 15, 1996','Collaboration','','','','','','','$D0_PRI/2999/m_note-2999.pdf','',1996,5,15,2450219,2003,1,10,2452650),(3000,'Measurement of the W mass using the transverse mass ratio of the Wand the Z','Rajagopalan, Rijssenbeek','','','','','','','$D0_PRI/3000/m_note-3000.pdf','',1996,3,28,2450171,2003,1,10,2452650),(3001,'Light output in Scintillating Fiber Simulation','Adams','','','','','','','$D0_PRI/3001/m_note-3001.pdf','',1996,6,26,2450261,2003,1,10,2452650),(3002,'Hadronic Production of W +/- and Z0 from CDF and D0 at Fermilab(XVI International Converence on Physics in Collision, Mexico City, Mexico19 -21 June 1996)','Snow','','','','','','','$D0_PRI/3002/m_note-3002.pdf','',1996,7,24,2450289,2003,1,10,2452650),(3003,'La Recherche du Quark Top dans le Canal e+jets a` D? (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Lebrat','','','','','','','','',1996,5,10,2450214,0,0,0,0),(3004,'Winter \'96 Lepton + Jets Mass Analysis','Snyder','','','','','','','$D0_PRI/3004/m_note3004.ps','',1996,6,19,2450254,2003,1,10,2452650),(3005,'Jet Decorrelation and Jet Shapes at the Tevatron (presented at LesRencontres de Physique de la Vallee d\'Aoste: Results and Perspectives inParticle Physics, La Thuile, Italy, 3-9 March 1996) (D0CONF-96-6)','Heuring','','','','','','','$D0_PRI/3005/m_lathuile.ps','',1996,7,24,2450289,2003,1,10,2452650),(3006,'The KTCL Bank','Abbott, Watts','','','','','','','$D0_PRI/3006/m_note3006.ps','',1996,7,8,2450273,2003,1,10,2452650),(3007,'Search for gg events with large missing ET in ppbar collisions at(sqrt) s = 1.8 TeV','Womersley J.','','','','','','','$D0_PRI/3007/m_note-3007.pdf','',1996,12,12,2450430,2003,1,10,2452650),(3008,'The Dijet Mass Spectrum and Angular Distributions with the D0Detector (submitted to the 28th International Conference on High EnergyPhysics, Warsaw, Poland, 25-31 July 1996) (D0CONF-96-7)','TheD0 Collaboration','','','','','','','$D0_PRI/3008/m_note3008.ps','',1996,7,24,2450289,2003,1,10,2452650),(3009,'Measurement of the W Boson Mass ( D0PUB-96-7)','Abachi, et.al.','','','','','','','$D0_PRI/3009/m_note-3009.pdf','',1996,7,24,2450289,2003,1,10,2452650),(3010,'A Comparison of Inclusive Jets Reconstructed with the KT and coneAlgorithms','Stephens','','','QCD','','','','$D0_PRI/3010/m_d0note_3010.ps','',1996,7,20,2450285,2002,11,21,2452600),(3011,'More on CP Violation or Whatever it is','Hoeneisen','','','','','','','$D0_PRI/3011/m_note-3011.pdf','',1996,5,31,2450235,2002,11,21,2452600),(3012,'The Inclusive Jet Cross Section in pbar p Collisions at (sqrt) s =1.8 TeV (submitted to the XIth Topical Workshop on pbar p ColliderPhysics, Abano Terme (Padova), Italy, May 26-June 1, 1996) (D0CONF-96-8)','Bertram','','','','','','','$D0_PRI/3012/m_note-3012.pdf','',1996,7,24,2450289,2002,11,21,2452600),(3013,'A Survey of General C++ Class Libraries for use in the PrototypeCalorimeter Code for Run II','Hobbs','','','','','','','$D0_PRI/3013/m_note3013.ps','',1996,6,28,2450263,2002,11,21,2452600),(3014,'Design Report of the Central Preshower Detector for the D0 Upgrade','Adams, Amos, Chopra, Chung, Del Signore, Hsieh, Li H., Lincoln,Neal, Neis, Qian, Rijssenbeek','','','','','PUBLIC','','$D0_PUB/3014/m_note-3014.pdf','',1996,1,15,2450098,2002,11,21,2452600),(3015,'','Alvarez','','','','','','','','',0,0,0,0,0,0,0,0),(3016,'','Alvarez','','','','','','','','',0,0,0,0,0,0,0,0),(3017,'W and Z Production Cross Sections at D0 (presented at the XITopical Workshop on Proton-Antiproton Collider Physics, Abano Terme(Padova), Italy May 26-June 1, 1996) (D0CONF-96-9)','Quintas','','','','','','','$D0_PRI/3017/m_note-3017.pdf','',1996,7,15,2450280,2002,11,21,2452600),(3018,'Combining and Cross-checking Electron and Muon Channels\' W and ZCross Sections for PbarP \'96','Quintas','','','','','','','$D0_PRI/3018/m_note-3018.pdf','',1996,7,15,2450280,2002,11,21,2452600),(3019,'Same as D0 Note 3033','VOID','','','','','','','$D0_PRI/3019/m_note3019.ps','',0,0,0,0,2002,8,30,2452517),(3020,'(Warsaw papers)','Zimenski','','','','','','','$D0_PRI/3020/m_note3020.ps','',0,0,0,0,2002,8,30,2452517),(3021,'(Warsaw papers)','Zimenski','','','','','','','$D0_PRI/3021/m_note3021.ps','',0,0,0,0,2002,8,30,2452517),(3022,'(Warsaw papers)','Zimenski','','','','','','','$D0_PRI/3022/m_note3021.ps','',0,0,0,0,2002,8,30,2452517),(3023,'(Warsaw papers)','Zimenski','','','','','','','$D0_PRI/3023/m_note3023.ps','',0,0,0,0,2002,8,30,2452517),(3024,'','VOID','','','','','','','','',0,0,0,0,0,0,0,0),(3025,'SUGRA-GUT Motivated SUSY Search in the Dielectron Channel at D0(Submitted to the 28th International Conference on High Energy Physics,Warsaw, Poland, 25-31 July 1996) (D0CONF-96-10)','The D0Collaboration','','','','','','','$D0_PRI/3025/m_note-3025.pdf','',1996,7,24,2450289,2002,11,21,2452600),(3026,'Search for Chargino-Neutralino Associated Production viaTrileptonic Final States with the D0 Detector (Submitted to the 28thInternational Conferenc eon High Energy Physics, Warsaw, Poland, 25-31 July1996) (D0CONF-96-27)','The D0 Collaboration','','','','','','','$D0_PRI/3026/m_note-3026.pdf','',1996,7,31,2450296,2002,11,21,2452600),(3027,'Color Coherence in p pbar Collisions at (sqrt) s = 1.8 TeV(Submitted to the 28th International Conference on High Energy Physics,Warsaw, Poland, 25-31 July 1996) (D0CONF-96-11)','The D0Collaboration','','','','','','','$D0_PRI/3027/m_note-3027.pdf','',1996,7,24,2450289,2002,11,21,2452600),(3028,'The Dijet Mass Spectrum and Angular Distributions with the D0Detector (Submitted to the 28th International Conference on High EnergyPhysics, Warsaw, Poland, 25-31 July 1996) (D0CONF-96-12)','TheD0 Collaboration','','','','','','','$D0_PRI/3028/m_note3028.ps','',1996,6,25,2450260,2002,11,21,2452600),(3029,'Inclusive Jet Cross Section in p pbar Collisions with the D0Detector (Submitted to the 28th International Conference on High EnergyPhysics, Warsaw, Poland, 25-31 July 1996) (D0CONF-96-13)','TheD0Collaboration','','','','','','','$D0_PRI/3029/m_note3029.ps','',1996,7,24,2450289,2002,11,21,2452600),(3030,'Direct Photon Measurements by the D0 Experiment (Submitted to the28th International Conference on High Energy Physics, Warsaw, Poland, 25-31July 1996) (D0CONF-96-14)','The D0 Collaboration','','','','','','','$D0_PRI/3030/m_note3030.ps','',1996,7,24,2450289,2002,11,21,2452600),(3031,'Rapidity Gaps Between Jets at D0 (Submitted to the 28thInternational Conference on High Energy Physics, Warsaw, Poland, 25-31 July1996) (D0CONF-96-15)','The D0 Collaboration','','','','','','','$D0_PRI/3031/m_note3031.ps','',1996,7,24,2450289,2002,11,21,2452600),(3032,'Hard Single Diffractive Jet Production at D0 (Submitted to the28th International Conference on High Energy Physics, Warsaw, Poland, 25-31July 1996) (D0CONF-96-16)','The D0 Collaboration','','','QCD','','','','$D0_PRI/3032/m_note3032.ps','',1996,7,24,2450289,2002,11,21,2452600),(3033,'A Measurement of the Ratio of W + 1 Jet to W + 0 Jets CrossSections and Comparison s to QCD (Submitted to the 28th InternationalConference on High Energy Physics, Warsaw, Poland, 25-31 July 1996)(D0CONF-96-17)','The D0 Collaboration','','','QCD','','','','$D0_PRI/3033/m_note-3033.pdf','',1996,7,24,2450289,2002,11,21,2452600),(3034,'Study of Diboson Production at D0 (Submitted to the 28thInternational Conference on High Energy Physics, Warsaw, Poland, 25-31 July1996) (D0CONF-96-18)','The D0 Collaboration','','','','','','','$D0_PRI/3034/m_note3034.ps','',1996,8,27,2450323,2002,11,21,2452600),(3035,'Production Properties of W and Z Bosons at D0 (Submitted to the28th International Conferenc eon High Energy Physics, Warsaw, Poland, 25-31July 1996) (D0CONF-96-19)','The D0 Collaboration','','','','','','','$D0_PRI/3035/m_note3035.ps','',1996,7,31,2450296,2002,11,21,2452600),(3036,'Measurem0ent of the W Mass using W -> eu decays at D0 (Submitted tothe 28th International Conferenc eon High Energy Physics, Warsaw, Poland,25-31 July 1996) (D0CONF-96-20)','The D0 Collaboration','','','','','','','$D0_PRI/3036/m_note3036.ps','',1996,7,31,2450296,2002,11,21,2452600),(3037,'Multijet Production at D0 (Presented at the XI Topical Workshop onProton-Antiproton Collider Physics, Abano Terme, Italy, May 1996)(D0CONF-96-21)','Womersley','','','QCD','','','','$D0_PRI/3037/m_note-3037.pdf','',1996,5,31,2450235,2002,11,21,2452600),(3038,'Physics Results from LEP, HERA, et. al.','Collaboration','','','','','','','','',1996,7,16,2450281,0,0,0,0),(3039,'Preliminary W Mass Results from D0 (XI Topical Workshop on p pbarCollider Physics May 31, 1996) (D0CONF-96-22)','Flattum','','','','','','','$D0_PRI/3039/m_note-3039.pdf','',1996,5,31,2450235,2002,11,21,2452600),(3040,'New Channels in the Top Search at D0','Amos','','','','','','','$D0_PRI/3040/m_note-3040.pdf','',1996,7,31,2450296,2002,11,21,2452600),(3041,'Search for Squarks and Gluinos in p pbar collisions at the D0Detector with the Jets and Missing Energy Signature (Submitted to the 28thInternational Conference on High Energy Physics, Warsaw, Poland, 25-31 July1996) (D0CONF-96-23)','The D0 Collaboration','','','','','','','$D0_PRI/3041/m_note3041.ps','',1996,8,27,2450323,2002,11,21,2452600),(3042,'Results from a Search for a Neutral Scalar Produced in Associationwith a W Boson in p pbar Collisions at (sqrt) s = 1.8 TeV (D0CONF-96-24)','The D0 Collaboration','','','','','','','$D0_PRI/3042/m_note3042.ps','',1996,8,27,2450323,2002,11,21,2452600),(3043,'Preliminary Measurement of the Inclusive Jet and Dijet CrossSection in p pbar Collisions at (sqrt) s = 1.8 TeV (presented at the XXXIstRencontres de Moriond QCD and High Energy Hadronic Interactions, Les Arcs,France, March 23-30, 1996) (D0CONF-96-25)','Blazey','','','QCD','','','','$D0_PRI/3043/m_note-3043.pdf','',1996,6,30,2450265,2002,11,21,2452600),(3044,'New Technologies in the D0 Central Tracker Upgrade (VIth Inernational Conference on Nuclear Physics on Instrumentation forExperiments at e+ e- Colliders, Budker Institute of Nuclear Physics,Novosibirsk, Russia, February 29-March 6, 1996) (D0CONF-96-26)','Lincoln','','','','','','','$D0_PRI/3044/m_note-3044.pdf','',1996,6,30,2450265,2002,11,21,2452600),(3045,'Position Resolution of MSGCs with Cathode Readout (D0PUB-96-8)','Amos, et. al.','','','','','','','$D0_PRI/3045/m_note-3045.pdf','',1996,6,30,2450265,2002,11,21,2452600),(3046,'Passification of Microstrip Gas Chambers with an InterstitialGermanium Coating','Miyamoto J., Amos N., Gobbi B., Knoll G., Neal H.,Oesch L., Rubinov P.','','','','','','','$D0_PRI/3046/m_note-3046.pdf','',1996,7,31,2450296,2002,11,21,2452600),(3047,'','Norman','','','','','','','','',0,0,0,0,0,0,0,0),(3048,'Low ET Electron Identification Efficiencies at Run 1B Luminosities','Norman, Goss','','','','','','','$D0_PRI/3048/m_3048_LOW_ET_ELEC.ps','',1996,7,31,2450296,2002,11,21,2452600),(3049,'On the Sign of Muons at D-Zero','Hoeneisen','','','','','','','$D0_PRI/3049/m_note-3049.pdf','',1996,8,4,2450300,2002,11,21,2452600),(3050,'Beauty at D0(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Alvarez','','','','','','','','',1996,6,30,2450265,0,0,0,0),(3051,'Measurement of W + 1 Jet/W + 0 Jets Cross Sections','Guglielmo','','','QCD','','','','$D0_PRI/3051/m_note3051.ps','',1996,8,27,2450323,2002,11,21,2452600),(3052,'Status of Backfitting the Level 2 Simulator','Guglielmo','','','','','','','$D0_PRI/3052/m_note3052.ps','',1996,8,6,2450302,2002,11,21,2452600),(3053,'','Linnemann','','','','','','','','',0,0,0,0,0,0,0,0),(3054,'Deadtimeless Level-1 uv Trigger for the DZero Upgrade','Klopfenstein, Mani','','','','','','','$D0_PRI/3054/m_note-3054.pdf','',1996,8,7,2450303,2002,11,21,2452600),(3055,'Post-CAFIX Jet Corrections for Top Mass Analyses','Hsieh, Lan','','','','','','','$D0_PRI/3055/m_note-3055.pdf','',1996,8,27,2450323,2002,11,21,2452600),(3056,'Scintillating Pad Detectors','Adams D., Baumbaugh B., BorcherdingR., Dunnigan M., Marchant J., Potashnik S., Ruchti R., Warchol J., WayneM. ','','','','','','','$D0_PRI/3056/m_note-3056.pdf','',1996,12,18,2450436,2002,11,21,2452600),(3057,'Silicon Tracker Meeting Transparenices for August 7 & 8, 1996','Ellison, Lipton','','','','','','','$D0_PRI/3057/m_note-3057.pdf','',1996,8,8,2450304,2002,11,21,2452600),(3058,'D Zero Central Hardware Trigger Preliminary Implementation Studiesof the \"Base Line Design\"','Angstadt, Borcherding','','','','','','','$D0_PRI/3058/m_note-3058.pdf','',1996,8,15,2450311,2002,11,21,2452600),(3059,'','Lauer','','','','','','','','',0,0,0,0,0,0,0,0),(3060,'DiMuon Asymmetries (Article in:TMP$ROOT268:[BRUCE1.BRUCE96.RESULTS]CP_VIOLATION_V10.PS - Cuts forhistogram in: A_TALK_V2.KUMAC)','Hoeneisen','','','','','','','$D0_PRI/3060/m_note-3060.pdf','',1996,8,19,2450315,2002,11,21,2452600),(3061,'Measurement of top mass using lipton + jets events','Bhat P., Cochran J., Hsieh F., Jones M., Gilmartin R., McDonald J., Partridge R., Prosper H., Protopopiscu S., Snyder S., Strovink M., Trippe T., Varnes E., Watts G.','','','','','','','$D0_PRI/3061/m_note-3061.pdf','',1997,1,24,2450473,2002,11,21,2452600),(3062,'Diagnostic and Calibration Tools for the Run 2 Muon System','Baldin, Bardon, Hanson, Wood','','','','','','','$D0_PRI/3062/m_note3062.ps','',1996,8,24,2450320,2002,11,21,2452600),(3063,'Dijet Angular Distributions Measured by the D0 Detector','Fatyga,Abbott','','','QCD','','','','$D0_PRI/3063/m_note-3063.pdf','',1996,7,31,2450296,2002,11,21,2452600),(3064,'A Measurement of the Cross-section Ratio of th eW and Z MuonicDecays and the Total Width of W at (sqrt) s = 1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Hu, Ting','','','','','','','','',1996,8,27,2450323,0,0,0,0),(3065,'A Search for Self-Interactions of Neutral Electroweak Gauge Bosons (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Glenn, Steven','','','','','','','','',1996,8,27,2450323,0,0,0,0),(3066,'Long Term Amplitude and Timing Stability of D0 Upgrade TriggerScintillation Counters','Norten, J.','','','','','','','$D0_PRI/3066/m_note-3066.pdf','',1996,8,27,2450323,2002,11,21,2452600),(3067,'Run I electron-neutrino Top Analysis at D0','K.Genser, J.Bantly, J.Cochran, R.Hall, B.Kehoe, P.Yamin','','','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/3067/m_enu_run1.pdf','',2003,8,14,2452866,2003,8,14,2452866),(3068,'D0 Muon Detector Upgrade','Johns','','','','','','','$D0_PRI/3068/m_note-3068.pdf','',1996,9,24,2450351,2002,11,21,2452600),(3069,'Quarkonia Production at D0','Johns','','','','','','','$D0_PRI/3069/m_note-3069.pdf','',1996,9,24,2450351,2002,11,21,2452600),(3070,'A Measurement of the W Boson Mass in p pbar Collisions at (sqrt) s= 1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Flattum','','','','','','','','',1996,9,1,2450328,0,0,0,0),(3071,'Top via e? using Neural Nets at D0 (1992-93 Data)','Singh H.,Beri S.','','','','','','','$D0_PRI/3071/m_note-3071.pdf','',1996,8,15,2450311,2002,11,21,2452600),(3072,'Electroweak Tests and Search for New Phenomena from the Tevatron(SLAC Summer Institute Topical Conference)','Klopfenstein','','','','','','','$D0_PRI/3072/m_note-3072.pdf','',1996,8,30,2450326,2002,11,21,2452600),(3073,'Progress Report on the SIFT-16 Chip Development','Burlingame E., GrimG. P., Holbrook B., Lander R. L., Murray P., Mani S., Pope G.','','','','','','','$D0_PRI/3073/m_note-3073.pdf','',1996,9,16,2450343,2002,11,21,2452600),(3074,'','Mani','','','','','','','','',0,0,0,0,0,0,0,0),(3075,'Effect of Event Topology in the Jet Response Measurement','Grinstein, Elvira','','','QCD','','','','$D0_PRI/3075/m_note-3075.pdf','',1996,9,5,2450332,2002,11,21,2452600),(3076,'D0 Silicon Meeting Transparencies 9/11/96','Ellison J., LiptonR.','','','','','','','$D0_PRI/3076/m_note-3076.pdf','',1996,9,11,2450338,2002,11,21,2452600),(3077,'Buffer Memory for the Level 1 Muon Trigger','Johns, Steinberg','','','','','','','','',1996,7,11,2450276,0,0,0,0),(3078,'Precision Electroweak Measurements (transparencies from DPF 1996)','Demarteau','','','','','','','$D0_PRI/3078/m_note-3078.pdf','',1996,8,12,2450308,2002,11,21,2452600),(3079,'Electroweak Physics Results from the Tevatron (transparencies fromSnowmass 1996)','Demarteau','','','','','','','$D0_PRI/3079/m_note-3079.pdf','',1996,6,25,2450260,2002,11,21,2452600),(3080,'Calorimeter Hot Channel Study','Guida Joan','','','','','','','','',1996,9,17,2450344,0,0,0,0),(3081,'Calibration of D0 Calorimetry (Transparencies from VI InternationalConference on Calorimetry in High-Energy Physics Laboratori Nazionali diFrascati -INFN, Frascati, Italy)','Kehoe','','','','','','','$D0_PRI/3081/m_note-3081.pdf','',1996,6,10,2450245,2002,11,21,2452600),(3082,'L1 Axial CFT Trigger Hardware and Firmware Design for the BaselineTrigger Algorithm','Borcherding F.','','','','','','','$D0_PRI/3082/m_note-3082.pdf','',1996,9,17,2450344,2002,11,21,2452600),(3083,'A Measurement of the Inclusive Drell-Yan e+e- Cross section in theinvariant mass range of 30-60 GeV/C2 from P pbar Collisions at (sqrt) s =1.8 TeV. (Thesis). (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','McKinley, J.','','','','','','','','',1996,9,19,2450346,0,0,0,0),(3084,'Search for the Top Quark in the e + jets with the ?-tag Channel atD0 (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Chang, S.','','','','','','','','',1996,7,31,2450296,0,0,0,0),(3085,'Studies of charge-sign systematic effects in the D0 muon system','Wood D., Maciel A.','','','','','','','$D0_PRI/3085/m_d0n3085.ps','',1996,9,23,2450350,2002,11,21,2452600),(3086,'The Run 1 Wg Anaylsis','Kelly, Fahland','','','','','','','$D0_PRI/3086/m_note-3086.pdf','',1996,9,24,2450351,2002,11,21,2452600),(3087,'FAMUS off-line software for RUN II - introduction (GEANT, RECO,Level 3) (FNALD0::TMP$ROOT400:[EROSHIN.D0_NOTE]NOTE_3087.PS','Denisov D.,Gurzhiev S., Erosh O., Gornushkin Y.','','','','','','','$D0_PRI/3087/m_note-3087.pdf','',1996,10,2,2450359,2002,11,21,2452600),(3088,'Top Couting in the Dimuon Channel: D0 Analysis of Run 1','Bantly J., Hall R.','','','','','','','$D0_PRI/3088/m_note-3088.pdf','',1997,4,10,2450549,2002,11,21,2452600),(3089,'Dimuon Asymmetry Study Summary','Hedin D., Fein, D.','','','','','','','$D0_PRI/3089/m_note3089.ps','',1998,2,17,2450862,2002,11,21,2452600),(3090,'Renormalization /Factorization Scale dependence of the Inclusive JetCross Section','Nang F.','','','QCD','','','','$D0_PRI/3090/m_note3090.ps','',1996,9,26,2450353,2002,11,21,2452600),(3091,'What do you get when you cross a NLO pdf with a LO MC prediction?','Nang F.','','','','','','','$D0_PRI/3091/m_note3091.ps','',1996,10,23,2450380,2002,11,21,2452600),(3092,'Tracking Algorithmn using Stored Patterns','Guimaraes H.','','','','','','','$D0_PRI/3092/m_note-3092.pdf','',1996,8,31,2450327,2002,11,21,2452600),(3093,'Study of a Majority Threshold Trigger Design','Borcherding F.','','','','','','','$D0_PRI/3093/m_note-3093.pdf','',1996,9,27,2450354,2002,11,21,2452600),(3094,'W ->?u and Z -> ?? Cross Sections as a Function of InstantaneousLuminosity Using the p pbar \'96 Data Sample','Quintas P.','','','','','','','$D0_PRI/3094/m_note-3094.pdf','',1996,9,27,2450354,2002,11,21,2452600),(3095,'SVX2E ASIC Testing Results','Utes M.','','','','','','','$D0_PRI/3095/m_note-3095.pdf','',1996,9,13,2450340,2003,1,10,2452650),(3096,'Beam Test of the SVXII','Angstadt R., et. al.','','','','','','','$D0_PRI/3096/m_note-3096.pdf','',1996,10,12,2450369,2003,1,10,2452650),(3097,'','Brandt, A.','','','','','','','','',0,0,0,0,0,0,0,0),(3098,'PAC Presentations - 9/27/96','Tuts M., Bross A., Montgomery H.','','','','','','','$D0_PRI/3098/m_note-3098.pdf','',1996,9,27,2450354,2003,1,10,2452650),(3099,'General Upgrade Meeting - Transparencies 8/8/96','Tuts, M.','','','','','','','$D0_PRI/3099/m_note-3099.pdf','',1996,8,8,2450304,2003,1,10,2452650),(3100,'Muon scintillator offline calibration','Hu Tao, McMahon T.','','','','','','','$D0_PRI/3100/m_note-3100.pdf','',1996,9,30,2450357,2003,1,10,2452650),(3101,'Report of the Top Physics Advisory Committee','Greenlee H.,Grunendahl S., Heinson A., Narain M.','','','','','','','$D0_PRI/3101/m_note-3101.pdf','',1996,10,4,2450361,2003,1,10,2452650),(3102,'Dimuon Charge Asymmetry due to Kaon Decay','Hoeneisen B.','','','','','','','$D0_PRI/3102/m_note-3102.pdf','',1996,10,7,2450364,2003,1,10,2452650),(3103,'Factorization of Two-Muon Efficiency by Single-Muon-EfficiencyAnalytical Functions','Kozlovsky E.','','','','','','','$D0_PRI/3103/m_note-3103.pdf','',1996,10,30,2450387,2003,1,10,2452650),(3104,'','Shaffer C., Linn S.','','','','','','','','',0,0,0,0,0,0,0,0),(3105,'','Raja','','','','','','','','',0,0,0,0,0,0,0,0),(3106,'Limits on the Production of ZX and Third Generation Leoptoquarkusing Dimuon Events','Hedin D., Sirotenko V.','','','','','','','$D0_PRI/3106/m_note-3106.pdf','',1996,10,18,2450375,2003,1,10,2452650),(3107,'Top Quark Production in Multi-Jet Final States (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Won','','','','','','','','',1996,10,17,2450374,0,0,0,0),(3108,'Inclusive Bottom Production in p pbar Collisions at (sqrt) s = 1.8TeV at D0 Central Detector Region (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Oguri','','','','','','','','',1995,8,31,2449961,0,0,0,0),(3109,'Presentation of Limits','Kelly M.','','','','','','','$D0_PRI/3109/m_note-3109.pdf','',1996,10,30,2450387,2003,1,10,2452650),(3110,'Transparencies from the D0 Silicon Meeting 10/17/96','Ellison J.,Lipton R.','','','','','','','$D0_PRI/3110/m_note-3110.pdf','',1996,10,17,2450374,2003,1,10,2452650),(3111,'General Upgrade Meeting - Transparencies 10/17/96','Tuts M.','','','','','','','$D0_PRI/3111/m_note-3111.pdf','',1996,10,17,2450374,2003,1,10,2452650),(3112,'Calorimeter Studies','Guida Joan, Schamberger D., Guida Jan','','','','','','','$D0_PRI/3112/m_note-3112.pdf','',1996,10,21,2450378,2003,1,10,2452650),(3113,'Prospects for a Z -> tt Analysis','Kelly M.','','','','','','','$D0_PRI/3113/m_note-3113.pdf','',1996,10,30,2450387,2003,1,10,2452650),(3114,'','Partridge, R.','','','','','','','$D0_PRI/3114/m_note3114.ps','',0,0,0,0,2002,8,30,2452517),(3115,'Detector Implications for Electroweak Physics at the Tevatron','Madaras, R.','','','WZ','','','','$D0_PRI/3115/m_como96_paper.ps','',1996,10,30,2450387,2003,1,10,2452650),(3116,'A Proposal for D0\'s Run 2 Level-3 Trigger/Data Acquisition','Cutts D., Hoftun J., Watts G., Zeller R.','','','','','','','$D0_PRI/3116/m_note3116.ps','',1996,10,29,2450386,2003,1,10,2452650),(3117,'Using Microgap Chambers as a Self Contained Trigger in D0 for TeV33','Watts G., Johnson M.','','','','','','','$D0_PRI/3117/m_note3117.ps','',1996,10,30,2450387,2003,1,10,2452650),(3118,'','Jonckheere, A.','','','','','','','','',0,0,0,0,0,0,0,0),(3119,'Studies of the Fiber Tracker Level 1.0 Trigger Efficiency onB-meson Decays','Gomez, R.','','','','','','','$D0_PRI/3119/m_note-3119.pdf','',1996,11,1,2450389,2003,1,10,2452650),(3120,'','Glenn, S.','','','','','','','','',0,0,0,0,0,0,0,0),(3121,'A-Stub Results from D0 Collider Data','Gomez G., Diehl T., Denisov D., Eno S., Ito A., Lyon A., Thompson J.','','','','','','','$D0_PRI/3121/m_note-3121.pdf','',1997,3,3,2450511,2003,1,12,2452652),(3122,'','Paterno, L.','','','','','','','','',0,0,0,0,0,0,0,0),(3123,'DataBase Management System (DBMS) Recommendation for D0','Bhat P., Greenlee H., Hobbs J., Jonckheere A., Krzywdzinski S., Leuking L., Li-Demarteau Q., O\'Connell J., Paterno L., Prosper H., Protopopescu S.','','','','','','','$D0_PRI/3123/m_note3123.ps','',1997,1,28,2450477,2003,1,12,2452652),(3124,'QCD/WZ Ntuples','Casey D., Joffe-Minor T., Tarazi J.','','','','','','','$D0_PRI/3124/m_note3124.ps','',1996,11,15,2450403,2003,1,12,2452652),(3125,'Using Differences in the Widths of Jets in the Search for Top toAll-Jets','Ahn S., Amos N., Bhat P., Cretsinger C., Cummings M.A.,McDonald J., Moromisato J., Prosper H., Stewart C., Won E., Yamada R.','','','','','','','$D0_PRI/3125/m_note-3125.pdf','',1996,11,30,2450418,2003,1,12,2452652),(3126,'ZCD trigger','Feher S., Gobbi B., Mao H.','','','','','','','$D0_PRI/3126/m_trigger.ps','',1996,11,18,2450406,2003,1,12,2452652),(3127,'Proposal for a New Architecture for the New Trigger System usingthe Scintillation Fiber Detector','Martin, M.','','','','','','','$D0_PRI/3127/m_note-3127.pdf','',1995,5,22,2449860,2003,1,12,2452652),(3128,'Inclusive Jet Cross Section as a Function of Jet Cone Size at D0','Bhattacharjee M., Blazey G.','','','QCD','','','','$D0_PRI/3128/m_note-3128.pdf','',1997,1,17,2450466,2003,1,12,2452652),(3129,'Experimental bounds on WW, WZ -> eujj production at D0 (Supportingdocumentation)','Sanchez-Hernandez, A.','','','','','','','$D0_PRI/3129/m_note-3129.pdf','',1996,11,19,2450407,2003,1,12,2452652),(3130,'Study of the Jet Energy Scale Using Photon + 1 Jet Events(postscript file: FNALD0::UMI2:[TMP52.USERS.HSIEH.ESCALE]ESCALE.PS)','Hsieh, F.','','','QCD','','','','$D0_PRI/3130/m_note-3130.pdf','',1996,11,30,2450418,2003,1,12,2452652),(3131,'Transparencies from the D0 Silicon Meeting 11/21/96','Ellison J.,Lipton R.','','','','','','','$D0_PRI/3131/m_note-3131.pdf','',1996,11,21,2450409,2003,1,12,2452652),(3132,'Asymmetry in the missing transverse energy phi distribution for single electron events at low missing transverse energy','Gartung','','Gartung P.','','','','','$D0_PRI/3132/m_note3132.ps','',1996,12,1,2450419,1998,3,5,2450878),(3133,'The Search for a Fourth Generation Quark (b\') using Flavor-ChangingNeutral Current Decay Signatures','Greenlee H., Narain M., Singh P.','','','','','','','$D0_PRI/3133/m_note-3133.pdf','',1996,11,27,2450415,2003,1,12,2452652),(3134,'Calibration of the CDC z Scale using Dimuon Events in Run 1b','Kotwal A.','','','','','','','$D0_PRI/3134/m_note-3134.pdf','',1996,12,5,2450423,2003,1,12,2452652),(3135,'Supersymmetry Searches at the TeVatron and HERA: Results andProspects (LHCC SUSY Workshop)','Montgomery, H.','','','','','','','$D0_PRI/3135/m_note-3135.pdf','',1996,10,30,2450387,2003,1,12,2452652),(3136,'Multivariate Discriminant Analysis and Neural Networks (Universityof D0)','Bhat, P.','','','','','','','$D0_PRI/3136/m_note-3136.pdf','',1996,10,24,2450381,2003,1,12,2452652),(3137,' Transparencies fron upgrade meeting, 11/21/96','Tuts M.','','','','','','','$D0_PRI/3137/m_note-3137.pdf','',1996,11,21,2450409,2003,1,12,2452652),(3138,'Transverse Energy and Cone Size Dependence of the Inclusive JetCross Section at a Center-of-Mass Energy of 1.8 TeV (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Bhattacharjee M.','','','QCD','','','','','',1996,12,18,2450436,0,0,0,0),(3139,'Jet Energy Scale (Cafix 5.1)','Jet energy scale group','','','QCD','','','','$D0_PRI/3139/m_note-3139.pdf','',1996,12,6,2450424,2003,1,12,2452652),(3140,'ZCD Data Analysis and CDC Z Bias Correction','Mao H., DemarteauM., Feher S., Landry F., Para A.','','','','','','','$D0_PRI/3140/m_analys3140.ps','',1996,12,17,2450435,2003,1,12,2452652),(3141,'Search for Supersymmetry in Models with Gauge Mediated Supersymmetry Breaking','Chopra S., Qian J.','','','NEW','','','','$D0_PRI/3141/m_note3141.ps','',1997,5,3,2450572,2003,1,12,2452652),(3142,'','Warchol','','','','','','','','',0,0,0,0,0,0,0,0),(3143,'The Future of High Energy Physics','Womersley, J.','','','','','','','$D0_PRI/3143/m_note-3143.pdf','',1996,12,18,2450436,2003,1,12,2452652),(3144,'Combined Run 1 evjj Results','Sanchez-Hernandez A.','','','','','','','$D0_PRI/3144/m_note-3144.pdf','',1997,2,12,2450492,2002,11,21,2452600),(3145,'Magnetic Forces From The ICD Steel','Smith, R.','','','','','','','$D0_PRI/3145/m_icd_forces_d03145.ps','',1997,1,16,2450465,2002,11,21,2452600),(3146,'','Won','','','','','','','','',0,0,0,0,0,0,0,0),(3147,'Generator for the Leptoquark Pair Production','Boos E., Belyaev A., Kryukov A., Solomin, A.','','Belyaev A','NEW','','','POSTSCRIPT','$D0_PRI/3147/m_note_lqn.ps','',1997,1,17,2450466,2002,11,21,2452600),(3148,'Single Top Quarks at the Fermilab Tevatron','Heinson A., BelyaevA., Boos E.','','','','','','','$D0_PRI/3148/m_note-3148.pdf','',1997,1,17,2450466,2002,11,21,2452600),(3149,'Run 11 Scalers for D0','Bantly, J','','','','','','','$D0_PRI/3149/m_note-3149.pdf','',0,0,0,0,2002,11,21,2452600),(3150,'Limits on Minimum SUSY from Mixing and CP Violation','Marin C.,Hoeneisen B.','','','','','','','$D0_PRI/3150/m_note-3150.pdf','',1997,1,17,2450466,2002,11,21,2452600),(3151,'Tranparencies from the D0 Software/Computing Workshop 12/18-20/96','Merritt W., Editor','','','','','','','$D0_PRI/3151/m_note-3151.pdf','',1997,0,0,2450418,2002,11,21,2452600),(3152,'Tranparencies from the D0 Software/Computing workshop 12/18-20/96','Merritt W., Editor','','','','','','','$D0_PRI/3152/m_note-3152.pdf','',1997,0,0,2450418,2002,11,21,2452600),(3153,'Tranparencies from the D0 Software/Computing Workshop 12/18-20/96','Merritt W., Editor','','','','','','','$D0_PRI/3153/m_note-3153.pdf','',1997,1,3,2450452,2002,11,21,2452600),(3154,'Transparencies from the D0 Software/Computing Workshop 12/18-20/96','Merritt W., Editor','','','','','','','$D0_PRI/3154/m_note-3154.pdf','',1997,1,3,2450452,2002,11,21,2452600),(3155,'Transparencies from the D0 Software/Computing Workshop 12/18-20/96','Merritt W., Editor','','','','','','','$D0_PRI/3155/m_note-3155.pdf','',1997,1,3,2450452,2002,11,21,2452600),(3156,'ROUTING of signals for the SF TRIGGER using 8 LAYERS GEOMETRY','Martin, M.','','','','','','','$D0_PRI/3156/m_note-3156.pdf','',1997,1,14,2450463,2002,11,21,2452600),(3157,'Nmake: A Routine to Build a Comis Function from a Trained Neural Network','McDonald J.','','','','','','','$D0_PRI/3157/m_note-3157.pdf','',1997,2,2,2450482,2002,11,21,2452600),(3158,'Dijet Angular Distributions in pp Collisions at /8 = 1.8 TeV(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Fatyga, M.','','','QCD','','','','','',1997,1,10,2450459,0,0,0,0),(3159,'Workshop on QCD at D0','Weerts H., Schellman H., Varelas N., Neuman L., Dubendorf J.','','','','','','','','',1997,1,22,2450471,0,0,0,0),(3160,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3161,'Search for First Generation Scalar Leptoquarks with Run Ib Data','Wang G.','','','','','','','$D0_PRI/3161/m_note-3161.pdf','',1996,1,15,2450098,2002,11,21,2452600),(3162,'Alternative Routing of signals for the 8 LAYERS GEOMETRY SF TRIGGER using Altera PLD devices','Martin M.','','','','','','','$D0_PRI/3162/m_note-3162.pdf','',1997,1,13,2450462,2002,11,21,2452600),(3163,'Transparencies From Fiber Tracking General Group Meetings:6/96-8/96','Bross, A.','','','','','','','$D0_PRI/3163/m_note-3163.pdf','',1997,1,20,2450469,2002,11,21,2452600),(3164,'Transparencies From Fiber Tracking General Group Meetings:9/96-12/96','Bross, A.','','','','','','','','',1997,1,20,2450469,0,0,0,0),(3165,'Features and Bub of L2Jets and Esum Bank','Frame K., Geld T.,Owen D., Fatyga K.','','','QCD','','','','$D0_PRI/3165/m_note3165.ps','',1997,1,17,2450466,2002,11,21,2452600),(3166,'Trigger Efficiency Study Methods Using Single Jet Efficiencies','Fatyga M.','','','QCD','','','','$D0_PRI/3166/m_note3166.ps','',1997,1,17,2450466,2002,3,1,2452335),(3167,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3168,'D Zero Central Hardware Trigger Preliminary Implementation Studies of Weighted Averaging of \"Clusters\"','Angstadt R., Johnson M','','','','','','','$D0_PRI/3168/m_note-3168.pdf','',1997,1,24,2450473,2002,11,21,2452600),(3169,'Radiation aging of scintillators and wave length shifters','Bezzubov V., Chumakov A., Evdokimov V., Gurzhiev A., Gurzhiev S., Denisov S.','','','','','','','$D0_PRI/3169/m_note3169.ps','',1997,1,12,2450461,2002,11,21,2452600),(3170,'ROUTING of signals for the 8 LAYERS GEOMETRY SF TRIGGER and PRESHOWER','Martin M.','','','','','','','$D0_PRI/3170/m_note-3170.pdf','',1997,1,20,2450469,2002,11,21,2452600),(3171,'Recommendations on Scripting Language for D0 Experiment','Bartlett F., Hobbs J., Qizhong L., Lueking L., Snyder S., Thatcher R., Watts G.','','','','','','','$D0_PRI/3171/m_note-3171.pdf','',1997,1,30,2450479,2002,11,21,2452600),(3172,'DIS Kinematics and Leptoquarks at HERA','Goussiou A.','','','','','','','$D0_PRI/3172/m_note-3172.pdf','',1997,2,4,2450484,2002,11,21,2452600),(3173,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3174,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3175,'Limits on the Production of Pair Produced Third Generation Leptoquarks and ZX Events','Hedin D., Sirotenko V.','','','','','','','$D0_PRI/3175/m_note-3175.pdf','',1997,6,13,2450613,2002,11,21,2452600),(3176,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3177,'Run 1B Chargino/Neutralino Tri-lepton Analysis','Goss L.T., Norman D., White J.T., Wirjawan J.V.D.','','','','','','','$D0_PRI/3177/m_3177_R1B_TRILEP_FINAL.ps','',1997,3,7,2450515,2002,11,21,2452600),(3178,'TRIGGER EFFICIENCIES FOR RUN 1B INCLUSIVE JET TRIGGERS','Frame K., Geld T., Fatyga K','','','QCD','','','','$D0_PRI/3178/m_note3178.ps','',1997,2,6,2450486,2002,11,21,2452600),(3179,'Calibration of the Z Center of Gravity of Electromagnetic Clusters using Z (arrow) ee Events and the Error on the W Mass','Flattum E.','','','','','','','$D0_PRI/3179/m_note3179.ps','',1997,2,10,2450490,2002,11,21,2452600),(3180,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3181,'Reconstruction of the drift characteristic by the integral equation','Yatsunenko Y. A.','','','','','','','$D0_PRI/3181/m_dc.ps','',1997,2,12,2450492,2002,11,21,2452600),(3182,'','','','','','','','','$D0_PRI/3182/m_note-3182.pdf','',0,0,0,0,2002,11,21,2452600),(3183,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3184,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3185,'Search for First Generation Scalar Leptoquarks with Run 1a + 1b + 1c Data in ev jj Channel','Guoliang W.','','','','','','','$D0_PRI/3185/m_note-3185.pdf','',1997,2,25,2450505,2002,11,21,2452600),(3186,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3187,'Calibration of the CDC z Scale using Cosmic Rays in Run 1b Collider Data','Kotwal A.','','','','','','','$D0_PRI/3187/m_note-3187.pdf','',1997,2,25,2450505,2002,11,21,2452600),(3188,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3189,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3190,'Preliminary Results of the Radiation Hardness Tests of the WVX IIE Silicon Readout IC','Gomez R., Guglielmo G.','','','','','','','$D0_PRI/3190/m_note-3190.pdf','',1997,3,4,2450512,2002,11,22,2452601),(3191,'D0gstar D0 GEANT Simulation o fthe Total Apparatus Response (http://d0sgi0.fnal.gov/~d0upgrad/d0_private/software/montecarlo/d0gstar/tex/manual.ps)','Fisyak Y., Womersley J.','','','','','','','$D0_PRI/3191/m_note3191.ps','',1997,4,11,2450550,2002,11,22,2452601),(3192,'Linux @ D0: Status','Hobbs J., Snyder S.','','','','','','','$D0_PRI/3192/m_note-3192.pdf','',1997,3,12,2450520,2002,11,22,2452601),(3193,'A Simple Mass Aanalysis for the Standard First Generation Leptoquark Search in the eejj Channel','Hobbs J.','','','','','','','$D0_PRI/3193/m_note-3193.pdf','',1997,3,12,2450520,2002,11,22,2452601),(3194,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3195,'Comparisons of HERWIG and PYTHIA as Inclusive W Generators','Gupta A.,Kotwal A.','','','','','','','$D0_PRI/3195/m_note-3195.pdf','',1997,3,14,2450522,2002,11,22,2452601),(3196,'How to Build a Neutrino Beam (Transparencies from The University of D0 Lecture Series)','McFarland K.','','','','','','','$D0_PRI/3196/m_note-3196.pdf','',1997,3,12,2450520,2002,11,22,2452601),(3197,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3198,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3199,'D0 Luminosity Monitor Constant\r\nfor the 1994-1996 Tevatron Run','J. Bantly, J. Krane, D. Owen, R. Partridge, L. Paterno','Crosslist: Fermilab Technical Memo #1995\r\n25 pages (including 2 Fermilab cover pages) with figures.','Jeff Bantly','ONLINE','PUB','PUBLIC','POSTSCRIPT','$D0_PRI/3199/m_tm1995.ps','',1997,6,1,2450450,1999,11,1,2450601),(3200,'Jet Energy Scale Uncertainty for Top Cross Section PRL','Hsieh F., Partridge R., Snyder S','','','','','','','$D0_PRI/3200/m_note-3200.pdf','',1997,3,25,2450533,2002,11,22,2452601),(3201,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3202,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3203,'Central Inclusive Jet Cross Section at DZERO','Elvira V. D., Blazey G.','','','QCD','','','','$D0_PRI/3203/m_note-3203.pdf','',1997,2,1,2450481,2002,11,22,2452601),(3204,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3205,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3206,'','','','','','','','','$D0_PRI/3206/m_note-3206.pdf','',0,0,0,0,2002,11,22,2452601),(3207,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3208,'D0 Optimized Search for First Generation Leptoquarks with Run I Data','P. Bhat, S. Blessing, A. Boehnlein, S. Hagopian,\r\nR. Gilmartin, J. Hobbs, D. Karmgard, G. Landsberg,\r\nR. Partridge, H. Prosper, M. Strovink, G.~Wang, G. Watts','PRL version has been published: PRL 79 (1997) 4321','Greg Landsberg','NEW','PHYS','PUBLIC','POSTSCRIPT','$D0_PRI/3208/M_D0NOTE_3208.PS','',1998,10,8,2451095,2002,11,22,2452601),(3209,'A PRELIMINARY CONSIDERATION OF HIT FINDERS FOR THE D0 IMPACT PARAMETER TRIGGER','Piekarz H.','','','','','','','$D0_PRI/3209/m_note-3209.pdf','',1997,3,21,2450529,2002,11,22,2452601),(3210,'Leptoquarks (Transparencies shown at the LG meeting 3/14/97)','Hewett J., Rizzo T.','','','','','','','$D0_PRI/3210/m_note-3210.pdf','',1997,3,21,2450529,2002,11,22,2452601),(3211,'MEASUREMENTS OF OUTPUT OFFSET CORRELATIONS IN CALORIMETER PREAMPLIFIER','Abdrashitov O.','','','','','','','$D0_PRI/3211/m_note-3211.pdf','',1995,8,2,2449932,2002,11,22,2452601),(3212,'MEASUREMENTS OF RESISTANCE AND CAPACITANCE CHARACTERISTICS OF PULSER TRACES ON PREAMPLIFIER MOTHERBOARD','Abdrashitov O.','','','','','','','$D0_PRI/3212/m_note-3212.pdf','',1995,8,2,2449932,2002,11,22,2452601),(3213,'Characteristics of 2sk369 Junction Field Effect Transistor for Run 2 Calorimeter Preamplifiers','Kotwal A.','','','','','','','$D0_PRI/3213/m_note-3213.pdf','',1997,3,25,2450533,2002,11,22,2452601),(3214,'A Measurement of the s (p pbar -> W) ? Br(W-> ??) as a Test of Lepton Universality at (sqrt) s = 1.8 TeV','Li, Q., et. al.','','','','','','','$D0_PRI/3214/m_note-3214.pdf','',1997,5,13,2450582,2002,11,22,2452601),(3215,'A Photograph and Cartoon Tour of Fermilab','Spentzouris L.','','','','','','','$D0_PRI/3215/m_note-3215.pdf','',1997,4,1,2450540,2002,11,22,2452601),(3216,'Calibration of the Vertex Chamber using Central Muons','Kotwal, A.','','','','','','','$D0_PRI/3216/m_note-3216.pdf','',1997,4,24,2450563,2002,11,22,2452601),(3217,'','','','','','','','','$D0_PRI/3217/m_note-3217.pdf','',0,0,0,0,2002,11,22,2452601),(3218,'','','','','','','','','$D0_PRI/3218/m_note-3218.pdf','',0,0,0,0,2002,11,22,2452601),(3219,'','','','','','','','','$D0_PRI/3219/m_note-3219.pdf','',0,0,0,0,2002,11,22,2452601),(3220,'Preliminary Studies of the Use of Vertical-Cavity Surface-Emitting Semiconductor Lasers for Data Transmission in High Energy Physics Experiments','Gomez R., Johnson M., Baert M.','','','','','','','$D0_PRI/3220/m_note-3220.pdf','',1997,4,9,2450548,2002,11,22,2452601),(3221,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3222,'The D0 Luminosity Monitor Constant for sqrt(s)=630 GeV','J. Krane, J. Bantly, D. Owen ','also Fermilab Tech Memo 2000','John Krane','ONLINE','PUB','','POSTSCRIPT','$D0_PRI/3222/m_TM2000.ps','',1997,1,1,2450450,2002,11,22,2452601),(3223,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3224,'The Quest for the BFKL pomeron at the Tevatron Jun S.','Heuring T.','','','','','','','$D0_PRI/3224/m_note-3224.pdf','',1997,5,29,2450598,2002,11,22,2452601),(3225,'Generator Systematic Error in the Top Quark Cross Section Measurement','Bantly J., Cobau W., Cochran J., Genser K., Greenlee H., Hall R., Hobbs J., Kehoe R., Narain M., Rockwell T., Tamburello P., Zhu H.','','','','','','','$D0_PRI/3225/m_note-3225.pdf','',1997,4,25,2450564,2002,11,22,2452601),(3226,'Effects of Multiple Interactions and Pileup on the W Mass Measurement in the Electron Channel at D0 in Run II at TeV33','Kotwal, A.','','','','','','','$D0_PRI/3226/m_note-3226.pdf','',1997,5,28,2450597,2003,1,12,2452652),(3227,'Discovering the Higgs at TeV33: a Status Report','Womersley, J.','','','','','','','$D0_PRI/3227/m_note-3227.pdf','',1997,4,30,2450569,2003,1,12,2452652),(3228,'A Study of CP-Violation in the B0 -> uKs Channel with the D0 Detector in Run II','Lima G., Maciel A.','','','','','','','$D0_PRI/3228/m_note-3228.pdf','',1997,3,30,2450538,2003,1,12,2452652),(3229,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3230,'Measurement of Zgamma and Limits on Trilinear ZZg and Zgg Couplings','Adams M., Murphy C. R., Guglielmo G., Diehl H. T., Li P.','','','WZ','DOC','','POSTSCRIPT','$D0_PRI/3230/m_d0note_3230.ps','',1997,5,28,2450597,2003,1,12,2452652),(3231,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3232,'Transverse Alighment of Forward Drift Chambers using Electrons','Kotwal, A.','','','','','','','$D0_PRI/3232/m_note-3232.pdf','',1997,5,22,2450591,2003,1,12,2452652),(3233,'','','','','','','','','$D0_PRI/3233/m_note3033.ps','',0,0,0,0,2002,8,30,2452517),(3234,'Axial Calibration of the D0 Central Drift Chamber','S. Feher, N. Graf, A. Kotwal, F. Landry, R. Madaras, H. Mao, S. Rajagopalan, P. Rubinov, T. Yasuda','','Ron Madaras','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3234/m_cdc_axial_calib.ps','',0,0,0,0,2003,1,12,2452652),(3235,'Reconstruction of the Primary Vertex using a Local Parameterization of Tracks','Maria Teresa P. Roco','','','ALGORITHMS','DOC','','POSTSCRIPT','$D0_PRI/3235/m_d0-3235.ps','',1997,5,1,2450570,2003,1,12,2452652),(3236,'Secondary Vertex b-Tagging in Top Events','Maria Teresa P. Roco','','','ALGORITHMS','DOC','','POSTSCRIPT','$D0_PRI/3236/m_d0-3236.ps','',1997,5,1,2450570,2003,1,12,2452652),(3237,'Technical Design Report for the D0 forward trigger scintillator counters','Protvino, Fermilab, Boston, Arizona, Northeastern, Prague, Northern Illinois','','','MUON','','','','$D0_PRI/3237/m_note3237.ps','',1997,11,1,2450754,2002,3,1,2452335),(3238,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3239,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3240,'A Measurement of the Ratio of Production Cr(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Joffe-Minor, T.','','','','','','','','',1997,5,28,2450597,0,0,0,0),(3241,'Test of the Electroweak Sector of hte Standard Model by Measuring the Anomalous WWg Couplings(Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Fahland, T.','','','','','','','','',1997,5,28,2450597,0,0,0,0),(3242,'Estimate of backgrounds to WW, WZ, ZZ and heavy Higgs bosons\r\nin Run II','G. Obrant and H. T. Diehl','','','WZ','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3242/m_obrant-diehl-ww.ps','',3897,5,27,3144557,2004,12,20,2453360),(3243,'B Tagging in ttbar Events for Run II','Meenakshi Narain and Frederic Stichelbaut','','F. Stichelbaut','ALGORITHMS','MEMO','D0_PRIVATE','','$D0_PRI/3243/M_BTAG.PS','',1997,5,29,2450598,2003,1,12,2452652),(3244,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3245,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3246,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3247,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3248,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3249,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3250,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3251,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3252,'Comparision Between 2 deg or 90 deg Stereo Angle in the Silicon Vertex Detector','Maria Teresa P. Roco','','','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3252/m_d0-3252.ps','',1997,6,1,2450601,2003,1,12,2452652),(3253,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3254,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3255,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3256,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3257,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3258,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3259,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3260,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3261,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3262,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3263,'Bicron BCF92 Optical Fiber Attenuation Length Studies','J.P.Norten, C.Nicholson','','','FIBER_TRACKER','','','','$D0_PRI/3263/m_note3263.ps','',1997,6,24,2450624,2003,1,12,2452652),(3264,'Limits on Inclusive Dimuon CP Violation in the Standard Model','Hoeneisen B., Marin C.','','','','','','','$D0_PRI/3264/m_note-3264.pdf','',1997,6,25,2450625,2003,1,12,2452652),(3265,'A Multiple Interaction Tool for sqrt(s)=630 GeV','John Krane','','John Krane','QCD','DOC','','POSTSCRIPT','$D0_PRI/3265/m_MI_630.ps','',1997,4,15,2450554,2003,1,12,2452652),(3266,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3267,'','','','','','','','','$D0_PRI/3267/m_cdc_zcalib_cosmic.ps','',0,0,0,0,1998,5,20,2450954),(3268,'','','','','','','','','$D0_PRI/3268/m_cdc_zcalib_zcd.ps','',0,0,0,0,1998,5,20,2450954),(3269,'Renormalization?Factorization Scale Dependence of the Triple Differential Dijet Cross Section','Nang, F.','','','QCD','','','','$D0_PRI/3269/m_note-3269.pdf','',1997,7,8,2450638,2003,1,12,2452652),(3270,'High Energy Tests of QCD (Proceedings of the Sixth Conference on the Intersections of Particle and Nuclear Physics, Big Sky Montana, May 27-June 2, 1997','Blazey, J.','','','','','','','$D0_PRI/3270/m_note-3270.pdf','',1997,8,6,2450667,2003,1,12,2452652),(3271,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3272,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3273,'Comparison of the Measured and Calculated Muon Distributions for SAMUS','Babintsev, V.','','','','','','','$D0_PRI/3273/m_note3273.ps','',1997,8,6,2450667,2003,1,12,2452652),(3274,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3275,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3276,'','','','','','','','','$D0_PRI/3276/M_Inclusive_Jet_Note.ps','',0,0,0,0,1998,9,2,2451059),(3277,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3278,'Mini Drift Tube Gas Studies for the D0 Upgrade Muon System: Preliminary Performance Results','Norten, J.','','','','','','','$D0_PRI/3278/m_note-3278.pdf','',1997,7,1,2450631,2002,11,22,2452601),(3279,'Production of Jets at the Tevatron','Heuring, T.','','','','','','','$D0_PRI/3279/m_sanminiato.ps','',1997,8,6,2450667,2002,11,22,2452601),(3280,'Toward the Nature of the Charge Asymetry of Muon Pairs in D0','Gershtein, Y.','','','','','','','$D0_PRI/3280/m_note-3280.pdf','',1997,8,6,2450667,2002,11,22,2452601),(3281,'Studies of the MuSmear Correction Factors for the Run 1b/c Sungle Top Analyses','Mason, M. and Wimpenny, S.J. - Univ. of California, Riverside','','S.J. Wimpenny','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3281/m_d0note_3281.ps','',1997,8,8,2450669,2002,11,22,2452601),(3282,'Muon Efficiency Corrections for Single Top Analyses','Wimpenny, S.J. - Univ. of California, Riverside','','S.J. Wimpenny','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3282/m_d0note_3282.ps','',1997,8,10,2450671,2002,11,22,2452601),(3283,'Jet and Missing Energy Corrections for the D0 Single Top Analyses','Mason, M. and Wimpenny, S.J. - Univ. of California, Riverside; \r\nDudko, L.V. and Sotnikova, N. - Moscow State University','','S.J. Wimpenny','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3283/m_d0note_3283.ps','',1997,9,18,2450710,2002,11,22,2452601),(3284,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3285,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3286,'Run Plan for the D0 Test Beam','Hall R., Kotcher J.','','','','','','','$D0_PRI/3286/m_note-3286.pdf','',1997,7,17,2450647,2002,11,22,2452601),(3287,'Jet Energy Scale at D0','Elvira, D.','','','QCD','','','','$D0_PRI/3287/m_note3287.ps','',1997,9,2,2450694,2002,11,22,2452601),(3288,'Jet Energy Scale at DZero for sqrt(s)=630 GeV','Anna Goussiou, John Krane','','John Krane','QCD','DOC','','POSTSCRIPT','$D0_PRI/3288/m_escale_630_v4_2.ps','',1998,3,1,2450874,2002,11,22,2452601),(3289,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3290,'Search for W Boson Pair Production in Dilepton Decay Modes with Run 1B Data','P. Bloom, H.T. Diehl, T. Yasuda','','','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',0,0,0,0,0,0,0,0),(3291,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3292,'A Maximum-Likelihood Mass Fitting Technique for LQ -> evjj','Knuteson, B.','','','','','','','$D0_PRI/3292/m_D0Note3292.ps','',1997,8,1,2450662,2002,11,22,2452601),(3293,'A Maximum-Likelihood Mass Fitting Technique for LQ -> eejj','Knuteson, B.','','','','','','','$D0_PRI/3293/m_D0Note3293.ps','',1997,7,28,2450658,2002,11,22,2452601),(3294,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3295,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3296,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3297,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3298,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3299,'Muon System Electronics Upgrade','Baldin, B. et all','','','','','','','$D0_PRI/3299/m_note-3299.pdf','',1997,9,2,2450694,2003,1,9,2452649),(3300,'SAMUS performance in a background environment','V.Babintsev, A.Kozelov','','','MUON','','','','$D0_PRI/3300/m_note3300.ps','',1997,1,1,2450450,2003,1,9,2452649),(3301,'Central Fiber Tracker Trigger Simulation ','Kathy Streets and Kin Yip','','Kin Yip','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3301/m_d0note3011.ps','',1998,9,2,2451059,2003,1,9,2452649),(3302,'SAMUS data samples: RUN I\r\n\r\n\r\n\r\n','V.Abramov, V.Babintsev, V.Bezzubov, S.Chekulaev, O.Eroshin, A. Galyaev, S.Gurzhiev, A.Kostritskiy, D.Denisov, T.Hu, Z.Zieminski','','','MUON','','','','$D0_PRI/3302/m_note3302.ps','',1997,1,1,2450450,2003,1,9,2452649),(3303,'Run 1a (ee + mm + nn) + Run 1B (ee +mm) Combined anomalous ZVg Coupling Limits','Guglielmo G., Diehl H. T.','','','','','','','$D0_PRI/3303/m_d0note_3303.ps','',1997,10,21,2450743,2003,1,9,2452649),(3304,'Single-Sided Silicon Microstrip Detectors: Production Testing Results','Gounder K., Boswell C., Ellison J.','','','','','','','$D0_PRI/3304/m_note3304.ps','',1997,10,21,2450743,2003,1,9,2452649),(3305,'D0 Rototrack: First Stage of D0 2 Tesla Solenoid Field Mapping Device.','Yamada R, Koriened J, Krider J. Lindenmeyer C, Miksa D, Miksa R.','','','','','','','$D0_PRI/3305/m_note-3305.pdf','',1998,1,22,2450836,2003,1,9,2452649),(3306,'Requirements on the SIFT chip imposed by the CFT Trigger','Manuel I. Martin','','Manuel I. Martin','TRIGGER','ANAL','PUBLIC','OTHER','$D0_PRI/3306/m_note-3306.pdf','',1997,8,25,2450686,2003,1,9,2452649),(3307,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3308,'D0 Optimized Search for First Generation Leptoquarks in the evjj Channel with Run I Data','P.Bhat, S.Hagopian J.Hobbs, D.Karmgard, B.Knuteson,\r\nG.Landsberg, H.Prosper, M.Strovink, G.Wang, G.Watts','PRL version has been published: PRL 80 (1998) 2051','Greg Landsberg','NEW','PHYS','PUBLIC','POSTSCRIPT','$D0_PRI/3308/M_D0NOTE_3308.PS','',1998,10,8,2451095,2003,1,9,2452649),(3309,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3310,'Generator uncertainty in the l+jets top mass measurement','Emanuela Barberis','','Emanuela Barberis','TOP','PHYS','','POSTSCRIPT','$D0_PRI/3310/m_gen_err.ps','',1998,9,28,2451085,2003,1,9,2452649),(3311,'Calculations of the Run 1b/c Backgrounds for Isolated Muons in the CF and EF','Mason M., Wimpenny S.J. - Univ. of Caifornia, Riverside','','S.J. Wimpenny','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3311/m_d0note_3311.ps','',1997,10,17,2450739,2003,1,9,2452649),(3312,'Benefits of a Silicon Vertex Trigger for ttbar Events','Frederic Stichelbaut','','F.Stichelbaut','TRIGGER','MEMO','D0_PRIVATE','','$D0_PRI/3312/M_TTBAR.PS','',1997,9,23,2450715,2003,1,9,2452649),(3313,'New Phenomena Comments on the D0 Runn II data Access','Bantly J., Boehnlein A., Hobbs J.','','','','','','','$D0_PRI/3313/m_note3313.ps','',1997,9,30,2450722,2003,1,9,2452649),(3314,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3315,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3316,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3317,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3318,'Studies of SVT Trigger using SUGRA four b Quark Signature','Norman, D.','','','','','','','$D0_PRI/3318/m_note-3318.pdf','',1997,9,30,2450722,2003,1,9,2452649),(3319,'Study of the Run II Luminosity Monitor Counter Design','Chyi-Chang Miao, Richard Partridge','','Chyi-Chang Miao','','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3319/m_lm_3319.ps','',1998,3,5,2450878,2003,1,9,2452649),(3320,'Luminosity Monitor Technical Design Report','Lo A., Miao C., Partridge R.','','','','','','','$D0_PRI/3320/m_note-3320.pdf','',1997,10,21,2450743,2005,4,25,2453486),(3321,'Towards a Run II Triffer for pp bar -> WH0 -> qq bar bb bar','J. D. Hobbs','','','','','','','$D0_PRI/3321/m_note-3321.pdf','',1998,2,17,2450862,2003,1,9,2452649),(3322,'Proceedings of the Xth IEEE Real Time Conference 97 (Beaune, France Sep. 22-26,1997)','Blazey, G.','','','','','','','','',1997,12,11,2450794,0,0,0,0),(3323,'Quark/Gluon Jet Differentiation in The D0 Detector','Kulik,B.','','','QCD','','','','$D0_PRI/3323/m_note3323.ps','',1997,10,21,2450743,2003,1,9,2452649),(3324,'Jet Reconstruction Eficiency','Casilum, Z., Hirosky, R.','','','QCD','','','','$D0_PRI/3324/m_recent_eff.ps','',1998,1,22,2450836,2003,1,9,2452649),(3325,'More Studies of the Zg -> eeg (mmg) Run 1B Data','Diehl H. T., Guglielmo G.','','','','','','','$D0_PRI/3325/m_d0note_3325.ps','',1997,10,21,2450743,2003,1,9,2452649),(3326,'Study of Possible Run II Streaming Scenarios Using a Run 1 Data Sample','Schellman H., Bertram I.','','','','','','','$D0_PRI/3326/m_exclusive_streaming_971009.ps','',1997,10,21,2450743,2003,1,9,2452649),(3327,'Search for Higgs in the ZH -> vvbb bar Channel in Run II: Trigger Study I','Hedin, D., Sirotenko V.','','','','','','','$D0_PRI/3327/M_NOTE_3327.PS','',1997,12,11,2450794,2003,1,10,2452650),(3328,'Relative Transverse Alignment of Endcap Calorimeters and Forward Drift Chambers using.','Kotwal, A.','','','','','','','$D0_PRI/3328/m_note-3328.pdf','',1997,10,21,2450743,2003,1,10,2452650),(3329,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3330,'Effect of the Transverse Momentum Distribuiton of W Bosons\r\non the W Boson Mass Measurement','I.Adam, E.Flattum, U.Heintz','','','WZ','','','','$D0_PRI/3330/m_note3330.ps','',1997,8,21,2450682,2003,1,10,2452650),(3331,'Calculations of the Run 1b/c Backgrounds for Non-Isolated Muons in the CF and EF','Mason, M., Wimpenny, S.J. - Univ. of California, Riverside','','S.J. Wimpenny','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3331/m_d0note_3331.ps','',1997,10,31,2450753,2003,1,10,2452650),(3332,'Muon ID Cuts for the CF and EF Regions with D0Fixed Run 1b/c Data','Wimpenny, S.J. - Univ. of California, Riverside','','S.J. Wimpenny','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3332/m_d0note_3332.ps','',1997,11,10,2450763,2000,7,19,2451745),(3333,'','','','Amos, N.','','','','','','',0,0,0,0,0,0,0,0),(3334,'The D0 Level 2 Trigger','Linnemann, J.','','','','','','','$D0_PRI/3334/m_note3334.ps','',1997,11,18,2450771,2002,3,1,2452335),(3335,'Results from the D0 Silicon Vertex Detector Beam Tests','Maria Teresa P. Roco','Proceedings VI Int\'l Workshop on Vertex Detectors,\r\nAug 31- Sept 5, 1997 in Rio de Janeiro, Brazil','Maria Teresa P. Roco','SILICON','DOC','PUBLIC','POSTSCRIPT','/d0chb/home/room1/roco/vtx97/m_d0-3335.ps','',1998,1,23,2450837,1998,8,23,2451049),(3336,'Searches for First Generation Leptoquark Pair Production in p bar p Collisions at D0','Klima, B.','Presented at EPS97, Aug. \'97, Jerusalem, Israel.','Klima, B.','NEW','PUB','PUBLIC','POSTSCRIPT','$D0_PRI/3336/m_note-3336.pdf','',1997,10,21,2450743,2003,1,10,2452650),(3337,'Top Quark Signal Distribution From a Neural Network Analysis of the All-Jets Channel','Berg, B.A., Riedler, J.','','','','','','','$D0_PRI/3337/m_note3337.ps','',1997,11,18,2450771,2002,3,1,2452335),(3338,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3339,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3340,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3341,'Relative Radial Position Calibration of Endcap Calorimeters and Forward Drift Chambers Using Z -> ee Events','Kotwal, A. V.','','','','','','','','',1997,11,18,2450771,0,0,0,0),(3342,'Specifications for F-disk Silicon Detectors ','Heintz, U.','This note documents the specifications and drawing that were provided to Micron Semiconductor Ltd for production of silicon detectors for the F-disks.','Maria Nunez','','','','','','',1998,4,21,2450925,0,0,0,0),(3343,'Measurement of the PTW Distribution from Run 1A data','Gerber, C.','','','','','','','$D0_PRI/3343/m_3343.ps','',1998,1,2,2450816,2003,1,10,2452650),(3344,'Top Physics at the Tevatron','Cochran, J.','','','','','','','$D0_PRI/3344/m_note-3344.pdf','',1997,11,18,2450771,2003,1,10,2452650),(3345,'Algorithms for Computing Significance','Knuteson, B.','','','','','','','$D0_PRI/3345/m_D0Note3345.ps','',1997,12,11,2450794,2003,1,10,2452650),(3346,'Run 1 Combined Fits For WWg Couplings','Yasuda, T.','','','','','','','$D0_PRI/3346/m_note-3346.pdf','',1997,12,11,2450794,2003,1,10,2452650),(3347,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3348,'Light Collection from Scintillation Counters Using WLS Fibers and WLS Bars.','Evdokomov, V. (D0 Muon Group)','','','','','','','$D0_PRI/3348/m_note-3348.pdf','',1997,11,18,2450771,2003,1,12,2452652),(3349,'Fast Scintillation Counters with WLS Technology','Denisof, D.','','','','','','','$D0_PRI/3349/m_note-3349.pdf','',1997,11,18,2450771,2003,1,12,2452652),(3350,'The 630 GeV Isolated Direct Photon Cross Section','Grinstein, S., Piegaia, R.','','','','','','','$D0_PRI/3350/m_d0note_3350.ps','',1998,2,17,2450862,2003,1,12,2452652),(3351,'Von Ruden Review of Run II Software','Merritt, W.','','','','','','','','',1997,12,11,2450794,0,0,0,0),(3352,'Studies of the Dimuon Charge Asymmetry With the D0 Detector','Hoeneisen, B.','','','','','','','$D0_PRI/3352/m_note-3352A.pdf','',1997,12,11,2450794,2003,1,12,2452652),(3353,'Double-sided Silicon Prototype Detectors: Summary of Test Results','Gounder, K., Ellison, J.','','','','','','','$D0_PRI/3353/m_note-3353.pdf','',1998,2,17,2450862,2003,1,12,2452652),(3354,'Triggers for B Physics Studies in Run II','Frederic Stichelbaut, Andrzej Zieminski and Meenakshi Narain','','','TRIGGER','MEMO','D0_PRIVATE','','$D0_PRI/3354/M_BBBAR.PS','',1997,12,11,2450794,2003,1,12,2452652),(3355,'Central Muon Upgrade Cosmic Cap Side Wall Gap Counters','Diehl, T.','','','','','','','$D0_PRI/3355/m_note-3355.pdf','',1997,12,11,2450794,2003,1,12,2452652),(3356,'Run 1B W -> mn Cross Section with Revised Cuts','Quintas, P.','','','','','','','$D0_PRI/3356/m_note-3356.pdf','',1998,1,22,2450836,2003,1,12,2452652),(3357,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3358,'Examine for Run II: Requirements Indiana Workshop July 1997','Tentindo Repond, S.','','','','','','','$D0_PRI/3358/m_note-3358.pdf','',1997,12,11,2450794,2003,1,12,2452652),(3359,'Ntuple File for the D0 Test Beam','Tentindo Repond, S.','','','','','','','$D0_PRI/3359/m_note-3359.pdf','',1997,12,11,2450794,2003,1,12,2452652),(3360,'Examine Framework','Tentindo Repond, S.','','','','','','','$D0_PRI/3360/m_note-3360.pdf','',1997,12,11,2450794,2003,1,12,2452652),(3361,'D0 Test Beam Monitoring (and Analysis)','Tentindo Repond, S.','','','','','','','$D0_PRI/3361/m_note-3361.pdf','',1997,12,11,2450794,2003,1,12,2452652),(3362,'Specifications for 90 Degrees Silicon Detectors ','Heintz, U. ','','Maria Nunez','','','','','$D0_PRI/3362/m_note-3362.pdf','',1998,4,21,2450925,2003,1,12,2452652),(3363,'Road Definition for Silicon Track Trigger','Heintz, U.','','','','','','','$D0_PRI/3363/m_note3363.ps','',1997,12,11,2450794,2003,1,12,2452652),(3364,'Jet Sample Selection At sqrt = 630 GeV','Goussiou, A.','','','QCD','','','','$D0_PRI/3364/m_note-3364.pdf','',1997,12,11,2450794,2003,1,12,2452652),(3365,'Design of the Central Muon System','Diehl, T. et all','','','','','','','$D0_PRI/3365/m_note-3365.pdf','',1997,12,11,2450794,2003,1,12,2452652),(3366,'Technical Design Report for the D0 Forward Muon Tracking Detector Based on Mini-drift Tubes ','G. Alexeev et.al.','Technical Design Report for the D0 Muon Run II Forward Tracker','Dmitri Denisov','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3366/m_3366.pdf','',1997,12,1,2450784,2004,5,4,2453130),(3367,'An Algorithm for a Silicon Track Trigger','P. Gutierrez, E. Smith','','','TRIGGER','DOC','','','$D0_PRI/3367/m_stt_algorithm.ps','',1997,12,10,2450793,1999,6,13,2451343),(3368,'Measurement of the Like-Sign Dimuon Charge Asymmetry in pp bar Collisions at sqrt s= 1.8 TeV','Hoeneisen, B.','internal document, not published','Bruce Hoeneisen','B_PHYSICS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3368/m_asymmetry_prd_style_v7.ps','',1997,12,11,2450794,2003,1,12,2452652),(3369,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3370,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3371,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3372,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3373,'Studies of Event/Jet Selection Criteria and Their Efficiencies with D0 Run 1B Data.','Levan Babukhadia','','Levan Babukhadia','QCD','PHYS','','','$D0_PRI/3373/m_d0note3373.ps','',1997,12,11,2450794,2003,1,12,2452652),(3374,'Testing Charged Pion and Kaon Production Rates in ISAJET, and their Decays to Muons inside D0','Wagner P. Carvalho , Arthur K. A. Maciel','','W. Carvalho','B_PHYSICS','','','POSTSCRIPT','$D0_PRI/3374/m_testing_piktomu_mc.ps','',1998,3,24,2450897,1998,3,6,2450879),(3375,'Event Monitoring - Framework for D0 Run II','Tentindo-Repond, S.','','','','','','','$D0_PRI/3375/m_note-3375.pdf','',1998,1,22,2450836,2003,1,12,2452652),(3376,'WW/WZ to Mu-nu-JJ Analysis in Run 1B','Gounder, Ellison, Diehl','','','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3376/m_wz.ps','',1998,8,25,2451051,1999,7,15,2451375),(3377,'Notes on Using Python/Tkinter','Guglielmo, G.','','','','','','','$D0_PRI/3377/m_python_guide.ps','',1998,1,22,2450836,2003,1,12,2452652),(3378,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3379,'Noise studies with silicon microstrip detectors','Georg Steinbrueck','','Georg Steinbrueck','SILICON','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3379/m_silicon_noise_studies.ps','',1998,1,20,2450834,1998,3,16,2450889),(3380,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3381,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3382,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3383,'Optimizing Statistical Significance for Small Signals','Partridge, R.','','','','','','','','',1998,1,28,2450842,0,0,0,0),(3384,'','','','','','','','','$D0_PRI/3384/m_mujets_d0n.ps','',0,0,0,0,1999,6,8,2451338),(3385,'Transparencies from Fiber Tracking General Group Meetings: 6/97-12/31/97','Bross, A.','','','','','','','','',1998,2,17,2450862,0,0,0,0),(3386,'Muon Correction Using a 1/P Distribution','Baringer, P., Hebert, C.','','','','','','','$D0_PRI/3386/m_note3386.ps','',1998,1,28,2450842,2002,3,1,2452335),(3387,'Brief Comparisons of W data and DYRAD Regarding the W + 1Jet Cross Section','D. P. Casey','','','QCD','','','','','',1998,2,17,2450862,0,0,0,0),(3388,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3389,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3390,'Polishing Optical Fibers for the D\\O\\ ICD in Run II','Elizabeth Gallas and Jia Li ','FERMILAB-TM-2062','gallas','CALORIMETER','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3390/m_fiber_polish_3390.ps','',1998,11,17,2451135,1998,11,17,2451135),(3391,'Staggering for FAMUS','Yatsunenko, Y.','','Nunez, M.','','','','','$D0_PRI/3391/m_stagnote.ps','',1998,4,22,2450926,1998,4,22,2450926),(3392,'QCD Background in the W -> ev Sample at Low pWt in Endcap Calorimeters','A. V. Kotwal','','','','','','','','',1998,2,17,2450862,0,0,0,0),(3393,'Preamp Species Summary','Chris Hays ','','Chris Hays','CALORIMETER','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3393/m_d0note_detcap_3393.ps','',1998,6,29,2450994,2000,7,31,2451757),(3394,'Diffraction and PDF\'S','Whitmore, J.','','','','','','','','',1998,2,17,2450862,0,0,0,0),(3395,'Measurement of the Run 1B $Z \\rightarrow ee$\r\nElectron Trigger Efficiency for the Endcap Calorimeters','J. Andrew Green, Ashutosh Kotwal','Used for EC W-mass measurement','J. Andrew Green','WZ','ANAL','','POSTSCRIPT','$D0_PRI/3395/m_ec_elec_eff.ps','',1999,10,25,2451477,1999,10,14,2451466),(3396,'Mass Analysis and Parameter Estimation with PDE','B. Knuteson, H. Miettinen, L. Holmstrom','','','NEW','PHYS','PUBLIC','POSTSCRIPT','$D0_PRI/3396/m_alphaPDE.ps','',1997,9,1,2450693,1998,9,8,2451065),(3397,'Search for WZ production in the tri-electron + missing energy decay channel','Gartung P.','','','WZ','ANAL','','POSTSCRIPT','$D0_PRI/3397/m_note3397.ps','',1998,3,6,2450879,1998,5,6,2450940),(3398,'Results from a Beam Test of the Forward Preshower Detector for the D0 Upgrade','Bhattacharjee, M., Lucotte, A.','','','','','','','$D0_PRI/3398/m_note_3398.ps','',1998,2,17,2450862,1998,8,18,2451044),(3399,'A measurement of the Cross Section Ratio of the W and Z Electronic Decays and the Total Width of the W with the DZero Detector (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Tarazi, J. N.','','','','','','','','',1998,2,17,2450862,0,0,0,0),(3400,'Measurement of the Top Quark Mass (Thesis) This is a controlled note, please see the secretary at DAB - 5th floor to look at the note.','Hsieh, T. C. F.','','','','','','','','',1998,2,17,2450862,0,0,0,0),(3401,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3402,'Technical Design Report for the Level 2 Global Processor','Daniel Edmunds, Steven Gross, Phillipe Laurens, James Linnemann, Roger Moore','','','TRIGGER','','D0_PRIVATE','OTHER','$D0_PRI/3402/m_3402_L2global_tdr.pdf','',1998,2,25,2450870,2004,4,9,2453105),(3403,'','','','','','','','','','',0,0,0,0,0,0,0,0),(3404,'Underlying Event Contribution to Electron Energy and Recoil Correction in Endcap Calorimeters','Kotwal, A.V.','','','','','','','','',1998,2,17,2450862,0,0,0,0),(3406,'D0 Muon Fanout Card (MFC)','Kozlovsky, M.','','Kozlovsky','MUON','','','','$D0_PRI/3406/m_D03406.pdf','',1998,3,2,2450875,1998,4,15,2450919),(3405,'Analysis of SMT Beam Tests Data','Maria Teresa P. Roco','','Roco, Maria','SILICON','DOC','','POSTSCRIPT','$D0_PRI/3405/m_d0-3405.ps','',1998,2,1,2450846,1998,3,1,2450874),(3407,'Standard Jet Cuts and their Efficiencies for Run 1B D0 Collider Data','Babukhadia, Blazey, Elvira, Nang, Shupe','','Nang, F.','QCD','','','','$D0_PRI/3407/m_d0note3407.ps','',1998,3,2,2450875,1998,3,27,2450900),(3408,'Hot Cells and Jets at D0 (AIDA Cell Restoration) ','Babukhadia L, Blazey J, Elvira D, Nang F, Shupe M.','','Levan Babukhadia','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3408/m_d0note3408.ps','',1998,3,2,2450875,1998,4,23,2450927),(3409,'','','','Narain, Meena','','','','','','',1998,3,2,2450875,NULL,NULL,NULL,NULL),(3410,'The D0 Detector at TeV33','','','Montgomery, Hugh','','','','','','',1998,3,2,2450875,NULL,NULL,NULL,NULL),(3411,'Coloron Limits using the D0 Dijet Angular Distribution','Iain Bertram','','Iain Bertram','QCD','ANAL','','POSTSCRIPT','$D0_PRI/3411/m_dijet_angular_vers_1_0_d0_note_3411.ps','',1998,3,2,2450875,1998,3,12,2450885),(3412,'The Dijet Mass Spectrum at D0','Iain A. Bertram','','Iain A. Bertram','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3412/m_dijet_mass_vers_5_2.ps','',1998,3,3,2450876,1998,4,27,2450931),(3413,'Multijet Cross Section Ratio','Elizabeth Gallas, Ki Suk Hahn','','gallas','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3413/M_NOTE3413.PS','',1998,3,5,2450878,1998,9,16,2451073),(3414,'Single Jet Resolutions at D0 for Run 1','Iain A. Bertram, Mrinmoy Bhattacharjee, Jerry Blazey, Su Yong Choi, V. Daniel Elvira, Anna Goussiou, Robert Hirosky, John Krane, Jill Perkins, and Robert Snihur','','Iain A. Bertram','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3414/m_d0_note_3414.ps','',1998,3,11,2450884,1998,7,1,2450996),(3415,'Silicon Track Trigger Performance Studies','Terry Heuring, Dan Karmgard, Horst Wahl','','Dan Karmgard','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3415/m_STTD0Note.ps','',1998,3,11,2450884,1998,3,11,2450884),(3416,'D0 Optimized Search for First Generation Vector Leptoquarks','E. Boos, A. Belyaev, R. Gilmartin, S. Hagopian, D. Karmgard, G. Landsberg, A. Solomin, G. Wang','','Dan Karmgard','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3416/m_VLQD0Note.ps','',1998,3,11,2450884,1998,3,11,2450884),(3417,'D0 Shielding Optimization: Simulations and Measurements','V.Sirotenko, D.Denisov, H.T.Diehl','','Vladimir Sirotenko','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3417/m_note_3417.ps','',1998,3,17,2450890,1998,3,17,2450890),(3418,'Measurement of the Longitudinal Momentum Distribution of pp bar -> Z -> e+e- Events with the D0 Detector (Thesis)','Magana-Mendoza, L. ','This is a controlled note, please see the secretary at DAB 5th floor to look at the note.','Maria Nunez','','','','','','',1998,3,18,2450891,NULL,NULL,NULL,NULL),(3419,'Add-on Detector for GMSB Motivated Delayed Decays','Sudhindra Mani ','','Sudhindra Mani','NEW','MEMO','D0_PRIVATE','POSTSCRIPT','','',1998,3,30,2450903,NULL,NULL,NULL,NULL),(3420,'Organization of CFT Input to Silicon Track Trigger','Ulrich Heintz','','Ulrich Heintz','TRIGGER','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3420/M_D0NOTE_3420.PS','',1998,4,8,2450912,1998,4,8,2450912),(3421,'Cluster Centroid Algorithm for STT','Ulrich Heintz','','Ulrich Heintz','TRIGGER','','D0_PRIVATE','POSTSCRIPT','','',1998,4,8,2450912,NULL,NULL,NULL,NULL),(3422,'D0 Run II Coding for Professors','H. Schellman','','H. Schellman','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3422/m_d0runII_coding_for_professors.ps','',1998,4,9,2450913,1998,4,9,2450913),(3423,'Calculation of Uncertainties in the Ratio of Jet Cross Sections at 630 and 1800 GeV','John Krane','','John Krane','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3423/m_ratio_uncertainties_3423.ps','',1998,4,9,2450913,1998,4,9,2450913),(3424,'PDT Electronics Tests Using Cosmic Rays','B.Baldin, H.Haggerty, S.Hansen','New PDT Electronics designed for run II D0 muon system has been tested. The results of prototype PDT readout system debugging and testing with internal test pulsers and cosmic rays are described.','Boris Baldin','NEW','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3424/m_D03424.pdf','',1998,4,10,2450914,1998,4,14,2450918),(3425,'The Forward Proton Detector at D0','Gilvan Alves','Talk presented at Lishep98 Workshop on Diffractive Physics','Gilvan Alves','QCD','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3425/m_FPD98.ps','',1998,4,10,2450914,1998,4,10,2450914),(3426,'Dataflow requirements for Silicon Track Trigger','Meenakshi Narain','','Meenakshi Narain','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,4,13,2450917,NULL,NULL,NULL,NULL),(3427,'Silicon Detector Studies using the Laser Test Station at the SiDet Facility ','Maria Teresa P. Roco','','Maria Roco','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3427/m_d0-3427.ps','',1998,4,21,2450925,1998,4,21,2450925),(3428,'H. Disk Meeting','Lipton, R. (collected by)','Transparencies of the H Disk Meeting (a copy of this note can be obtained from the file cabinets at T-151)','Nunez, M.','','','D0_PRIVATE','','','',1998,4,22,2450926,NULL,NULL,NULL,NULL),(3429,'QSIM Studies Performed at the NP Workshop in Davis, CA, March 1998','Harry Melanson','','Harry Melanson','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3429/m_d0note_3429.ps','',1998,4,22,2450926,1998,4,22,2450926),(3430,'Tuning of the b-Quark Fragmentation in ISAJET','Marc M. Baarmand and Frederic Stichelbaut','','F. Stichelbaut','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3430/M_BFRAG.PS','',1998,4,25,2450929,1998,4,25,2450929),(3431,'L1 TRigger for Slow Moving Particles','Yu.Gershtein','','Gershtein','TRIGGER','','D0_PRIVATE','','$D0_PRI/3431/m_note.ps','',1998,4,27,2450931,1998,4,27,2450931),(3432,'Simulation of Level 1 Trigger rates for B0 -> h+ h-','Yu.Gershtein','','Yu.Gershtein','TRIGGER','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3432/m_note2.ps','',1998,4,29,2450933,1998,4,29,2450933),(3433,'Installation/Alignment, Calibration and Commissioning of the D\\O\\ ICD for Run II','E. Gallas','','Elizabeth Gallas','CALORIMETER','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3433/M_D0NOTE_3433_COMMIS.PS','',1998,4,30,2450934,1999,2,11,2451221),(3434,'ICD Tile Module Assembly for the D0 ICD in Run II ','E. Gallas, A. White','','gallas','CALORIMETER','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3434/m_d0note_3434.ps','',1998,4,30,2450934,1999,1,20,2451199),(3435,'Serial Media Working Group First RunII Report','Jon Bakken, Keith Chadwick, Mike Diesburg, Don Holmgren, Stephan Lammel, Gene Oleynik, Don Petravick, Dean Schamberger, Dane Skow, Rick Thies','','Michael Diesburg','DATA_MANAGE','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,5,1,2450935,NULL,NULL,NULL,NULL),(3436,'Combined Limits on First Generation Leptoquarks from the CDF and D0 Experiments','Carla Grosso-Pilcher (University of Chicago) and Greg Landsberg (Fermilab)','Also released as a CDF Note','Greg Landsberg','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3436/m_D0Note_3436.ps','',1998,5,4,2450938,1998,5,11,2450945),(3437,'A Combination of Preliminary Measurements of Triple Gauge Boson Coupling Parameters Measured by the LEP and D0 Experiments','ALEPH, DELPHI, L3, OPAL and D0 TGC Combination Group','','John Ellison','WZ','PHYS','PUBLIC','POSTSCRIPT','$D0_PRI/3437/m_d0lep_tgc_d0note.ps','',1998,5,4,2450938,1998,5,26,2450960),(3438,'','','','Ellison','WZ','PUB','D0_PRIVATE','','','',1998,5,4,2450938,NULL,NULL,NULL,NULL),(3439,'Transparencies from UIC Level2 Trigger Workshop, April 24-25, 1998','UIC Level2 Trigger Workshop participants','See Maria Nunez for copies.','Rob Martin','TRIGGER','MEMO','D0_PRIVATE','OTHER','','',1998,5,5,2450939,1998,5,5,2450939),(3440,'Status of Single Top Analysis for e+jets/mu','A.Belyaev, E.Boos, L.Dudko, P.Ermolov, A.Heinson, N.Sotnikova','','Natalia Sotnikova','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',1998,5,8,2450942,NULL,NULL,NULL,NULL),(3441,'Status of Single Top Analysis for e+jets/mu','A.Belyaev, E.Boos, L.Dudko, P.Ermolov, A.Heinson, N.Sotnikova','We present the analysis and the preliminary results from a search for single top quark production in the electron+jets/muon channel','Natalia Sotnikova','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3441/m_ejet_singletop.ps','',1998,5,8,2450942,1998,5,8,2450942),(3442,'An Introduction to ROOT and Its Use for Analysis','Andrew Haas','','Andrew Haas','','','D0_PRIVATE','OTHER','','',1998,5,8,2450942,NULL,NULL,NULL,NULL),(3443,'Evaluation of F-disk Silicon Microstrip Detectors','Ulrich Heintz','','Ulrich Heintz','SILICON','DOC','D0_PRIVATE','','','',1998,5,14,2450948,NULL,NULL,NULL,NULL),(3444,'Update of the Silicon Track Trigger Studies for ttbar Events','Frederic Stichelbaut','','F. Stichelbaut','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3444/M_UPDATE.PS','',1998,5,15,2450949,1998,5,23,2450957),(3445,'Technical Design Report of the Forward Preshower Detector for the D0 Upgrade','A. Gordeev, J. Kotcher, M. Xiong Liu, P. Yamin, M. Bhattacharjee, D. Chakraborty, P. Grannis, A. Lucotte, A. Patwa, M. Rijssenbeek, D. Shpakov, J. Steffens, A. Talalaevskii, and M. Chung','','Abid Patwa (c/o: Jon Kotcher)','PRESHOWER','DOC','PUBLIC','POSTSCRIPT','$D0_PUB/3445/m_tdr.ps','',1998,5,18,2450952,1998,5,19,2450953),(3446,'MEASUREMENT OF tt PRODUCTION CROSS SECTION AND SEARCH FOR NEW PHYSICS BEYOND THE STANDARD MODEL','SAILESH CHOPRA','(Thesis). This is a controlled note, please see the secretary on the 5th floor at DAB to look at the note.','Sailesh Chopra','PRESHOWER','','D0_PRIVATE','','','',1998,5,19,2450953,NULL,NULL,NULL,NULL),(3447,'Routing of Clear Fibers and Architecture of the FE Crates','Manuel I. Martin','An study of some requirements for the layout of the clear fibers connecting the SF and the Cassettes. Some solutions are shown.','Manuel I. Martin','FIBER_TRACKER','DOC','D0_PRIVATE','OTHER','','',1998,5,20,2450954,NULL,NULL,NULL,NULL),(3448,'Irradiated Double-Sided Silicon Detector Measurements','Maria Teresa P. Roco ','','Maria Roco','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3448/m_d0-3448.ps','',1998,5,21,2450955,1998,6,18,2450983),(3449,'','','','Norman A. Graf','ALGORITHMS','','D0_PRIVATE','','','',1998,5,24,2450958,NULL,NULL,NULL,NULL),(3450,'MEASUREMENTS OF THE W BOSON MASS AND TRILINEAR GAUGE BOSON COUPLINGS AT THE TEVATRON','John Ellison','To be published in Proceedings of the XXXIIId Rencontres de Moriond, Electroweak Interactions and Unified Theories, Les Arcs, Savoie, France, March 14-21 1998','John Ellison','WZ','PUB','PUBLIC','POSTSCRIPT','$D0_PRI/3450/m_moriond_je.ps','',1998,6,1,2450966,1998,6,1,2450966),(3451,'Acceptance of D0 Silicon Microstrip Tracker','Ulrich Heintz','','Ulrich Heintz','SILICON','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3451/m_3451.ps','',1998,6,2,2450967,1998,6,12,2450977),(3452,'Search for the Decay of the Top Quark into a Charm or Up Quark and a Photon','Denise Sawicki','','T. Ferbel','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3452/m_d0note_denise.ps','',1998,6,4,2450969,1998,7,23,2451018),(3453,'Laser Scan of a Single-Sided Silicon Detector','Maria Teresa P. Roco','','Maria Teresa P. Roco','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3453/m_d0-3453.ps','',1998,6,5,2450970,1998,6,23,2450988),(3454,'The relation between ET Asymmetry, Jet Resolutions and Vertex Resolution','Heidi Schellman','','Heidi Schellman','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3454/m_vertex_v2.ps','',1998,6,8,2450973,1998,7,13,2451008),(3455,'F-disk Review (transparency copies)','U. Heintz','','Ulrich Heintz','SILICON','DOC','PUBLIC','','$D0_PRI/3455/m_3455.ps','',1998,6,10,2450975,1998,6,12,2450977),(3456,'Investigation of Trilinear Vector Boson Couplings Through W Boson Pair Production in Dilepton Decay (Thesis). This is a controlled note, please see the secretary at DAB 5th floor to look at the note. ','Bloom, P.','This is a controlled note, please see the secretary at DAB 5th floor to look at the note.','Maria Nunez','','','D0_PRIVATE','','','',1998,6,11,2450976,NULL,NULL,NULL,NULL),(3457,'Direct Photon Plus One and Two Jet(s) Production in Proton-Antiproton Collisions at a Center of Mass Energy of 1.8 TEV (Thesis). This is a controlled note, please see the secretary at DAB 5th floor to look at the note.','Shaffer, C. ','','Maria Nunez','','','D0_PRIVATE','','','',1998,6,11,2450976,NULL,NULL,NULL,NULL),(3458,'Direct Photon Plus One and Two Jet(s) Production in Proton-Antiproton Collisions at a Center of Mass Energy of 1.8 TEV (Thesis). This is a controlled note, please see the secretary at DAB 5th floor to look at the note.','Shaffer, C. ','','Maria Nunez','QCD','','D0_PRIVATE','','','',1998,6,11,2450976,NULL,NULL,NULL,NULL),(3459,'Search for First Generation Scalar Leptoquarks in Proton-Antiproton Collisions at a Center of Mass Energy of 1.8 TeV with the D0 Dectector (Thesis). This is a controlled note, please see the secretary at DAB 5th floor to look at the note. ','Wang, G.','','Maria Nunez','','','D0_PRIVATE','','','',1998,6,11,2450976,NULL,NULL,NULL,NULL),(3460,'Proposal for the Functionality of a Parameterized Monte Carlo Simulator for D0 in Run II','Sarah Eno, Steve Gouveia, Nick Hadley, Boaz Klima, Harry Melanson, Elemer Nagy','','Sarah Eno','MC','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,6,11,2450976,NULL,NULL,NULL,NULL),(3461,'Transparencies of May 14 Forward Muon Trigger System Review','D. Denisov et.al.','','Dmitri Denisov','MUON','DOC','D0_PRIVATE','OTHER','','',1998,6,11,2450976,NULL,NULL,NULL,NULL),(3462,'Transparencies of June 5 1998 Forward Muon Tracking System TDR Review','D. Denisov et.al.','','Dmitri Denisov','MUON','DOC','D0_PRIVATE','OTHER','','',1998,6,11,2450976,NULL,NULL,NULL,NULL),(3463,'Flows and Controls in the Seasons of SAM','Mike Diesburg, Lee Lueking, Kurt Ruthmansdorfer, Heidi Schellman, Vicky White','Description of a spreadsheet studying the data flows\r\nfor various periods of Run II data access','lueking','DATA_MANAGE','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,6,15,2450980,NULL,NULL,NULL,NULL),(3464,'System Software and Hardware Architectures for the \r\nSequential Access Model','Mike Diesburg, Dorota Genser, Krzysztof Genser, Lee Lueking,\r\nFrank Nagy, Don Petravick, Ruth Pordes, Kurt Ruthmansdorfer,\r\nHeidi Schellman, Matt Vranicar, Vicky White\r\n','','lueking','DATA_MANAGE','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,6,15,2450980,NULL,NULL,NULL,NULL),(3465,'Requirements for the Sequential Access Model Data Access System','Jon Bakken, Mike Diesburg, Dorota Genser, Lee Lueking, Frank Nagy, Don Petravick, Ruth Pordes, Heidi Schellman, Marilyn Schweitzer, Igor Terekhov, Matt Vranicar, Vicky White','','Vicky White','DATA_MANAGE','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,6,15,2450980,NULL,NULL,NULL,NULL),(3466,'Glossary of Terms for the Sequential Access Model Data Access System','SAM working group','','Vicky White','DATA_MANAGE','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,6,15,2450980,NULL,NULL,NULL,NULL),(3467,'Search for SUGRA in the Single Electron Channel','S. Blessing and A. Boehnlein','','Susan Blessing','NEW','','D0_PRIVATE','POSTSCRIPT','','',1998,6,17,2450982,NULL,NULL,NULL,NULL),(3468,'The Online Calibration Framework','Iain A. Bertram','','Iain A. Bertram','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3468/m_Online_Framework_ver_1_0.ps','',1998,6,17,2450982,1998,6,17,2450982),(3469,'Summary of the Davis New Phenomena Workshop\r\n','Amber Boehnlein, Dhiman Chakraborty, Kaushik De, Sarah Eno,John Hobbs, Greg Landsberg, Harry Melanson, Meenakshi Narain, Doug Norman, Evgeny Popkov, Jianming Qian, and Marek Zielinski','','Amber Boehnlein','NEW','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3469/m_davis.ps','',1998,6,18,2450983,1998,7,20,2451015),(3470,'','kotwal','','olivier','WZ','','D0_PRIVATE','POSTSCRIPT','','',1998,6,18,2450983,NULL,NULL,NULL,NULL),(3471,'','kotwal','','olivier','WZ','','D0_PRIVATE','POSTSCRIPT','','',1998,6,18,2450983,NULL,NULL,NULL,NULL),(3472,'Measurement of Helicity Parameters in Top Quark Decay','Nelson, C. A., Cohen, A. M.','','Nunez, Maria','NEW','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,6,19,2450984,NULL,NULL,NULL,NULL),(3473,'Integration Testing of LED Calibration,\r\nPMT\'s and Electronics for the ICD in D\\O\'s Run II','Elizabeth Gallas, Lee Sawyer and others','','Elizabeth Gallas','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,5,3,2451302,NULL,NULL,NULL,NULL),(3474,'New New-Phenomena Results from Dzero','Jianming Qian for the Dzero Collaboration','Presented at the 1998 Rencontres de Physique de la Vallee \r\nd\'Aoste on Results and Perspectives in Particle Physics, \r\nLa Thuile, Italy, March 1-7, 1998','Jianming Qian','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',1998,6,26,2450991,NULL,NULL,NULL,NULL),(3475,'Offline calibration for the silicon tracking','Emanuela Barberis','','Emanuela Barberis','SILICON','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3475/m_calib_notes.ps','',1998,7,1,2450996,1998,7,1,2450996),(3476,'A Recipe for the Construction of Confidence Limits','I. Bertram, G.Landsberg, J. Linnemann, R.Partridge,\r\nM. Paterno, H.B. Prosper\r\n','','Iain A Bertram/Tom Ferbel','NEW','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3476/m_3476.ps','',1998,7,1,2450996,1999,9,8,2451430),(3477,'(Thesis) This is a controlled note, please see the secretary at DAB 5th floor to look at the note.','Jill Perkins','','Jill Perkins','','','D0_PRIVATE','','','',1998,7,9,2451004,NULL,NULL,NULL,NULL),(3478,'Data Clustering and Luminosity Accounting for Run II','H. Schellman','','Heidi Schellman','DATA_MANAGE','ANAL','D0_PRIVATE','POSTSCRIPT','','',1998,7,12,2451007,NULL,NULL,NULL,NULL),(3479,'D Zero Preliminary Report on the New VBD Working With Two VRBs.','R. Angstadt','Testing report of the New VBD and VRB\'s with initialization examples, VME-Metro traces and timing.','R. Angstadt','DAQ_ELECTRONICS','','D0_PRIVATE','OTHER','','',1998,7,15,2451010,NULL,NULL,NULL,NULL),(3480,'D0 Run II Coding For Professors - Part II - Releasing your\r\ncode upon the collaboration.','H. Schellman and A. Jonckheere','','H. Schellman','SOFTWARE_INFRA','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3480/m_runII_cvs.ps','',1998,7,16,2451011,1998,7,16,2451011),(3481,'Magnetic Field Classes for D0 Offline Reconstruction','H. Schellman, Z. Yu (Northwestern University)\r\nL. Chevalier, M. Virchaux (Saclay)','','H. Schellman','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3481/m_mag_field_v1.ps','',1998,7,16,2451011,1998,7,17,2451012),(3482,'\"Silicon Microstrip Detector Design and Fabrication\" (Transparencies)','John Ellison','Copy of transparencies from Silicon Journal Club Talk,\r\nJuly 17, 1998. (Available from file cabinets at T-151)','John Ellison','SILICON','MEMO','PUBLIC','POSTSCRIPT','','',1998,7,17,2451012,NULL,NULL,NULL,NULL),(3483,'Search for New Particles Decaying to Two-Jets with the D? Detector ','Iain A. Bertram','','Iain Bertram','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3483/m_d0_note_3483.ps','',1998,7,24,2451019,1998,9,23,2451080),(3484,'Using Angular Information to Improve the Z\' -> jj Cross Section Limit','D. Whiteson','','Daniel Whiteson','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3484/m_zprimes.ps','',1998,7,28,2451023,1998,7,31,2451026),(3485,'Small Angle J/Psi Production in ppbar Collisions at\r\nsqrt(s)=1.8TeV','B. Abbott et. al. (D0 collaboration)','Submitted to PRL, hep-ex/9807029, Fermilab-Pub-98/237-E','Dmitri Denisov','B_PHYSICS','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3485/m_d0_note_3485.ps','',1998,7,29,2451024,1998,7,29,2451024),(3486,'A Comparison of Cone and KT Algorithms for the Reconstruction of a Higgs Boson at 110 GeV','Aaron Pierce','','Aaron Pierce','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3486/m_jets_higgs_width.ps','',1998,7,30,2451025,1998,7,30,2451025),(3487,'W Boson Physics at the Fermilab Tevatron Collider','Ron Madaras','','Ron Madaras','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3487/m_pic98_talk.ps','',1998,7,30,2451025,1998,8,20,2451046),(3488,'Implications of a SMT/Beam Misalignment on the STTpp','Terry Heuring','','Terry Heuring','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3488/m_beamtilt.ps','',1998,8,10,2451036,1998,8,14,2451040),(3489,'Single Top and the Silicon Track Trigger','Terry Heuring','','Terry Heuring','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3489/m_single_top.ps','',1998,8,10,2451036,1998,8,10,2451036),(3490,'Simulation study of the Run II Luminosity Monitor Multipule Interaction Trigger Flags','Chyi-Chang Miao, Richard Partridge','','Chyi-Chang Miao','TRIGGER','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3490/m_l0sim.ps','',1998,8,11,2451037,1998,12,11,2451159),(3491,'','','','belyaev','TOP','','D0_PRIVATE','','','',1998,8,11,2451037,NULL,NULL,NULL,NULL),(3492,'Timing Studies of the Silicon Track Trigger Preprocessor','Terry Heuring','','Terry Heuring','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3492/m_queuingBW.ps','',1998,8,14,2451040,1998,8,14,2451040),(3493,'Definition of a Level 1 trigger using the Forward PreShower \r\ndetector for the d0 upgrade ','Arnaud Lucotte and Mrinmoy Bhattacharjee','','Arnaud Lucotte','TRIGGER','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3493/m_note_3493.ps','',1998,8,18,2451044,1998,8,18,2451044),(3494,'Control Software for Measuring Properties of Ribbons of\r\nScintillating Fibers ','Florencia Canelli and Juan Cruz Estrada','','Juan Cruz Estrada','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3494/m_3494.ps','',1998,8,19,2451045,1998,8,19,2451045),(3495,'Search for Squarks and Gluinos in Single-Photon Events with Jets and large Missing Transverse Energy in ppbar Collisions at sqrt(s)=1.8 TeV','B. Abbott et al, The Dzero Collaboration','Fermilab-Pub-98/243-E, hep-ex/9808010','Jianming Qian','NEW','PUB','D0_PRIVATE','POSTSCRIPT','','',1998,8,23,2451049,NULL,NULL,NULL,NULL),(3496,'Measurement of the Top Quark Mass in the Dilepton Channel',' B. Abbott et al. (D0 Collaboration)','Submitted to Physical review D\r\nhep-ex/9808029 and FERMILAB-Pub-98-261-E','Meenakshi Narain','TOP','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3496/m_dilepton_prd.ps','',1998,8,26,2451052,1998,8,26,2451052),(3497,'Muon Onine and Offline Constant Specifications for Run 2','O. Bardon, D. Wood','','Darien Wood','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3497/m_cal_spec.ps','',1998,8,27,2451053,1998,9,4,2451061),(3498,'ICR Jet Correction to the Jet Multiplicity Ratio $R_32$ ','Elizabeth Gallas, Ki Suk Hahn, Jerry Blazey','','Elizabeth Gallas','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3498/m_MRATIO_ICR_CORR.ps','',1998,9,1,2451058,1998,10,18,2451105),(3499,'Update to the D0GStar Geometry Description of the Central \r\nMuon Detector','B.S. Acharya\r\nH.T. Diehl','','Tom Diehl','MC','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3499/M_GEANTTZ.PS','',1998,9,1,2451058,2001,11,17,2452231),(3500,'Forces on Photomultiplier Shields in Magnetic Field of the D0 Detector','V.Korablev','','Korablev','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3500/m_tube.ps','',1998,9,8,2451065,1998,9,8,2451065),(3501,' Analysis of Optical CMM Measurements of \r\n3 Chip Ladders of the D0 Silicon Detector','H.S.Mao and W.Cooper','D0 Note','H.S. Mao and W.Cooper','SILICON','','D0_PRIVATE','TEXT','$D0_PRI/3501/m_ladder.note.ps','',1998,9,9,2451066,2002,1,10,2452285),(3502,'The D0 Detector Upgrade and Jet Energy Scale','Maria Teresa P. Roco\r\n for the D0 collaboration','Proceedings XXIX Int\'l Conf on High Energy Physics,\r\nJuly 23-29, 1998 in Vancouver, BC, CANADA','Maria Roco','','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3502/m_d0-3502.ps','',1998,9,12,2451069,1998,9,12,2451069),(3503,'NOT USED - This number was skipped','a','a','a','','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,9,12,2451069,NULL,NULL,NULL,NULL),(3504,'NOT USED - THIS NUMBER WAS SKIPPED','a','a','a','','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,9,12,2451069,NULL,NULL,NULL,NULL),(3505,'Top Quark Physics at the Tevatron','P. Bhat, H. Prosper, S. Snyder','Submitted to Int. J. Mod. Phys. A','scott snyder','TOP','PUB','PUBLIC','POSTSCRIPT','$D0_PUB/3505/m_d0note3505.pdf','',1998,9,13,2451070,2004,5,26,2453152),(3506,'J/Psi Triggers in the Central Region','P. Grannis','We study rates for J/Psi to dielectron triggers in the \r\ncentral region, both at Level 1 and Level 2','Paul Grannis','PRESHOWER','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3506/m_cps_jpsi.ps','',1998,9,15,2451072,1998,10,1,2451088),(3507,'Tevatron Inclusive Jet Cross Section at $\\sqrt{s}$=640 GeV','Ransom W. Stephens for the \\D0 and CDF Collaborations','Conference proceeding','Ransom W. Stephens','QCD','','D0_PRIVATE','POSTSCRIPT','','',1998,9,16,2451073,NULL,NULL,NULL,NULL),(3508,'Single Jet Inclusive Cross Section with Jets Reconstructed by the $K_T$ Algorithm','Ransom W. Stephens, Michael Strang, Rob Snihur','','Ransom W. Stephens','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','','',1998,9,16,2451073,NULL,NULL,NULL,NULL),(3509,'Calibration and Alignment\r\n WG1 Report ','Iain Bertram, John Hobbs, Harry Melanson','','Iain Bertram','ONLINE','','D0_PRIVATE','','$D0_PRI/3509/m_d0_note_3509_ver_2_1.ps','',1998,9,16,2451073,1998,9,23,2451080),(3510,'A Silicon Track Trigger for the D0 Experiment in Run II - Technical Design Report','H.Evans, U.Heintz, T.Heuring, J.Hobbs, M.Johnson,\r\nS.Mani, M.Narain, F.Stichelbaut, H.Wahl','','U. Heintz','TRIGGER','DOC','PUBLIC','POSTSCRIPT','','',1998,9,16,2451073,NULL,NULL,NULL,NULL),(3511,'--','--','','U. Heintz','TRIGGER','PUB','D0_PRIVATE','POSTSCRIPT','','',1998,9,16,2451073,NULL,NULL,NULL,NULL),(3512,'General Upgrade Meeting -Aug.21, 1998','Fuess, Smith, Gallas, Johnson, Reay, Johns, Brandt, Christenson','','Roy Thatc cher','','','D0_PRIVATE','OTHER','','',1998,9,17,2451074,NULL,NULL,NULL,NULL),(3513,'The meashurement of the interstrip capasitance of\r\nsingle sided silicon microstrip detectors with \r\ncapacitive charge division for D0 experiment.','D.Karmanov, M.Kubantsev, A.Leflat, R.Lipton,\r\nV.Manankov, M.Merkin, E.Shabalina, E.Zverev\r\n','','Mikhail Merkine','SILICON','PHYS','PUBLIC','POSTSCRIPT','$D0_PRI/3513/m_Interstrip.ps','',1998,9,18,2451075,1998,9,18,2451075),(3514,'The Central PreShower in the Axial CFT Trigger','Fred Borcherding','','Fred Borcherding','','DOC','D0_PRIVATE','OTHER','','',1998,9,21,2451078,NULL,NULL,NULL,NULL),(3515,'Luminosity Distribution During Collider Run II','Mike Martens, Peter Bagley','','martens','','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3515/m_lum_dist.ps','',1998,9,21,2451078,1998,9,22,2451079),(3516,'A Silicon Track Trigger for the D0 Experiment in Run II','The D0 Collaboration','Proposal to Fermilab','Ulrich Heintz','TRIGGER','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3516/m_l2stt.ps','',1998,9,21,2451078,1999,2,14,2451224),(3517,'Properties of b-Quark Production at the Tevatron','Frederic Stichelbaut','Proceedings of the ICHEP\'98 Conference, Vancouver, July 1998','Frederic Stichelbaut','B_PHYSICS','PHYS','D0_PRIVATE','','$D0_PRI/3517/M_3517.PS','',1998,9,22,2451079,1998,9,25,2451082),(3518,'Search for Second Generation Scalar Leptoquarks Decaying to muons and jets in Run 1b/c at D0','Dan Karmgard','','Dan Karmgard','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3518/m_d0note3518_final.ps','',1998,9,22,2451079,1999,6,21,2451351),(3519,'Search for Higgs in the ZH->nunubb channel in Run II:\nAnalysis Study I','David Hedin and Vladimir Sirotenko','','David Hedin','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3519/m_zh_run2.ps','',1998,9,23,2451080,1998,10,8,2451095),(3520,'Energy Scale Uncertainties and $\\chi^2$ comparisons of Data to JETRAD for the Jet Multiplicity Ratio $R_{32}$ Measurement','Elizabeth Gallas, Ki Suk Hahn, Jerry Blazey','','Elizabeth Gallas','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3520/m_mratio_echi.ps','',1998,9,25,2451082,2000,7,10,2451736),(3521,'Direct Measurement of the Top Quark Mass at D0','Emanuela Barberis','Proceedings of the ICHEP\'98 conference, Vancouver, July 1998','Emanuela Barberis','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3521/m_van_pro.ps','',1998,9,28,2451085,1998,9,28,2451085),(3522,'A search for charged Higgs bosons in the decay of top quark pairs','M.Baarmand, D.Chakraborty, R.Raja, E.Smith','','Dhiman Chakraborty','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3522/m_ch_d0note_3522.ps','',1998,10,2,2451089,1998,10,2,2451089),(3523,'Summary of the Luminosity Workshop - September 17th-18, 1998','\r\n\r\n H. Schellman, R. Partridge - convenors\r\n C.C. Miao, Ph. Laurens, D. Edmunds, G. Brooijman,\r\n L. Paterno, F. Bartlett, S. Fuess, L. Lueking, V. White,\r\n H. Melanson, J. Yu, I. Bertram, J. Krane etc. - participants','','Heidi Schellman','','MEMO','D0_PRIVATE','OTHER','$D0_PRI/3523/m_lumwork.txt','',1998,10,5,2451092,1998,10,5,2451092),(3524,'','sawicki','','ferbel','','','D0_PRIVATE','','','',1998,10,6,2451093,NULL,NULL,NULL,NULL),(3525,'','stephens','','ferbel','','','D0_PRIVATE','','','',1998,10,6,2451093,NULL,NULL,NULL,NULL),(3526,'','','','Freedy Nang','MUON','','D0_PRIVATE','','','',1998,10,6,2451093,NULL,NULL,NULL,NULL),(3527,'Studies of the Luminosity Dependence of the Run 1B Inclusive\r\nJet Cross Sections at D0','L. Babukhadia, J. Blazey, D. Elvira, F. Nang. M. Shupe','','Levan Babukhadia','QCD','PHYS','D0_PRIVATE','','$D0_PRI/3527/m_lum_dependence.ps','',1998,10,6,2451093,1998,10,28,2451115),(3528,'Measurement of the Transverse Momentum Distribution of the Z boson','Dylan P. Casey','','Dylan P. Casey','WZ','','D0_PRIVATE','POSTSCRIPT','','',1998,10,7,2451094,NULL,NULL,NULL,NULL),(3529,'Search for WZ Production in the mu nu ee Decay Channel','P. Gartung','','Patrick Gartung','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3529/m_note3529.ps','',1998,10,8,2451095,1998,10,8,2451095),(3530,'Choice of Better Shielding Materials for D0 Detector Upgrade','V. Sirotenko','','Vladimir Sirotenko','MUON','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3530/m_d0note3530.ps','',1998,10,8,2451095,1998,10,9,2451096),(3531,'How can we believe our results? - Software Verification in High Energy Physics ','John Womersley ','presented at the 1998 meeting of the International Software Engineering Research Network (ISERN 98)','John Womersley','ALGORITHMS','','D0_PRIVATE','OTHER','','',1998,10,9,2451096,NULL,NULL,NULL,NULL),(3532,'A Combination of Preliminary Measurements of Triple\r\n Gauge Boson Coupling Parameters Measured by the LEP\r\n and D0 Experiments','ALEPH, DELPHI, L3, OPAL and D0 TGC Combination Group','','John Ellison','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3532/m_d0note3532.ps','',1998,10,12,2451099,1998,10,29,2451116),(3533,'A Search for High Mass Photon Pairs in p-pbar->gamma-gamma-jj Events at square root of s = 1.8 TeV','Bryan Adrian Lauer','Thesis','Elizabeth May','','','D0_PRIVATE','','','',1998,10,14,2451101,NULL,NULL,NULL,NULL),(3534,'Search for W Z Production in the Tri-lepton Channel at the Tevatron and Limits on the WWZ Vertex Anomalous Couplings','Patrick Elmo Gartung','Thesis','Elizabeth May','','','D0_PRIVATE','','','',1998,10,14,2451101,NULL,NULL,NULL,NULL),(3535,'Electron and Photon Energy Resolution in the Central Calorimeter for Run 2','K. Chan, D. Cho, M. Zielinski, V. Zutshi','','Vishnu Zutshi','MC','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3535/m_ccem-reso.ps','',1998,10,15,2451102,1999,3,5,2451243),(3536,'Electron and Photon Energy Resolution in the End Calorimeters for Run II','K. Chan, D. Cho, M. Zielinski, V. Zutshi','','Vishnu Zutshi','CALORIMETER','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3536/m_EC_opt_FPS_effect.ps','',1998,10,15,2451102,2000,2,24,2451599),(3537,'Muon Data Formats to L2 and L3','B.Baldin, O.Bardon, J.M.Butler, M.Fortner, S.Hansen, E.Machado, N.Parashar, V. Podstavkov, C.Rotolo, S.Uvarov, D.Wood','','Darien Wood','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3537/m_d0note_3537.ps','',1998,10,15,2451102,2002,12,30,2452639),(3538,'Vertex Reconstruction in D0 using a Object-Oriented Design','Frederic Stichelbaut and Meenakshi Narain','Proceedings of the CHEP\'98 Conference, Chicago, September 98','Frederic Stichelbaut','ALGORITHMS','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3538/m_3538.ps','',1998,10,15,2451102,1998,10,29,2451116),(3539,'Tevatron Searches for Compositeness','Elizabeth Gallas','proceedings published - EPS 1997 - Jerusalem, Israel','Elizabeth Gallas','NEW','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3539/M_EPS97_P.PS;1','',1998,10,18,2451105,1998,10,18,2451105),(3540,'D0 Run II Data Distributor Requirements','S. Fuess, G. Guglielmo, C. Moore, L. Rasmussen, J. Yu','Requirements for the D0 Run II data distributor which\r\nprovides event data to various monitoring programs (EXAMINEs).','Jae Yu','ONLINE','MEMO','D0_PRIVATE','POSTSCRIPT','','',1998,10,22,2451109,NULL,NULL,NULL,NULL),(3541,'Characteristics of CFT Track Equations related to PLD implementation','Kin Yip, Jose Montanha','','Kin Yip','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3541/m_trackeq.ps','',1998,10,23,2451110,1998,10,28,2451115),(3542,'Derivation of the Offset Correction for Run 1B Cone Jets\r\nimplemented in Cafix 5.1.','Gian Di Loreto','none','Gian Di Loreto','QCD','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3542/m_under_d0note.ps','',1998,10,23,2451110,1998,11,5,2451123),(3543,'Sensitivity of Different Z->ee Topologies to the\r\nElectromagnetic Response Offset','Ashutosh V. Kotwal','','kotwal','WZ','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,10,25,2451112,NULL,NULL,NULL,NULL),(3544,'W Boson Mass Measurement from Run 1b Data using Forward Detectors','Ashutosh V. Kotwal, Yaroslav Kulik','','kotwal','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','','',1998,10,25,2451112,NULL,NULL,NULL,NULL),(3545,'Search for Second Generation Scalar Leptoquarks in the mu nu_mu jj Channel','Dan Karmgard','','Dan Karmgard','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3545/m_d0note3545_final.ps','',1998,10,26,2451113,1999,6,21,2451351),(3546,'Second Generation Vector Leptoquarks at D0','Brian Connolly and Dan Karmgard','','Dan Karmgard','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3546/m_d0note3546_final.ps','',1998,10,26,2451113,1999,6,21,2451351),(3547,'The Total W -> e nu Cross Section at sqrt(s)=630 GeV','John Krane, Jamal Tarazi, Dylan Casey, Ian Adam','','John Krane','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3547/m_w630_v2.ps','',1998,10,29,2451116,1998,11,4,2451122),(3548,'PHOTOTUBE SELECTION PROGRAM: PMT_SELECTION','V.Korablev','','korablev','MUON','DOC','D0_PRIVATE','','$D0_PRI/3548/M_SELEC.PS','',1998,11,2,2451120,1998,11,2,2451120),(3549,'Forward Rapidity Muon and b-Quark Production in ppbar Collisions at sqrt(s)=1.8 TeV','Rick Jesik','Analysis note for PRL letter','Rick Jesik','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3549/m_samus_mu_note.ps','',1998,11,2,2451120,2001,6,5,2452066),(3550,'Measurement of the transverse momentum distribution of W bosons from Run IB data','Cecilia Gerber, Miguel Mostafa, Ricardo Piegaia','The normalized distribution of the W boson transverse momentum has been measured using 82.4pb-1 of data from Run IB.','Miguel Mostafa','WZ','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3550/m_3550.ps','',1998,11,4,2451122,2001,3,14,2451983),(3551,'Technical Design Report for the Upgrade L1/L2 Tracking Trigger - TDR for the CTT','CTT Design Group','','Fred Borcherding','TRIGGER','DOC','PUBLIC','OTHER','$D0_PUB/3551/m_TDR_v5_section_1_new.pdf','',1998,11,6,2451124,2003,6,18,2452809),(3552,'Vertex Position in the L2 CalP','Gian Di Loreto','','Gian Di Loreto','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3552/m_upg_trig-d0note.ps','',1998,11,9,2451127,1998,11,9,2451127),(3553,'The Silicon Microstrip Tracker for the D0 Upgrade','Maria Teresa P. Roco','Proceedings VI Int\'l Conference on Advanced Technology and Particle Physics, Oct 5-9, 1998, Como, Italy','Maria Teresa P. Roco','SILICON','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3553/m_d0-3553.ps','',1998,11,10,2451128,1998,12,9,2451157),(3554,'Method to Test the Jet Energy Scale Using Transverse Momentum Balance','L. Babukhadia, D. Elvira','','Levan Babukhadia','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3554/m_d0note3554.ps','',1998,11,13,2451131,2001,7,22,2452113),(3555,'Overview of the DZero Trigger Simulation Package','Amber Boehnlein, Jerry Blazey, Mike Fortner, Nick Hadley,\r\nJim Linnemann, and Dave Toback','','Dave Toback','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3555/m_trigsim.ps','',1998,11,16,2451134,1998,11,16,2451134),(3556,'The Bottom Quark Production Cross Section at 630 GeV Using Muons with Associated Jets','Kevin P. Davis','','Kevin P. Davis','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','','',1998,11,17,2451135,NULL,NULL,NULL,NULL),(3557,'Measurement of the angular distribution of electrons from W Bosons','Georg Steinbrueck','','Georg Steinbrueck','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','','',1998,11,17,2451135,NULL,NULL,NULL,NULL),(3558,'Inclusive Jet Production at 630 and 1800 GeV','Gerald C. Blazey','Submitted to ICHEP99, FNAL preprint p-Conf-98-367-E','Gerald C. Blazey','QCD','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3558/m_ichep98.ps','',1998,11,17,2451135,1998,11,17,2451135),(3559,'A Framework for Run II Offline Vertex Reconstruction','Meenakshi Narain and Frederic Stichelbaut','','F. Stichelbaut','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3559/m_3559.ps','',1998,11,20,2451138,1999,7,14,2451374),(3560,'Vertex Reconstruction using the Impact Parameters Technique','Meenakshi Narain and Frederic Stichelbaut','','F. Stichelbaut','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3560/m_3560.ps','',1998,11,20,2451138,1999,4,9,2451278),(3561,'Comparison of Fiber Polishing Techniques ','Elizabeth Gallas, Pierrick Hanlet, Matthew Marcus \r\n ','Fermilab-TM-2068','Elizabeth Gallas','','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3561/m_d0note_3561.ps','',1998,11,23,2451141,1999,2,1,2451211),(3562,'Heavy Quark Production and Decay: t, b, and onia','Richard Partridge','Plenary talk at ICHEP 98, Vancouver, Canada','Richard Partridge','TOP','PHYS','PUBLIC','POSTSCRIPT','$D0_PRI/3562/m_vancouver_d0.ps','',1998,11,23,2451141,1998,11,23,2451141),(3563,'LED Pulser System for the D0 Muon Upgrade Scintillation Counters','Pierrick Hanlet, Matthew Marcus, Darien Wood\r\nAl Ito, Bob Jones, Tom Regan\r\nB.S. Acharya\r\nJuan Pablo Negret, Manuel Zanabria','','Pierrick Hanlet','MUON','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,11,24,2451142,NULL,NULL,NULL,NULL),(3564,'The Isolated Photon Cross Section at sqrt(s)=1800 GeV \r\nUsing the Combined Run 1 Data Sample.','S.L.Linn','','linn','QCD','DOC','D0_PRIVATE','POSTSCRIPT','','',1998,11,30,2451148,NULL,NULL,NULL,NULL),(3565,'A large statistics study of the performance and yields of generation-6 VLPCs (HISTE-VI)','D. Lincoln (for the SciFi Detector Group)','Conference proceedings for Como 98\r\n(MS Word document available from D. Lincoln)','Don Lincoln','FIBER_TRACKER','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3565/m_como.ps','',1998,12,2,2451150,1998,12,2,2451150),(3566,'Study of a J/Psi --> e-e+ trigger in the forward rapidity region for the D0 upgrade','Arnaud Lucotte','','Arnaud Lucotte','TRIGGER','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3566/m_note_3566_final.ps','',1998,12,2,2451150,1998,12,11,2451159),(3567,'Software Release Tools on NT ','Gordon Watts and Alan Jonckheere','Talk and Paper given at CHEP98','Gordon Watts','SOFTWARE_INFRA','PUB','D0_PRIVATE','OTHER','$D0_PRI/3567/m_3567_srt_on_nt_paper.pdf','',1998,12,6,2451154,1998,12,6,2451154),(3568,'The D0 Level-3/Data Acquisition System for Run 2','Gennady Briskin, Dave Cutts, Gordon Watts, Ray Zeller','CHEP-98 talk and paper','Gordon Watts','DAQ_ELECTRONICS','PUB','D0_PRIVATE','OTHER','$D0_PRI/3568/m_3568_chep98_l3_hardware_paper.pdf','',1998,12,6,2451154,1998,12,6,2451154),(3569,'Control and Data Handling Software for the D0 Level 3 Trigger and Data Acquisition','Gennady Briskin, Dave Cutts, Gordon Watts, Ray Zeller','CHEP 98 Conference talk and preceedings','Gordon Watts','DAQ_ELECTRONICS','PUB','D0_PRIVATE','OTHER','$D0_PRI/3569/m_3569_level_3_software_chep98_paper.pdf','',1998,12,6,2451154,1998,12,6,2451154),(3570,'The Use of NT in Quasi-Realtime Environments','Gennady Briskin, Dave Cutts, Gordon Watts, Ray Zeller','CHEP 98 presentation and paper','Gordon Watts','DAQ_ELECTRONICS','PUB','D0_PRIVATE','OTHER','$D0_PRI/3570/m_3570_nt_in_rt_chep98_paper.pdf','',1998,12,6,2451154,1998,12,6,2451154),(3571,'','','','Iain Bertram','','','D0_PRIVATE','','','',1998,12,8,2451156,NULL,NULL,NULL,NULL),(3572,'Preshower Calibration with MIPs','Paul Grannis','','Paul Grannis','PRESHOWER','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3572/m_mip.ps','',1998,12,9,2451157,1998,12,9,2451157),(3573,'The D0 Run II Luminosity Monitor','Chyi-Chang Miao','Published Proceedings of the 6th International Conference on Advanced Technology and Particle Physics, Como, Italy, October 5-9, 1998','Chyi-Chang Miao','','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3573/m_d0note3573.ps','',1998,12,11,2451159,1998,12,11,2451159),(3574,'The Front End Crate VME Buffer Driver (VBD) Manual','Gennady Briskin, Dave Cutts, Gordon Watts, Ray Zeller','','Gordon Watts','DAQ_ELECTRONICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/3574/m_3574_l3_vbd_manual.pdf','',1998,12,16,2451164,1999,3,28,2451266),(3575,'Implications of the like-sign dimuon charge asymmetry','Bruce Hoeneisen and Carlos Marin','','Bruce Hoeneisen','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','','',1998,12,17,2451165,NULL,NULL,NULL,NULL),(3576,'The Search for Di-lepton Signatures from Squarks and Gluinos in $\\overline{p}p$ Collisions at $\\sqrt{s} = 1.8$~TeV','R. J. Genik II','','R. J. Genik II','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','','',1998,12,22,2451170,NULL,NULL,NULL,NULL),(3577,'A Working Model of NT/Linux Dual Boot System',' G. Cisko and J. Yu','A description of a successful dual boot installation procedure.','J. Yu','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3577/m_d0note3577.ps.gz','',1999,1,7,2451186,2000,4,12,2451647),(3578,'D\\O\\ Run II Online Examine Framework Design and Requirements','J. Yu and J. Kowalkowski','A design proposal of the D\\O\\ online examine (offline user interactive) framework','J. Yu','SOFTWARE_INFRA','MEMO','D0_PRIVATE','POSTSCRIPT','','',1999,1,7,2451186,NULL,NULL,NULL,NULL),(3579,'Forces on muon shiled in magnetic field of the D0 detector','V. Korablev','','D. Denisov','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3579/M_SHIELD.PS;1','',1999,1,9,2451188,1999,1,9,2451188),(3580,'D0 Run II Online Computing System - An Introduction','S. Fuess','none','Stuart Fuess','ONLINE','DOC','D0_PRIVATE','OTHER','','',1999,1,12,2451191,NULL,NULL,NULL,NULL),(3581,'D0 Run II Online Computing System - Status and Schedule','S. Fuess','none','Stuart Fuess','ONLINE','DOC','D0_PRIVATE','OTHER','','',1999,1,12,2451191,NULL,NULL,NULL,NULL),(3582,'H-Disk Accuracy and Position Revisited','M. Kubantsev, N.W.Reay, E. Shabalina','','Mikhail Kubantsev','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3582/m_hdisk_report.ps','',1999,1,13,2451192,1999,1,13,2451192),(3583,'Investigation of Correlations in the Likelihood Method for Electron ID','Aaron Pierce','','Aaron Pierce','ALGORITHMS','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3583/m_electron_corr.ps','',1999,1,13,2451192,1999,1,14,2451193),(3584,'Optimization of the Mass Spectrum Fitting Routine for a Neutral Scalar Produced in Association with a W Boson in ppbar Collisions at root-s = 1.8 TeV','Satish Desai and John Hobbs','','Satish Desai','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3584/m_higgsfit.ps','',1999,1,18,2451197,1999,1,18,2451197),(3585,'Kt Jet Momentum Scale at D0','B.Abbott, V.D.Elvira, K.Frame, B.Hirosky, D.Lincoln, R.Piegaia, R.Snihur, Veronica Sorin, H.Wahlberg, J.Zhou','','Kate Frame & V.Daniel Elvira','ALGORITHMS','ANAL','PUBLIC','POSTSCRIPT','$D0_PRI/3585/m_kt_ecal_note.ps.gz','',1999,1,20,2451199,2003,1,28,2452668),(3586,'Test of Silicon Detectors at Micron','Peter van Gemmeren','','Peter van Gemmeren','SILICON','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3586/m_rules.ps','',1999,1,25,2451204,1999,1,25,2451204),(3587,'The Fast Monte Carlo QSIM','S. Eno, R. Genik, J. Hobbs, L. Lueking','description of a fast Monte Carlo','Sarah Eno','NEW','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3587/m_qsim_note.ps','',1999,1,26,2451205,1999,2,10,2451220),(3588,'Search for Sbottom Production','David Hedin and Vladimir Sirotenko','not published','Dave Hedin','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3588/m_susyb.ps','',1999,1,26,2451205,1999,1,26,2451205),(3589,'Sony AIT Test Results','Serial Media Working Group[','','Michael Diesburg','DATA_MANAGE','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,1,26,2451205,NULL,NULL,NULL,NULL),(3590,'Exabyte Mammoth Test Results','Serial Media Working Group','','Michael Diesburg','DATA_MANAGE','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,1,26,2451205,NULL,NULL,NULL,NULL),(3591,'Quantum DLT7000 Test Results','Serial Media Working Group','','Michael Diesburg','DATA_MANAGE','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,1,26,2451205,NULL,NULL,NULL,NULL),(3592,'A Vertex Finding Algorithm for Level 3 Filter','John Hauptman, Meena Narain, John Zhou','','John Zhou','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3592/m_l3vtx.ps','',1999,1,28,2451207,1999,2,2,2451212),(3593,'Magnetic shielding studies for FEU115M phototube of the FAMUS pixel counters.','V.Bezzubov, D.Denisov, S.Denisov, A.Dyshkant, V.Evdokimov, A.Galyaev, P.Goncharov, S.Gurzhiev, D.Huffman, A.Shalunov, D.Stojanova, V.Zarucheisky ','Studies of photomultiplier FEU115M magnetic shielding are described. These photomultipliers will be used in the scintillation counters of D0 Forward Angle MUon System (FAMUS).','Sergei Gurzhiev','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3593/m_d0_note_3593.ps','',1999,1,30,2451209,1999,1,30,2451209),(3594,'Observability of the Decay Z->bb in Run II','Meenakshi Narain\r\nUlrich Heintz','','Meenakshi Narain','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,2,4,2451214,NULL,NULL,NULL,NULL),(3595,'Search for a SM higgs via gg --> h --> W*W* decays \r\nwith W*W* --> l nu jet jet \r\nat the TeVatron Run II','Arnaud Lucotte','','Arnaud Lucotte','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3595/m_note_3595.ps','',1999,2,9,2451219,1999,2,11,2451221),(3596,'Extending the sensitivity to sin2beta in the B0/B0bar \r\nsystem using a low pt J/psi --> e+e- trigger \r\nat Dzero for the run II ','Paul Grannis, Arnaud Lucotte','','Arnaud Lucotte','B_PHYSICS','PHYS','D0_PRIVATE','','$D0_PRI/3596/m_note_3596.ps','',1999,2,10,2451220,1999,2,11,2451221),(3597,'Design and Tests of the SIFT Chip','S. Mani, J. Lizarazo, F. Borcherding, M. Johnson','','Sudhindra Mani','DAQ_ELECTRONICS','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,2,10,2451220,NULL,NULL,NULL,NULL),(3598,'Search for Supersymmetry with Leptons, Photons and MET\r\n -- Studies of Run II Sensitivities on GMSB Models','Jianming Qian','','Jianming Qian','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3598/m_dn3598.ps','',1999,2,11,2451221,1999,3,31,2451269),(3599,'THE INPUT DATA FLOW TO L2STT TRIGGER CARD FROM SMT FRONT_ENDS','Silvia Tentindo-Repond and Brian Connolly','D0Note','Silvia Tentindo-Repond','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3599/m_D0Note3599.ps','',1999,2,11,2451221,2002,12,10,2452619),(3600,'Magnetic field in the region of muon low voltage power supplies for a layer of the D0 detector','V. Korablev','','V. Korablev','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3600/M_KORABLEV.PS','',1999,2,11,2451221,1999,2,11,2451221),(3601,'Test results for the F--Disk and 90^o-stereo Silicon Microstrip Detectors\r\n','Frank Lehner, Peter van Gemmeren','','Peter van Gemmeren','SILICON','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3601/m_3601.ps','',1999,2,12,2451222,1999,2,12,2451222),(3602,'SMT Test Beam: Analysis of Effects of Radiation on Hit and Cluster Efficiency','Toyoko Orimoto, R E Hall','','Raymond Hall','SILICON','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3602/m_SMT_testbeam_cluster.ps','',1999,2,12,2451222,1999,3,10,2451248),(3603,'SMT Fallback Options, Effects on the Impact Parameter and Vertex Resolutions','Maria Teresa P. Roco','','Maria Teresa P. Roco','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,2,13,2451223,NULL,NULL,NULL,NULL),(3604,'Observability of the Decay Z->b-bbar in Run II','Meenakshi Narain, Ulrich Heintz','','Ulrich Heintz','TOP','PUB','PUBLIC','POSTSCRIPT','$D0_PRI/3604/m_zbb.ps','',1999,2,14,2451224,1999,2,14,2451224),(3605,'Corrected Compositeness Limits using the D\\O\\ Dijet Angular \r\nDistribution','Iain A. Bertram','','Iain Bertram','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3605/m_Dijet_Angular_d0_note.ps','',1999,2,15,2451225,1999,10,5,2451457),(3606,'New Showering Correction for the Jet Energy Scale at D0','Anna Goussiou','','Anna Goussiou','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3606/m_note_v5.ps','',1999,2,15,2451225,1999,8,12,2451403),(3607,'Determination of the Upar efficiency for EC electrons for W mass analysis','Yaroslav Kulik','','Yaroslav Kulik','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3607/m_uparnote.ps','',1999,2,16,2451226,1999,6,18,2451348),(3608,'Determination of electromagnetic energy offset for EC electrons in D0 detector','Yaroslav Kulik','','Yaroslav Kulik','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3608/m_offset.ps','',1999,2,16,2451226,1999,2,18,2451228),(3609,'Search for Technicolor Omega at D0','J. Andrew Green','','J. Andrew Green','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3609/m_techni_d0note.ps','',2001,2,1,2451942,2001,2,1,2451942),(3610,' ','Alexander Belyaev','','Alexander Belyaev','','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,2,19,2451229,NULL,NULL,NULL,NULL),(3611,'Complete Signal and Background simulation of $Hbb$ MSSM signal with \r\n$4b-jet$ final state','Alexander Belyaev','','Alexander Belyaev','','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,2,19,2451229,1999,11,3,2451486),(3612,'Singularities of Feynman Diagrams and \r\nOptimal Kinematic Variables for Neural Networks.','E.E. Boos and L.V. Dudko','','Lev Dudko','TOP','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3612/m_nn_d0n.ps','',1999,2,22,2451232,1999,2,22,2451232),(3613,'New Layout \r\nfor the \r\nOptical Connectors of the Cassettes \r\nand the \r\nBack Panel Signals and Connectors\r\n','Manuel I. Martin','','Manuel I. Martin','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,2,22,2451232,NULL,NULL,NULL,NULL),(3614,'Definition of a single electron/photon Level-2 trigger\r\n using the Forward Preshower and the End Calorimeter \r\n for the Dzero Upgrade','Mrinmoy Bhattacharjee','','Mrinmoy Bhattacharjee','TRIGGER','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3614/m_l2_note.ps','',1999,2,26,2451236,1999,3,8,2451246),(3615,'D0 Run II Trigger Definition Language','G. Blazey, A. Boehlein, M. Fortner, J. Linnemann, R. Moore,\r\nC. Silva, S. Snyder','Description of the language used to configure the trigger in Run II','Roger Moore','TRIGGER','DOC','D0_PRIVATE','OTHER','','',1999,3,1,2451239,NULL,NULL,NULL,NULL),(3616,'Prospects for Discovering the MSSM Neutral Higgs\r\nBosons via ppbar -> b bbar H -> b bbar b bbar\r\n','Maria Teresa P. Roco','Contribution to the Run II SUSY/Higgs Workshop','Maria Teresa P. Roco','NEW','PHYS','PUBLIC','POSTSCRIPT','$D0_PRI/3616/m_d0-3616.ps','',1999,3,12,2451250,1999,3,12,2451250),(3617,'MetaClustA: A Meta Jet Clustering Algorithm','B. Knuteson, A. Pierce, D. Whiteson','','Bruce Knuteson','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3617/m_MetaClustA.ps','',1999,3,12,2451250,1999,3,14,2451252),(3618,'','pluquet graf\r\n','','azylber','','','D0_PRIVATE','','','',1999,3,13,2451251,NULL,NULL,NULL,NULL),(3619,'Random Grid Search Helper','B. Knuteson','','Bruce Knuteson','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3619/m_RgsHelper.ps','',1999,3,14,2451252,1999,3,29,2451267),(3620,'Tevatron Results on b-Quark Cross Sections and Correlations','David Fein','HCP99 Conference Talk and Proceedings','David Fein','B_PHYSICS','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3620/m_fein_hcp99.ps','',1999,3,17,2451255,1999,3,29,2451267),(3621,'A Silicon Track Trigger for the D0 Experiment in Run II - Further Physics Benefit Studies (Addendum to Proposal P908 submitted to PAC)','D0 Collaboration','submitted to PAC January 15, 1999','Horst Wahl','TRIGGER','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3621/m_sttpac2.ps','',1999,3,19,2451257,1999,3,19,2451257),(3622,'A serach for squarks and gluinos using jets and missing energy signature','Evgeny Popkov, Randal Ruchti','','Evgeny Popkov','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',1999,3,19,2451257,NULL,NULL,NULL,NULL),(3623,'The alphaPDE package','B. Knuteson','','Bruce Knuteson','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3623/m_alphaPDEpackage.ps','',1999,3,29,2451267,1999,3,29,2451267),(3624,'D0 Run II Data Distributor Design','Gerald Guglielmo\r\nCarmenita Moore','Design document for the data distributor, a part of the d0 online system for queueing events for examining online','Gerald Guglielmo','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,3,30,2451268,NULL,NULL,NULL,NULL),(3625,'Interfacing to the D0 Data Distributor','Gerald Guglielmo\r\nCarmenita Moore','Interface document for the data distributor, a part of the d0 online system for queueing events for examining online, describing how to write clients which can communicate with the distributor','Gerald Guglielmo','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,3,30,2451268,NULL,NULL,NULL,NULL),(3626,'New Hardware, New Protocols!','Manuel I. Martin','The possibility of using the DFE as the basis for the design of the Broadcaster and the substitution of the FSCL with a LVDS Link requieres new protocols ...','Manuel I. Martin','TRIGGER','DOC','D0_PRIVATE','OTHER','','',1999,3,30,2451268,NULL,NULL,NULL,NULL),(3627,'Notes about the CFT Digital Board and its uses.','Manuel I. Martin','Some modifications in the original design of the Digital Front End Board allows for very efficient Architectures for the Ttrigger System.','Manuel I. Martin','TRIGGER','DOC','D0_PRIVATE','OTHER','','',1999,3,31,2451269,NULL,NULL,NULL,NULL),(3628,'VME Test Beam Generator (VTBG) Specifications','B. Knuteson, M. Johnson, J. Anderson, J. Green, O. Payne','','Bruce Knuteson','FIBER_TRACKER','DOC','D0_PRIVATE','OTHER','$D0_PRI/3628/m_VTBGspecifications.doc','',1999,4,6,2451275,1999,4,6,2451275),(3629,'p(met): The missing transverse energy resolution of an event','B. Knuteson, M. Strovink, B. Olivier, U. Bassler, F. Fleuret, G. Bernardi','','Bruce Knuteson','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3629/pmet_v2.ps','',1999,4,6,2451275,2001,12,1,2452245),(3630,'Description of the D0 L3 Trigger software components','Amber Boehnlein, Gustaaf Brooijmans, Dan Claes, Moacyr Souza','','Amber Boehnlein','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3630/m_3630.ps','',1999,4,8,2451277,2002,7,29,2452485),(3631,'Interactions between the Level 3 framework and ScriptRunner','Amber Boehnlein, Dan Claes, Moacry Souza, Gordon Watts','','Amber Boehnlein','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,4,8,2451277,NULL,NULL,NULL,NULL),(3632,'A Determination of the b Quark Production Cross Section at\r\nsqrt(s)=630 GeV. ','Frederic Stichelbaut','','F.Stichelbaut','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3632/m_3632.ps','',1999,4,9,2451278,1999,7,31,2451391),(3633,'Theoretical Predictions for b-produced Muon Cross Section at sqrt(s) = 630 and 1800 GeV.','Frederic Stichelbaut','','F.Stichelbaut','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','/prj_root/764/r1b_1/b_1/stichel/hvqjet/note/m_3533_rev.ps','',1999,4,9,2451278,1999,4,17,2451286),(3634,'Calibration and W Boson Mass Measurements using \r\nCentral and Forward Detectors','G. Bernardi, F. Fleuret, D. Lacour, B. Olivier','','Gregorio Bernardi','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3634/m_Wmass.ps','',1999,4,11,2451280,1999,4,11,2451280),(3635,'B-Tagging Rates in Associated Higgs Production','Maria Teresa P. Roco','to appear in the Run II Supersymmetry/Higgs Workshop report','Maria Teresa P. Roco','NEW','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3635/m_d0-3635.ps','',1999,4,13,2451282,1999,4,20,2451289),(3636,'Level 1 Trigger for High pt Track Pairs','Yu. Gershtein','','Gershtein','TRIGGER','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3636/m_note.ps','',1999,4,19,2451288,1999,4,19,2451288),(3637,'Forces on EF iron in the magnetic field of the D0 detector','V. Korablev','','Denisov','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3637/m_t.ps','',1999,4,22,2451291,1999,4,22,2451291),(3638,'Definitions for L3 Data Transfers from CFT Trigger','Manuel I. Martin, Fred Borcherding','The CFT Trigger System needs to send information to the L3 for Testing and Debugging. What Data and which Protocol is used is the subject of this D0 Note.','Manuel I. Martin','TRIGGER','DOC','D0_PRIVATE','OTHER','','',1999,4,27,2451296,NULL,NULL,NULL,NULL),(3639,'Higgs Boson Discovery Prospects at the Tevatron','Paul Grannis and Maria Teresa P. Roco','to be published in World Scientific, proc of the 13th Topical Conference in Hadron Collider Physics, Mumbai, India\r\n','Maria Teresa P. Roco','NEW','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3639/m_d0-3639.ps','',1999,4,28,2451297,1999,4,28,2451297),(3640,'The STT Broadcaster System','Manuel I. Martin','','manuel','TRIGGER','DOC','D0_PRIVATE','OTHER','','',1999,4,29,2451298,NULL,NULL,NULL,NULL),(3641,'THE BROADCASTER:FUNCTIONALITY, ALGORITHMS AND IMPLEMENTATION\r\n','Manuel I. Martin','','Manuel','TRIGGER','DOC','D0_PRIVATE','OTHER','','',1999,4,29,2451298,NULL,NULL,NULL,NULL),(3642,'Central Muon Upgrade Scintillator Front-End Crate Addresses','Diehl, Ito, Mao, Podschweit, Hedin','not to publish','Tom Diehl','MUON','MEMO','D0_PRIVATE','TEXT','/RunII/home/diehl/muonup/2004/docs/m_chole.txt','',1999,5,6,2451305,2005,3,21,2453451),(3643,'\"Recent Results on the Top Quark from the Tevatron Collider Experiments\"','A.P. Heinson, for the DZero and CDF Collaborations','To appear in the proceedings of the XXXIVth Rencontres de Moriond, Electroweak Interactions and Unified Theories, Les Arcs, Savoie, France, 13th-20th March 1999.','Ann Heinson','TOP','PUB','PUBLIC','POSTSCRIPT','$D0_PRI/3643/m_hepex9906023.pdf','',1999,5,18,2451317,2003,11,7,2452951),(3644,'A Study of the chi^2 Comparisons used in the\r\nInclusive Jet Analyses.','Iain A. Bertram','','Iain A. Bertram','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3644/m_d0_note_3644.ps','',1999,5,19,2451318,1999,6,23,2451353),(3645,'Specification of the Level 2 Central Tracking Trigger \r\nPreprocessor Crate','D. Toback, A. Baden, F. Borcherding, K. Yip','','Dave Toback','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,5,20,2451319,NULL,NULL,NULL,NULL),(3646,'Cabling Scheme of the Central Preshower Detector','Ken Del Signore, Jianming Qian, Andre S. Turcot','','Jianming Qian','PRESHOWER','MEMO','D0_PRIVATE','POSTSCRIPT','','',1999,5,20,2451319,NULL,NULL,NULL,NULL),(3647,'The Central Preshower Detector\r\na core dump of useful information','Del Signore et al','','Ken Del Signore','PRESHOWER','MEMO','D0_PRIVATE','POSTSCRIPT','','',1999,5,21,2451320,NULL,NULL,NULL,NULL),(3648,'A measurement of the t \\bart -> e-mu production cross section using neural networks at D0 ','Singh, H.; Cochran, J. and Wimpenny, S.J. - Univ. of California, Riverside; Bhat, P. - Fermilab','','Singh, H.','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3648/m_d0note_3648.ps','',1999,5,21,2451320,2000,7,20,2451746),(3649,'Spin Correlation in t\\bar{t} Production','Suyong Choi','Analysis of spin correlation in tt-bar system in the dilepton channels.','Suyong Choi','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',1999,5,24,2451323,NULL,NULL,NULL,NULL),(3650,'Simulation of Single Top Production Through Proton-Antiproton Collisions at sqrt(s)=1.8 TeV ','John Rha','Unpublished','John Rha','TOP','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3650/m_d0note3650.ps','',1999,5,24,2451323,1999,6,17,2451347),(3651,'Level2 Calorimeter Preprocessor Technical Design Report ','Mark Adams, Robert Hirosky, Robert D. Martin, Nikos Varelas, Gian Di Loreto, Daniel Owen ','internal','Robert Martin','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,5,26,2451325,NULL,NULL,NULL,NULL),(3652,'Gray Code and Binary Conversion ','Jeffrey McDonald','','Jeffrey McDonald','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3652/m_gray.ps','',1999,5,28,2451327,1999,6,7,2451337),(3653,'PC/Windows NT software for the D0 Forward Muon System Scintillation Trigger Counters Tests','Valeri Sytnik','','Valeri Sytnik','MUON','MEMO','D0_PRIVATE','OTHER','$D0_PRI/3653/m_fmsc_test.doc','',1999,5,31,2451330,1999,6,8,2451338),(3654,'Higgs searches in the WH-> lnu bb-bar channel','Emanuela Barberis','','Emanuela Barberis','','','D0_PRIVATE','POSTSCRIPT','','',1999,6,3,2451333,NULL,NULL,NULL,NULL),(3655,'Real-Time Data Processing in the Run II Muon System of the D0 Detector','N.Parashar, O. Bardon, R. Goodwin, S. Hansen, B. Hoeneisen, V. Podstavkov, S. Uvarov and D. Wood','Submiited to Conference issue of the IEEE Transactions on Nuclear Science (TNS).','Neeti Parashar','MUON','PUB','D0_PRIVATE','OTHER','/d0chb/home/room1/neeti/RT046A.doc','',1999,6,7,2451337,1999,8,16,2451407),(3656,'Study of R-parity violation through Yukawa lambda couplings','E.Nagy, E.Smith','','E. Nagy','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3656/m_rpv_trilepton.ps','',1999,6,15,2451345,2000,3,31,2451635),(3657,'Application of First Generation Leptoquark Search Cuts to the Search for SUGRA in the Single Electron Channel','Susan Blessing\r\nAmber Boehnlein','','Amber Boehnlein','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3657/m_d0note3657.ps','',1999,6,17,2451347,1999,6,17,2451347),(3658,'Transparencies from Fiber Tracker Meetings,\r\n2/98-5/99','A. Bross','','Alan Bross','FIBER_TRACKER','PUB','D0_PRIVATE','OTHER','','',1999,6,21,2451351,NULL,NULL,NULL,NULL),(3659,'Run II Muon Data Processing in the Readout DSP on the Control Board of the PDT system. ','Neeti Parashar & Darien Wood','','Neeti Parashar','MUON','DOC','D0_PRIVATE','OTHER','','',1999,6,22,2451352,NULL,NULL,NULL,NULL),(3660,'Online Calibration Requirements','Iain Bertram','','Iain Bertram','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3660/m_d0note_3660.ps','',1999,6,24,2451354,1999,6,24,2451354),(3661,'Optimization of the calorimeter response for the Monte Carlo Challenge 99 Phase I','K.M. Chan, D.K. Cho, M. Zielinski, V.V. Zutshi','','Kwok Ming Chan','MC','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3661/m_MCC99-I_wts.ps','',1999,6,25,2451355,1999,7,30,2451390),(3662,'Run II Streaming: How to Stream Events','Amber Boehnlein, Xiaoling Fan, Heidi Schellman, Moacyr de Souza','','Heidi Schellman','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3662/m_streaming.ps','',1999,6,27,2451357,1999,7,6,2451366),(3663,'A Proposal for Extending D0 Trigger Capabilities with Tracking Systems','Dave Cutts, Yuri Gershtein, and Greg Landsberg\r\nBrown University','We propose a set of new tracking and muon triggers for searches for massive stable particles and tau\'s','Greg Landsberg','TRIGGER','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3663/m_triglist.ps','',1999,7,12,2451372,1999,7,15,2451375),(3664,'Forward Preshower Detector Offline Software','Dennis Shpakov','','Dennis Shpakov','PRESHOWER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3664/m_fpssoft.ps','',1999,7,13,2451373,1999,7,13,2451373),(3665,'POWER SERIES EXPANSION OF THE SOLENOID MAGNETIC FIELD','Bruce Hoeneisen','Not published','Bruce Hoeneisen','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3665/m_solenoid_D0note3665.ps','',1999,7,20,2451380,1999,7,20,2451380),(3666,'How to Use the Trigger Ntuple Maker','Tommy Landers and Dave Toback','','Dave Toback','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,7,20,2451380,NULL,NULL,NULL,NULL),(3667,'Studies of the mass resolution for the standard model\r\nHiggs in the Channel H -> b bbar','Robert Snihur, Gordon Watts, John Womersley','Proceedings of the Run II SUSY/Higgs Workshop','John Womersley','','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3667/m_bbmass.ps','',1999,7,21,2451381,1999,7,21,2451381),(3668,'Subjet Multiplicity in Quark and Gluon Jets at D0','Rob Snihur','','Rob Snihur','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3668/m_eb_040_02_043.ps','',1999,7,22,2451382,1999,8,7,2451398),(3669,'A Hough Transform-based Vertex Algorithm for the Level 3 Trigger','Gustaaf Brooijmans','','Gustaaf Brooijmans','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3669/m_l3vtx.ps','',1999,7,29,2451389,1999,7,29,2451389),(3670,'Testing the Cousins and Highland Method for Upper Limits','Julia Eaton\r\nJoan Montesano','The method of Cousins and Highland is tested and found to not work as expected.','Joan Montesano','NEW','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3670/m_3670.ps','',1999,7,29,2451389,2000,1,24,2451568),(3671,'O-Ring Fabrication Procedure for the Cryostat-VLPC Cassette Interface of the Scintillating Fiber Tracker','J. Eaton','Procedure for making reliable seals for the cryostat-cassette interface of the scintillating fiver tracker.','J. Eaton','FIBER_TRACKER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3671/m_3671.ps','',1999,7,29,2451389,1999,9,27,2451449),(3672,'QCD Coherence Study in PPbar Collision at sqrt(s)=1.8 TeV','John Zhou','Not published','John Zhou','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3672/m_note.ps','',1999,7,30,2451390,1999,7,30,2451390),(3673,'Queueing Simulation of Silicon Track Trigger Dead Time Using the Ptolemy Simulation Package','Stephan L. LINN','','linn','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,8,16,2451407,NULL,NULL,NULL,NULL),(3674,'Buffering Scheme in the Muon Readout Digital Signal Processor (ADSP-21csp01)','Neeti Parashar, V. Podstavkov, S. Uvarov','','Neeti Parashar','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3674/m_d0note_3674.ps','',1999,8,16,2451407,1999,8,16,2451407),(3675,'High Voltage Dependence of 115M PMT Groups Gain ','D.Denisov, V.Evdokimov, I.Vasilyev','','Igor Vasilyev','MUON','DOC','D0_PRIVATE','TEXT','$D0_PRI/3675/m_note_pmt.ps','',1999,8,17,2451408,1999,8,22,2451413),(3676,'Results of WLS Bars Production and Inspection at IHEP','D.Denisov, A.Godov, S.Gurzhiev, V.Evdokimov, A.Kostritsky, I.Vasilyev','','Igor Vasilyev','MUON','DOC','D0_PRIVATE','TEXT','$D0_PRI/3676/m_note_wls.ps','',1999,8,17,2451408,1999,8,22,2451413),(3677,'B physics with the D0 Detector Upgrade','Arnaud Lucotte','Proceedings to the beauty\'99 conference held in Bled, Slovenia. This will be part of a NIM devoted to this conference.','Arnaud Lucotte','B_PHYSICS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3677/m_note_3677.ps','',1999,8,18,2451409,1999,8,18,2451409),(3678,'Future Prospects for Higgs Discovery at the Tevatron','Maria Teresa P. Roco','to appear in the proceedings of the Int\'l Europhysics Conference in High Energy Physics (EPS \'99), Tampere, Finland','Maria Teresa P. Roco','NEW','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3678/m_d0-3678.txt','',1999,8,31,2451422,1999,10,1,2451453),(3679,'Jet ET Resolutions at sqrt(s)=630 GeV\r\nand Comparison to Resolutions at 1800 GeV','Anna Goussiou','','Anna Goussiou','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3679/m_note.ps','',1999,9,2,2451424,1999,9,2,2451424),(3680,'The Dijet Cross Section at Large Rapidity Intervals\r\nat sqrt(s)=1800 and 630 GeV in pbarp Collisions','Anna Goussiou','','Anna Goussiou','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3680/m_note.ps','',1999,9,2,2451424,2001,4,24,2452024),(3681,'Data Structure for the Level 2 Silicon Tracking Trigger detector readout','Silvia Tentindo Repond , FSU','','Silvia Tentindo Repond','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3681/m_D0Note3681.ps','',1999,9,3,2451425,2002,12,10,2452619),(3682,'Generator Systematic Error in the Top Quark Cross Section\r\n Measurement','Bantly J., Cobau W., Cochran J., Genser K., Greenlee H., Hall\r\n R., Hobbs J., Kehoe R., Narain M., Rockwell T., Tamburello P., Zhu H.','','harpreet','','','D0_PRIVATE','POSTSCRIPT','','',1999,9,3,2451425,NULL,NULL,NULL,NULL),(3683,'Level 1 Trigger OR\'s with Pseudo AND/OR Terms','D. Edmunds, S. Gross, P. Laurens (Michigan State Univ.)\r\nG. Blazey (Northern Illinois Univ.)\r\nM. Bhattacharjee, P. Grannis, A. Lucotte (Stony Brook)\r\nA. Brandt (Univ. Texas, Arlington)','We present a method for constructing ORs of trigger terms\r\nin the Level 1 trigger, and specify a baseline set of such ORs.','Paul Grannis','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3683/m_pterm.ps','',1999,9,15,2451437,1999,9,15,2451437),(3684,'The Level 2 STT Trigger Simulator and its Clustering Algorithm','Silvia Tentindo Repond','','Silvia Tentindo Repond','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3684/m_D0Note3684.ps','',1999,9,16,2451438,2002,12,10,2452619),(3685,'Single Inclusive Jet Cross Sections at D0','Levan Babukhadia','','Levan Babukhadia','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3685/m_d0note3685.ps','',1999,9,17,2451439,2001,7,22,2452113),(3686,'Sherlock: A multivariate, quasi-model-independent algorithm for finding anomalous events','Bruce Knuteson, Dave Toback','','Bruce Knuteson','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3686/m_sherlockAlgorithm.ps','',1999,9,19,2451441,2000,7,31,2451757),(3687,'NADA: A New Event by Event Hot Cell Killer','G. Bernardi, B. Olivier, B. Knuteson, M.Strovink','','Bob Olivier','CALORIMETER','PHYS','D0_PRIVATE','POSTSCRIPT','/RunII/home/olivier/m_NADA-V3.ps','',1999,9,21,2451443,2001,10,30,2452213),(3688,'2708','','','Jon Anderson','','','D0_PRIVATE','TEXT','$D0_PRI/3688/m_vtx_topo_note.ps','',1999,9,22,2451444,2001,5,23,2452053),(3689,'','marvin johnson','','jon anderson','','','D0_PRIVATE','','','',1999,9,23,2451445,NULL,NULL,NULL,NULL),(3690,'','marvin johnson','','jon anderson','FIBER_TRACKER','','D0_PRIVATE','','','',1999,9,23,2451445,NULL,NULL,NULL,NULL),(3691,'Proposal for the Search of Four-Body Decays of the Stop','B. Olivier, U. Bassler, G. Bernardi, F. Machefert, D. Chakraborty','','Bob Olivier','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3691/m_stop.ps','',1999,9,29,2451451,1999,9,29,2451451),(3692,'Queuing simulation of silicon track trigger dead time using the ptolemy simulation package','s.l. linn','','Jon Anderson','','','D0_PRIVATE','','','',1999,10,7,2451459,NULL,NULL,NULL,NULL),(3693,' Combining the CDF and $\\dzero$ R Measurement','Sarah Eno, Henry Frisch, Gervasio Gomez, Mark Lancaster, Dave Toback, John Wahl, Darien Wood','','Sarah Eno','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3693/m_r_d0_cdf.ps','',1999,10,8,2451460,1999,11,11,2451494),(3694,'Parameterizations of the Single Jet Resolutions at sqrt{s} = 630 GeV','Iain Bertram, John Krane','','Iain Bertram','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3694/m_d0_note_3694_v2.ps','',1999,10,12,2451464,1999,10,20,2451472),(3695,'Testing the ADC on the SVXII for Differential Non-linearity and Even-odd Count Effect','J. Anderson, M. Johnson, M. Utes, R. Angstadt','','Jon Anderson','','','D0_PRIVATE','','','',1999,10,13,2451465,NULL,NULL,NULL,NULL),(3696,'Resonant sneutrino production at Tevatron Run II','F. D\\\'eliot, C. Royon, E. Perez, G. Moreau, M. Chemtob','','C.Royon','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3696/m_paper.ps','',1999,10,14,2451466,1999,10,15,2451467),(3697,'Digital Board Algorithm for the L1 FPS Trigger','Arnaud Lucotte, Paul Grannis','','Arnaud Lucotte','TRIGGER','','D0_PRIVATE','','','',1999,10,21,2451473,NULL,NULL,NULL,NULL),(3698,'Update of the Large Ht Limits on Quark Compositeness\r\n','Iain Bertram, J. Andrew Green','note for EB 35 PRL documentation.','J. Andrew Green','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3698/m_compos_update.ps','',1999,10,21,2451473,1999,10,26,2451478),(3699,'A Measurement of the Isolated Direct\r\nPhoton Cross Section at 630 GeV','Strauss, Grinstein, Piegaia','','Michael Strauss','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3699/m_630_photon.ps','',1999,10,27,2451479,2000,10,13,2451831),(3700,'The Sherlock e mu Data Set','D. Toback, B. Knuteson, J. Cochran, H. Singh','','Bruce Knuteson','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3700/m_emu_dataset.ps','',1999,11,5,2451488,2000,7,31,2451757),(3701,'The Sherlock Search Strategy: Final States and Variables','B. Knuteson, D. Toback','','Bruce Knuteson','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3701/m_searchStrategy.ps','',1999,11,5,2451488,2000,7,31,2451757),(3702,'CFT ribbon misalignment impact on the L1 CFT trigger\r\n','Kin Yip','','Kin Yip','TRIGGER','ANAL','D0_PRIVATE','POSTSCRIPT','','',1999,11,14,2451497,NULL,NULL,NULL,NULL),(3703,'Measurement of the b-Jet Production Cross Section','Arthur Maciel , Andre Sznajder','','Arthur Maciel','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3703/m_bjets.ps','',1999,11,18,2451501,2000,3,8,2451612),(3704,'Flavor Content Discrimination in a Muon Tagged Jet Sample\r\nusing \"PtRel\".','Arthur Maciel , Andre Sznajder','','Arthur Maciel','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3704/m_ptrel.ps','',1999,11,18,2451501,2000,3,8,2451612),(3705,'Run-1b Measurement of the b-Quark Production Cross Section \r\nfrom a Sample of Muon Tagged Jets.','Arthur Maciel , Andre Sznajder','','Arthur Maciel','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3705/m_bxsec.ps','',1999,11,18,2451501,2000,5,15,2451680),(3706,'','','','3551','','','D0_PRIVATE','','','',1999,11,28,2451511,NULL,NULL,NULL,NULL),(3707,'','','','3551','','','D0_PRIVATE','','','',1999,11,28,2451511,NULL,NULL,NULL,NULL),(3708,'SIFT Chip Noise Characterization','Marvin Jhonson\r\nJuan lizarazo','','Juan Lizarazo','FIBER_TRACKER','PUB','D0_PRIVATE','TEXT','','',1999,12,3,2451516,NULL,NULL,NULL,NULL),(3709,'The Sherlock Package','Bruce Knuteson, Dave Toback','','Bruce Knuteson','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3709/m_sherlockPackage.ps','',1999,12,4,2451517,2000,7,31,2451757),(3710,'Trilinear Gauge Boson Couplings and Vector Boson Pair Production','A. Sanchez-Hernandez\r\n(for the d0 Collaboration)','Paper to appear in the Proceedings of the 7th Mexican Workshop on Particle and Fields','Alberto Sanchez-Hernandez','WZ','PUB','PUBLIC','POSTSCRIPT','$D0_PRI/3710/m_3710_full.ps','',1999,12,7,2451520,1999,12,9,2451522),(3711,'L1 CFT/CPS, Octant Board','Juan Lizarazo\r\nManuel Martin','','Juan Lizarazo','TRIGGER','DOC','D0_PRIVATE','TEXT','','',1999,12,7,2451520,NULL,NULL,NULL,NULL),(3712,'Jet Pointing Algorithms','Eric Flattum, John Zhou','Not published','John Zhou','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3712/m_jp.ps','',1999,12,9,2451522,1999,12,9,2451522),(3713,'The Calorimeter Timing and Control System: SCA States and Transitions','V.Daniel Elvira','','V.Daniel Elvira','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,12,14,2451527,NULL,NULL,NULL,NULL),(3714,'Status of forward muon reconstruction program','O.Eroshin, D.Denisov','','Oleg Eroshin','MUON','DOC','D0_PRIVATE','POSTSCRIPT','','',1999,12,17,2451530,NULL,NULL,NULL,NULL),(3715,'Sherlock: D0 Run I search strategy details','Bruce Knuteson, Dave Toback','','Bruce Knuteson','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3715/m_RunIDetails.ps','',1999,12,19,2451532,2000,7,31,2451757),(3716,'Optimization of calorimeter response using plate geometry in D0GSTAR p01.00.02','K.M. Chan, D.K. Cho, M. Zielinski, V.V. Zutshi','','Kwok Ming Chan','MC','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3716/m_plate_weights_p01_00_02.ps','',1999,12,20,2451533,2001,7,31,2452122),(3717,'$t\\bar t$ cross section using e-mu final state','Singh, H. and Wimpenny, S.J. - Univ. of California, Riverside ','','S.J. Wimpenny','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3717/m_d0note_3717.ps','',1999,11,20,2451503,2000,7,20,2451746),(3718,' ',' ','','','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2000,1,6,2451550,NULL,NULL,NULL,NULL),(3719,'Assembling of F-Disk wedge detectors','Peter van Gemmeren','','Peter van Gemmeren','SILICON','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3719/m_3719.ps','',2000,1,12,2451556,2000,1,12,2451556),(3720,'Level 1 FPS Algorithm Revisited','Levan Babukhadia','','Levan Babukhadia','TRIGGER','','PUBLIC','POSTSCRIPT','$D0_PUB/3720/m_d0note3720.ps','',2000,1,23,2451567,2000,5,2,2451667),(3721,'kT Jet Momentum Resolutions','Sebastian Grinstein, Daniel Elvira, Ricardo Piegaia','','Sebastian Grinstein','QCD','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3721/m_kt_res_3.ps','',2000,1,24,2451568,2001,2,21,2451962),(3722,'The Operation of the D0 Upgrade SMT and CTT Electronics in 396ns Accelerator Operation','Fred Borcherding, Marvin Johnson','This note lists the requirements on accelerator operation when operating in 396ns bunch spacing. These requirements are necessary for the operation of the SVX chip with a 396ns integration cycle.','Fred Borcherding','DAQ_ELECTRONICS','DOC','D0_PRIVATE','OTHER','','',2000,1,31,2451575,NULL,NULL,NULL,NULL),(3723,'L3fstats_devel : D0 Level 3 Statistics Tool','Srinivas Gerendla','','Srinivas Gerendla','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/3723/m_stats_devel.doc','',2000,2,3,2451578,2000,3,1,2451605),(3724,'Fallback Options for the D0 Upgrade','The D0 Collaboration','','John Womersley','','','D0_PRIVATE','OTHER','','',2000,2,5,2451580,NULL,NULL,NULL,NULL),(3725,'A Study of the Effect of the Analog Cross Talk on the L1 Central Fiber Trigger','Fred Borcherding, Kin Yip','','Fred Borcherding','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3725/m_D0Note_3725.pdf','',2000,2,7,2451582,2000,2,8,2451583),(3726,'Report of the Trigger Emulation Design Group','Amber Boehnlein, Dan Claes, Elizabeth Gallas, \r\nPhilippe Laurens, Jim Linnemann, Manuel Martin, \r\nRoger Moore, Kin Yip','','Elizabeth Gallas','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3726/m_emulation_design_group_report.ps','',2000,2,13,2451588,2000,3,3,2451607),(3727,'A Global Stiff Track Finder for Level 3','Daniel Whiteson','','Daniel Whiteson','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3727/m_stf.ps','',2000,2,14,2451589,2000,2,14,2451589),(3728,'User\'s guide for the solenoid magnetic field software','B. Hoeneisen and F. Pasmay','','Bruce Hoeneisen','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3728/m_readme_solenoid.ps','',2000,2,17,2451592,2000,2,21,2451596),(3729,'Search for Large Spatial Extra Dimensions Using Electrons and Photons','Greg Landsberg','','Greg Landsberg','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2000,2,18,2451593,NULL,NULL,NULL,NULL),(3730,'Acceptance of SMT for various F-disk options','Regina Demina, Alexander Khanov','','Alexander Khanov','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3730/m_nh.ps','',2000,2,25,2451600,2000,2,25,2451600),(3731,'Run II - Calorimeter Calibration System','P. Cornebise, P. Imbet Y. Jacquier, G. Martin, P. Petroff, C. de la Taille, P. Bailly, U. Bassler, G. Bernardi, J.F. Huppert, H. Lebbollo, F. Machefer, B. Olivier, A. Vallereau','Description of the Calorimeter Calibration System','Ursula Bassler','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','http://d0-france.in2p3.fr/WORKING_GROUPS/CALORIMETRY/CALO_CAL/notes/safety.ps','',2000,2,28,2451603,NULL,NULL,NULL,NULL),(3732,'Design and Implementation of the L2 Trigger Simulator','Roger Moore, Dugan O\'Neil','','Roger Moore','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2000,3,3,2451607,NULL,NULL,NULL,NULL),(3733,'\"Serial Command Link Description, D-Zero Run II Trigger DAQ System\",24-April-1997','','','Qi An, Nevis labs of Columbia Univ.','TRIGGER','DOC','D0_PRIVATE','','','',2000,3,6,2451610,NULL,NULL,NULL,NULL),(3734,'A D0 Study of b Jet Production, and Projections for Run II.\r\n','Arthur Maciel','For the Fermilab b-Workshop, Run II and Beyond, Feb.2000','Arthur Maciel','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3734/m_bwshop.ps','',2000,3,8,2451612,2000,3,8,2451612),(3735,'Analysis of the FieldMapper Geometrical Survey and Establishment of the FieldMapping Coordinate System','M. Mostafa, H. E. Fisk, R. P. Smith and Z. Yu','Analysis of the mechanical survey of the Solenoid FieldMapper.','Miguel Mostafa','','PUB','D0_PRIVATE','POSTSCRIPT','','',2000,3,9,2451613,NULL,NULL,NULL,NULL),(3736,'SMT Fallback Study: Inner Layer Effectiveness in Level 3 Tracking.','Daniel Whiteson','','Daniel Whiteson','SILICON','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3736/m_smteff2.ps','',2000,3,14,2451618,2000,3,15,2451619),(3737,'The Diphoton Purity in the D0 Central Calorimeter in Run1b\r\nand the ppbar->gamma gamma + X Cross Section','T.Mentes, W.Chen, R. Engelmann','','Tevfik Onur Mentes','QCD','','D0_PRIVATE','POSTSCRIPT','','',2000,3,15,2451619,NULL,NULL,NULL,NULL),(3738,'Maximal Use of Kinematic Information in Single Lepton $t \\overline{t}$ Events','Juan Estrada, Gaston Gutierrez','PhD-Qualifying Brief presented at University of Rochester by Juan Estrada based on work done with Gaston Gutierrez. (Preliminary)','Juan Estrada','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3738/m_muki.ps','',2000,3,27,2451631,2000,9,24,2451812),(3739,'Energy Restoration of Edge Electrons in the D0 Central Calorimeter','Frederic Fleuret','','Frederic Fleuret','CALORIMETER','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3739/m_edge.ps','',2000,3,28,2451632,2000,3,28,2451632),(3740,'An ALTERA Track Fit Processor for the Silicon Track Trigger','John Hobbs and Wendy Taylor','','Wendy Taylor','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3740/m_tfc_altera.ps','',2000,3,29,2451633,2000,3,31,2451635),(3741,'D0 Schedule and Contingency Plan','The D0 collaboration','Document submitted to FNAL and describing the dates, when\r\ndecisions on fallback options have to be made.','Harry Weerts','','DOC','D0_PRIVATE','POSTSCRIPT','','',2000,3,30,2451634,NULL,NULL,NULL,NULL),(3742,'Fits to Bjorken x of Both Interacting Partons in Over-Constrained Final States','John Hauptman','','John Hauptman','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','','',2000,4,2,2451637,NULL,NULL,NULL,NULL),(3743,'A Study of Computational Algorithms for Track Fitting in the\r\nDZero Silicon Track Trigger','J. Egdemir, J.D. Hobbs, T. Mentes, W. Taylor','','John Hobbs','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3743/m_stt_fit_physics.pdf','',2000,4,7,2451642,2000,4,7,2451642),(3744,'L2STT firmware: cable format file for the SMT input to the Cluster FPGA of the Silicon Trigger Card','Silvia Tentindo Repond, FSU\r\nHarrison Prosper, FSU','','Silvia Tentindo Repond','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2000,4,10,2451645,NULL,NULL,NULL,NULL),(3745,'Comparison of H-Matrices for electron identification in D0 Run II','A. Abdesselam ','','A. Abdesselam','','','D0_PRIVATE','','$D0_PRI/3745/m_hmat_d0note.ps','',2000,4,12,2451647,2000,4,12,2451647),(3746,'MC studies of jet algorithms in the RUN II framework ','Laurent Duflot and Robert Hirosky','The cone and kT algorithms are studied using a MC sample of QCD events. The algorithms studied are reproductions of those used in RUN I.','duflot','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3746/m_d0note3746.ps','',2000,4,13,2451648,2000,4,13,2451648),(3747,'Specifications of and Modifications to Low Voltage Power \r\nSupply Modules for the Central Muon Upgrade PDT\'s at D0','H.T.Diehl','For Operational Readiness Clearance Safety Review','Diehl','MUON','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3747/m_1998.ps','',2000,4,15,2451650,2000,4,15,2451650),(3748,'D0 WAMUS PDT Front End Electronics Safety Note','Sten Hansen, Carl Lundberg, H.T.Diehl','Safety Documentation for Operational Readiness Clearance','Diehl','MUON','MEMO','D0_PRIVATE','OTHER','$D0_PRI/3748/m_wfeb_safety.doc','',2000,4,15,2451650,2000,4,15,2451650),(3749,'Simple cone preclustering for cone jets','Laurent Duflot','The influence of the choice of the preclustering algorithm for cone jets is studied by comparing cone jets with nearest neighbor preclustering and cone jets with simple cone preclustering.','Laurent Duflot','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3749/m_d0note3749.ps','',2000,4,15,2451650,2000,4,15,2451650),(3750,'Run II Jet Physics ','Gerald C. Blazey, Jay R. Dittmann, Stephen D. Ellis,\r\nV. Daniel Elvira, K. Frame, S. Grinstein, Robert Hirosky,\r\nR.Peigaia, H. Schellman, R. Snihur,V. Sorin, Dieter\r\nZeppenfeld\r\n','Proceedings of the jet physics group of the Run II QCD\r\nWorkshop.','Gerald C. Blazey','QCD','PUB','PUBLIC','POSTSCRIPT','$D0_PRI/3750/m_QCDRUNIIJETS_SUBMIT.PS','',2000,4,20,2451655,2000,4,20,2451655),(3751,'','Mrinmoy Bhattacharjee & Paul D. Grannis','Technical Design Report of Level 2 Central Preshower and Forward Preshower Trigger','Mrinmoy Bhattacharjee','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2000,4,29,2451664,NULL,NULL,NULL,NULL),(3752,'Search for Quark-Lepton Compositeness for Run II and TEV33 with the D0 Detector at Tevatron','Supriya Jain, Naba K Mondal','','Naba K Mondal','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3752/m_d0note_compo.ps','',2000,5,15,2451680,2003,3,4,2452703),(3753,'','','','2197','','','D0_PRIVATE','','','',2000,5,19,2451684,NULL,NULL,NULL,NULL),(3754,'Bunch Number Considerations in the D0 Experiment','Regina Demina and Richard Partridge','','Richard Partridge','D033','DOC','PUBLIC','OTHER','$D0_PRI/3754/m_justify132ns.pdf','',2000,5,21,2451686,2000,6,5,2451701),(3755,'The D0 Run 2b Upgrade: Status and Plans','D0 Collaboration','','Richard Partridge','D033','DOC','PUBLIC','OTHER','$D0_PRI/3755/m_pac_june00.pdf','',2000,6,2,2451698,2000,6,5,2451701),(3756,'Measurement of the Forward-Backward Asymmetry in e+e- and mu+mu- events with D0 in Run II','John Ellison and John Rha','','John Ellison','WZ','PHYS','PUBLIC','POSTSCRIPT','$D0_PRI/3756/m_d0note3756_afb.ps','',2000,6,2,2451698,2000,6,2,2451698),(3757,'Testing the trigger logic in the \r\nDigital Front End Board\r\n','Kin Yip','','Kin Yip','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/3757/m_DFE_test.pdf','',2000,6,14,2451710,2000,9,6,2451794),(3758,'Simultaneous Calibration of Various Parts of the D0 Electromagnetic Calorimeter','E. Nagy, S. Negroni','','negroni','CALORIMETER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3758/m_note_cal_1506.ps','',2000,6,15,2451711,2000,6,15,2451711),(3759,'MCEN/MCCM Data Formats','Emanuel T. Machado and John M. Butler','','john butler','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3759/m_MCEN-MCCM_Data_Formats.ps','',2000,6,15,2451711,2000,6,15,2451711),(3760,'Requirements on the Silicon Ladders \r\nInstallation and Survey\r\n','Yu. Gershtein','','Yuri Gershtein','SILICON','MEMO','D0_PRIVATE','OTHER','\\\\d0server4\\users\\gerstein\\silicon\\requirements.doc','',2000,6,17,2451713,NULL,NULL,NULL,NULL),(3761,'The MCEN System','John M. Butler, Eric Hazen, Jason Kasper, Emanuel Machado, and Manas Maity','','john butler','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/3761/m_the_mcen_system_3761.pdf','',2000,7,3,2451729,2007,1,30,2454131),(3762,'The MCEN System','John M. Butler, Emanuel T. Machado, Salvatore Rappoccio','','john butler','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2000,7,3,2451729,NULL,NULL,NULL,NULL),(3763,'D0 forward trigger scintillation counters\r\n High Voltage system','Bezzubov V.A.\r\nInstitute for High Energy Physics, Protvino','The D0 forward muon trigger scintillation counters high voltage system is briefly described. Instructions for running high voltage program are presented.','Victor Bezzubov','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3763/m_3763.ps','',2000,7,4,2451730,2000,7,4,2451730),(3764,'High Energy Neutron Effects on D0 Silicon Microstrip Detector Components ','Richard Dower, Ulrich Heintz','','Ulrich Heintz','SILICON','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3764/m_Lowell_Test_Report.ps','',2000,7,11,2451737,2000,7,11,2451737),(3765,'Cosmic ray data analysis for the D0 preshower detector','P. Baringer et al.','','Suen Hou','PRESHOWER','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3765/m_note07_us.ps','',2000,7,12,2451738,2000,7,12,2451738),(3766,'Algorithm for track isolation calculation in L2CTT','Yuri Gershtein','','Yuri Gershtein','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3766/m_l2ctt1.ps','',2000,7,13,2451739,2000,8,3,2451760),(3767,'The D0 Run II Trigger Database','Elizabeth Gallas','','Elizabeth Gallas','TRIGGER','DOC','PUBLIC','POSTSCRIPT','','',2000,7,15,2451741,NULL,NULL,NULL,NULL),(3768,'Testing of the PDT Low Voltage Power Supply Modules for the Central Muon System at D0','A. Gutierrez','internal note','Diehl','MUON','MEMO','PUBLIC','OTHER','$D0_PRI/3768/m_lvpstest.doc','',2000,7,28,2451754,2000,7,28,2451754),(3769,'A Search for New Physics with the 2 Jets Plus Missing ET Final State Using Data from Runs 1B + 1C','Chris Hays','','Chris Hays','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3769/m_2jetsmet_lq_v51.ps','',2000,7,31,2451757,2001,4,30,2452030),(3770,'','','','Scintillator counter','MUON','','D0_PRIVATE','','','',2000,8,3,2451760,NULL,NULL,NULL,NULL),(3771,'Tape Technology for Run II','D. Amidei, J. Bakken, D. Benjamin, B. Blumenfeld, K. Chadwick, M. Diesburg, S. Fuess, K. Genser, S. Lammel, L.Lueking, J. Patrick, D. Petravick, D. Schamberger, H. Schellman, R. Thies, A. Walters','','Michael Diesburg','DATA_MANAGE','MEMO','D0_PRIVATE','POSTSCRIPT','','',2000,8,4,2451761,NULL,NULL,NULL,NULL),(3772,'Electroweak Production of Single Top Quarks at DZero','A.S. Belyaev, P.C. Bhat, E.E. Boos, L.V. Dudko, K. Gounder,\r\nA.P. Heinson, M.S. Mason, J.E. McDonald, H.B. Prosper,\r\nN.A. Sotnikova, S.J. Wimpenny','This is a physics note on the first single top\r\nquark search using classical cuts. Note was updated March 2001. Please use the pdf file for this note. AH','Ann Heinson','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3772/m_d0note_3772_singletop.ps','',2000,8,16,2451773,2003,9,26,2452909),(3773,'Replace the SIFT, MCM or AFE? Design of a \"new SIFT\" circuit.','B. Hoeneisen and Paul Rubinov','','Bruce Hoeneisen','PRESHOWER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3773/m_sift_description4.ps','',2000,8,21,2451778,2000,8,21,2451778),(3774,'Making Sense of the chi^2 comparison \r\nof the R32 measurement to JETRAD predictions','Elizabeth Gallas','','Elizabeth Gallas','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3774/m_mratio_ctest.ps','',2000,8,22,2451779,2000,8,23,2451780),(3775,'Testing PDT Front-End Board Connections for Central Muon System','Emily R. Wu','','Tom Diehl','MUON','MEMO','PUBLIC','OTHER','$D0_PRI/3775/m_emilypaper2.doc','',2000,8,23,2451780,2000,9,16,2451804),(3776,'D0 Forward Muon Scintillation Trigger Counters. Examine User\'s Guide.','Andrey Shchukin','Description of histograms as well as procedures how to link and run muo_examine program are presented.','Andrey Shchukin','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3776/m_examine.doc','',2000,9,11,2451799,2000,9,18,2451806),(3777,'Inclusive Jet Cross Section using the kT Algorithm','Sebastian Grinstein, Daniel Elvira, Ricardo Piegaia','','Sebastian Grinstein','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3777/m_kt_sec_46.ps','',2000,9,20,2451808,2001,6,25,2452086),(3778,'HTF: histogramming method for finding tracks. The algorithm description.','Alexander Khanov','','Alexander Khanov','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3778/m_alg.ps','',2000,9,23,2451811,2000,9,23,2451811),(3779,'L3TCFTTrack - a Level-3 CFT Tracking Tool','IC Dzero Group','','Raymond Beuselinck','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3779/m_note3779.ps','',2000,9,29,2451817,2000,9,29,2451817),(3780,'Summary of modifications to the SMT software readout/geometry','E. Barberis, E. Shabalina, S. Kulik, A. Solomin, T.Trippe','','Emanuela Barberis','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3780/m_si_mods.ps','',2000,10,9,2451827,2000,10,9,2451827),(3781,'XXXXXXXX','XXXXXXXX','It was put on by a mistake. I apologize.','XXXXXXXX','MUON','','D0_PRIVATE','POSTSCRIPT','','',2000,10,11,2451829,NULL,NULL,NULL,NULL),(3782,'Oracle Designer Tutorial:\r\nCreating an Oracle Database','Elizabeth Gallas','','Elizabeth Gallas','SOFTWARE_INFRA','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3782/m_OD_tutorial.ps','',2000,10,18,2451836,2000,11,20,2451869),(3783,'Reconstructed Track Information and its Utilization','Yuri Gershtein','','Yuri Gershtein','DATA_MANAGE','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3783/m_triso.ps','',2000,10,19,2451837,2000,10,19,2451837),(3784,'High voltage cable database','Shaohua Fu,\r\nMingcheng Gao','','Mingcheng Gao','CALORIMETER','MEMO','D0_PRIVATE','OTHER','$D0_PRI/3784/m_hv_doc.doc','',2000,10,19,2451837,2001,3,15,2451984),(3785,'Document on Calorimeter Preamp Motherboard V3.2','Mingcheng Gao','','Mingcheng Gao','CALORIMETER','MEMO','D0_PRIVATE','OTHER','$D0_PRI/3785/m_PreampMbd.pdf','',2000,10,19,2451837,2000,10,19,2451837),(3786,'Tests of Mini-Drift Tubes Octants','G. Alexeev, et.al.','','Dmitri Denisov','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3786/m_mdt_tests.doc','',2000,10,25,2451843,2000,10,25,2451843),(3787,'Tests of Mini-Drift Tubes Octants at D0','Yu.Kharzheev, V.Malyshev','','Dmitri Denisov','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3787/m_octants_test.doc','',2000,10,27,2451845,2000,10,27,2451845),(3788,'Reconstructing Track Trajectories for the FPD','Jorge Barreto (UFRJ/LAFEX) and Alexandr Drozdhin (Fermilab)','This memo describes the algorithm used for reconstructing a track trajectory for hits in the two quadrupoles detectores of the FPD System, using fiber id method given in D\\O\\ Note 3789.','Barreto, Jorge','QCD','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3788/m_track_fpd.ps','',2000,11,9,2451858,2000,11,15,2451864),(3789,'Detector Identification in the FPD System','Jorge Barreto (UFRJ/LAFEX)','This note describes the id method of optical fiber detectors that is included in the algorithm code that is being used for reconstructing track trajectories in the FPD system (D\\O\\ Note 3788)','Barreto, Jorge (UFRJ/LAFEX)','QCD','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3789/m_det_id.ps','',2000,11,9,2451858,2000,11,15,2451864),(3790,'Acceptance Studies for the FPD','Jorge Barreto (UFRJ/LAFEX) and Jose Montanha (UNICAMP/LAFEX)','In this note we present a study of the geometrical acceptance for the FPD quadrupole and dipole detectors, based on track reconstruction outlined in D\\O\\ Notes 3788 and 3789.','Barreto, Jorge','QCD','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3790/m_accept_tot.ps','',2000,11,9,2451858,2000,11,15,2451864),(3791,'Review on Neural Networks for Higgs Physics at D0','Silvia Tentindo-Repond','Internal Note','Silvia Tentindo-Repond','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3791/m_NNHiggs.ps','',2000,11,10,2451859,2002,12,10,2452619),(3792,'D0 Detector magnets for Run II: geometry, currents and B-H curves','Denisov, Ito, Klioukhine, Korablev, Smith, Stefanik, Yamada','Run II D0 magnets geometry, currents and magnetization\r\n curves necessary for calculations of the magnetic field\r\n map are summarized in this D0 Note.','V. Korablev','MUON','DOC','D0_PRIVATE','POSTSCRIPT','/RunII/home/room1/korablev/m_d0note3792.ps','',2000,11,17,2451866,2000,11,30,2451879),(3793,'Report of the Run 2b Silicon Review Panel','Hal Evans, Jim Fast, Frank Filthaut, Eric Kajfasz, Ron Lipton, Darien Wood','','Darien Wood','D033','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3793/m_d0note3793.ps','',2000,11,21,2451870,2000,12,5,2451884),(3794,'Top Quark Mass Measurements Using Neural Networks','Suman Beri, Rajwant Kaur','','Suman Beri','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3794/m_3794.pdf','',2000,11,26,2451875,2000,11,26,2451875),(3795,'Results for Silicon Microstrip Detector Testing at Micron','Andrew Cooper','','Andrew Cooper','SILICON','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3795/m_micron.ps','',2000,11,28,2451877,2000,12,28,2451907),(3796,'Single superpartner production at Tevatron Run II','F. Deliot, G. Moreau, C. Royon','','Christophe Royon','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3796/m_chr.ps','',2000,11,29,2451878,2000,11,29,2451878),(3797,'\r\nCalculations of MDT Time-to-Distance relation with GARFIELD.\r\n','D.Denisov, Yu.Yatsunenko.','The affect of the variations in the high voltage, composition of gas mixture of and admixture of oxygen and water on the R(t) relation for Mini Drift Tubes are calculated by the GARFIELD.','Yatsunenko Yuriy','MUON','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3797/m_rt.doc','',2000,11,30,2451879,2000,11,30,2451879),(3798,'Vertex finding prior to tracking in magnetic field.','Yatsunenko Yuriy','','Yatsunenko Y.','ALGORITHMS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/3798/m_vz2.doc','',2000,12,1,2451880,2000,12,1,2451880),(3799,'Argon purity measurements with the Argon Test Cell for Run II','A.Besson, Y. Carcagno, G. Mondin, G. Sajot','Measurement of the oxygen equivalent pollution of the D0 liquid argon stored in the dewar.','sajot','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3799/m_argonpurity_1.ps','',2000,12,6,2451885,2000,12,8,2451887),(3800,'Scintillator Front End (SFE) Hatdware Manual','C.Rotolo,T.Fitzpatrick,K.Bowie,V.Podstavkov,X.Chen','Description of the muon Scintillator Front End VME board design including hardware and firmware','B.Baldin','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3800/m_SFE_Manual.PDF','',2000,12,6,2451885,2001,1,24,2451934),(3801,'Scintillator Readout Controller (SRC) Hardware Manual','C.Rotolo,T.Fitzpatrick,K.Bowie,V.Podstavkov,X.Chen','Description of the muon Scintillator Readout Controller VME board design including hardware and firmware','B.Baldin','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3801/m_SRC_Manual.PDF','',2000,12,6,2451885,2001,1,24,2451934),(3802,'Track and Cluster Matching Window Optimization','Yildirim D. Mutaf, Levan Babukhadia, Paul D. Grannis','','YILDIRIM MUTAF','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3802/m_note3802.ps','',2000,12,8,2451887,2001,1,19,2451929),(3803,'What do we know about radiation damage in silicon detectors?','SuYong Choi and Frank Lehner','','Frank Lehner','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3803/m_lifetime.ps','',2000,12,11,2451890,2000,12,12,2451891),(3804,'The phenomenology of the micro discharge effects on DZERO silicon modules ','Frank Lehner','','Frank Lehner','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3804/m_micro.ps','',2000,12,12,2451891,2000,12,12,2451891),(3805,'','','','G. Obrant','','','D0_PRIVATE','','','',2000,12,12,2451891,NULL,NULL,NULL,NULL),(3806,'Study of the multiple jet production in the low E_T region. ','G. Obrant and H. T. Diehl ','unpublished d0note','G. Obrant','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3806/m_qcdnote_III.ps','',2000,12,12,2451891,2000,12,12,2451891),(3807,'The Tag-Rate Function in Top to All Jets ','Brian Connolly','','Brian Connolly','TOP','','D0_PRIVATE','POSTSCRIPT','d0cha:/prj_root/763/r1a_1/alljets/d0notes/tagrate_d0note_revised/tagrate_d0note_revised.ps','',2000,12,14,2451893,NULL,NULL,NULL,NULL),(3808,'Global Track Finding at Level 3','Daniel Whiteson','','Daniel Whiteson','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3808/m_3808.ps','',2000,12,14,2451893,2001,1,22,2451932),(3809,'The FAMUS MDT EXAMINE Guide ','Yatsunenko Yu.A. ','The installation and running of the MDT Examine package is described.','Yatsunenko Yu.A.','MUON','DOC','D0_PRIVATE','','','',2000,12,15,2451894,NULL,NULL,NULL,NULL),(3810,'Results of Silicon Microstrip Testing at Micron','Andrew Cooper','','Andrew Cooper','SILICON','','D0_PRIVATE','POSTSCRIPT','','',2000,12,22,2451901,NULL,NULL,NULL,NULL),(3811,'Understanding the improvement in the calculation of the\r\ntop-quark mass using the full matrix element. ','Juan Estrada, University of Rochester\r\nGaston Gutierrez, Fermilab','','Juan Estrada','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3811/m_smalltest.ps','',2000,12,27,2451906,2001,1,26,2451936),(3812,'Search for R-parity violating SUSY in the mu mu + jets channel','Sudeshna Banerjee','','Sudeshna Banerjee','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3812/m_run1_rpmu_v2.ps','',2001,1,2,2451912,2001,1,31,2451941),(3813,' A Toy Calorimeter Package for the D0 fast Monte Carlo package PMCS','Sudeshna Banerjee, Supriya Jain','','Sudeshna Banerjee','MC','DOC','D0_PRIVATE','POSTSCRIPT','','',2001,1,2,2451912,NULL,NULL,NULL,NULL),(3814,'Calorimeter-Based Cosmic Ray Rejection','Chris Hays','','Chris Hays','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3814/m_cosmic_note.ps','',2001,1,7,2451917,2001,1,19,2451929),(3815,'The Applicability of Missing ET Significance to the Two Jets Plus Missing ET Data Set','Chris Hays','','Chris Hays','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3815/m_pmet_note.ps','',2001,1,8,2451918,2001,4,30,2452030),(3816,'Search for Electroweak Production of Single Top Quarks\r\nat DZero','A.P. Heinson','To appear in the proceedings of the Meeting of the Division\r\nof Particles and Fields of the American Physical Society,\r\nThe Ohio State University, Columbus, Ohio, August 2000.','Ann Heinson','TOP','PUB','PUBLIC','POSTSCRIPT','$D0_PRI/3816/m_dpf2000_preprint.ps','',2001,1,11,2451921,2001,4,16,2452016),(3817,'A Search for Single Top Quark Production at DZero','A.P. Heinson','To appear in the proceedings of the XVth International\r\nWorkshop on High Energy Physics and Quantum Field Theory,\r\nTver, Russia, September 2000.','Ann Heinson','TOP','PUB','PUBLIC','POSTSCRIPT','$D0_PRI/3817/m_qfthep2000_preprint.ps','',2001,1,11,2451921,2001,4,16,2452016),(3818,'Search for Electroweak Production of Single Top Quarks in ppbar Collisions','DZero Collaboration','Phys. Rev. D 63, 031101(R) (2001)','Ann Heinson','TOP','PUB','PUBLIC','POSTSCRIPT','','',2001,1,11,2451921,NULL,NULL,NULL,NULL),(3819,'Test posting of D0Notes after kerberos authentication.','Alan M Jonckheere','Never published, just a test','Alan Jonckheere','','MEMO','D0_PRIVATE','TEXT','$D0_PRI/3819/m_test3819.txt','',2001,1,12,2451922,2002,12,11,2452620),(3820,'First Search for the 4 body decay of the Scalar Top Quark','Bob Olivier, Ursula Bassler, Gregorio Bernardi, Frederic Machefert','support for stop publication','Gregorio Bernardi','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3820/m_d0note.stop.4body.ps','',2001,1,12,2451922,2001,1,29,2451939),(3821,'A search for the \"stop -> b lepton sneutrino\" Decay of the Scalar Top Quark','Gregorio Bernardi, Bob Olivier','Support for stop publication','Gregorio Bernardi','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3821/m_d0note.stop.blsnu.ps','',2001,1,12,2451922,2001,1,29,2451939),(3822,'L3 Trigger: Clustering in the SMT','D.Bauer, R.Illingworth','Describes the algorithms and performance for the cluster finding in the SMT for the L3 trigger','Daniela Bauer','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3822/m_l3smtclustering.ps','',2001,1,15,2451925,2001,1,24,2451934),(3823,'Comments on Unbinned and Binned Likelihood Functions','Jianming Qian','','Jianming Qian','WZ','MEMO','D0_PRIVATE','POSTSCRIPT','','',2001,1,15,2451925,NULL,NULL,NULL,NULL),(3824,'Cosmic Ray Commissioning of the D0 forward muon\r\ntrigger scintillation counters','I. Vasilyev, V. Evdokimov, D. Denisov, V. Podstavkov','','I. Vasilyev','MUON','DOC','D0_PRIVATE','TEXT','$D0_PRI/3824/m_o.ps','',2001,1,16,2451926,2001,3,29,2451998),(3825,' ',' ','','','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','','',2001,1,16,2451926,NULL,NULL,NULL,NULL),(3826,' ',' ','','','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','','',2001,1,16,2451926,NULL,NULL,NULL,NULL),(3827,'Argon purity measurements of the CC and North EC with the Argon Test Cell','A. Besson, G. Bosson, G. Sajot','','sajot','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3827/m_argon_dec2000.ps','',2001,1,18,2451928,2001,2,3,2451944),(3828,'b-tagging with electrons using the road method','F. Beaudette and J.-F. Grivaz','A simple b-jet tagging algorithm based on electrons identified using the road method is described. The performance in terms of efficiency and purity is estimated.','Jean-Francois Grivaz','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3828/m_emid.ps','',2001,1,21,2451931,2001,1,21,2451931),(3829,'Raw Data Format and Unpacking for the SMT','R Illingworth','','Robert Illingworth','ALGORITHMS','DOC','D0_PRIVATE','','$D0_PRI/3829/m_smtrawdata.ps','',2001,1,23,2451933,2001,2,6,2451947),(3830,'The D0 Detector Upgrade and Physics Program','John Ellison','Paper presented at the 15th International Workshop on High Energy Physics and Quantum Field Theory, Tver, Russia, 14-20 September, 2000. See http://xxx.lanl.gov/abs/hep-ex/0101048','John Ellison','','','PUBLIC','POSTSCRIPT','http://xxx.lanl.gov/abs/hep-ex/0101048','',2001,1,27,2451937,NULL,NULL,NULL,NULL),(3831,'Higgs and B physics in Run II.','Valentin E. Kuznetsov','Invited plenary talk, to appear in the proceedings of the XVth International Workshop on High Energy Physics\r\nand Quantum Field Theory, Tver, Russia, 14th-20th September 2000.','Valentin E. Kuznetsov','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3831/m_qfthep2000.ps','',2001,1,29,2451939,2001,1,29,2451939),(3832,'Laser test of silicon detectors at D0.','F.K.Rizatdinova','','Flera Rizatdinova','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3832/m_laser_note.ps','',2001,2,2,2451943,2001,2,2,2451943),(3833,'EM Sampling Weights for the L1 Calorimeter Trigger','K.M. Chan, D.K. Cho, M. Zielinski, V.V. Zutshi','','Vishnu Zutshi','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3833/m_d0note_3883_v1.ps','',2001,2,6,2451947,2002,3,8,2452342),(3834,'Comments on Calorimeter Sampling Weights for the L1 Trigger Simulation','K.M. Chan, D.K. Cho, M. Zielinski, V.V. Zutshi','','K.M. Chan','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3834/m_comments_l1_cal_weights.ps','',2001,2,6,2451947,2003,2,7,2452678),(3835,'New Sets of Calorimeter Layer Weights for preco04 and p05','K.M. Chan, D.K. Cho, M. Zielinski, V.V. Zutshi','','K.M. Chan','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3835/m_new_weights_p04_p05.ps','',2001,2,6,2451947,2001,7,31,2452122),(3836,'$W$ boson mass measurement using electrons at the edge of CC\r\ncalorimeter modules.','Yaroslav Kulik','','Yaroslav Kulik','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3836/m_d0note_edge_v4_1.ps','',2001,2,11,2451952,2001,5,3,2452033),(3837,'D0 RunIIa Beam Loss Monitors','Syed Naeem Ahmed, Silke Duensing, Sijbrand de Jong, Axel Naumann, Bram Wijngaarden','','Bram Wijngaarden','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','','',2001,2,22,2451963,NULL,NULL,NULL,NULL),(3838,'First Search for Resonant Slepton Production through R-parity Violation at Tevatron Run I','A. Abdesselam, P. Petroff, C. Royon','','A. Abdesselam, P. Petroff, C. Royon','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3838/m_d0note_sneut_v04.ps','',2001,2,26,2451967,2001,4,5,2452005),(3839,'Measurement of the single event upset cross section in the SVX IIe chip','Aurelio Juste, Mani Tripathi, Bram Wijngaarden','Nucl. Instr. Meth. A 500 (2003), 371-378','Bram Wijngaarden','SILICON','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3839/m_seu.ps','',2001,3,1,2451970,2003,1,7,2452647),(3840,'Testing the SVX-2e: Methods and Results','Alan R. Clark and Peter M. Grudberg','','Alan R. Clark','DAQ_ELECTRONICS','DOC','PUBLIC','POSTSCRIPT','','',2001,3,1,2451970,NULL,NULL,NULL,NULL),(3841,'Electrical Production Testing of the D0 Silicon Microstrip \r\nTracker Detector Modules','D0 SMT production testing group. Written contributions by\r\nAsman, Clark, Gerber, Grudberg, Hall, Leflat, Nomokonov, Mihalcea, Rizatdinova, Shabalina, Sidwell, Zverev','internal d0 note that describes the production testing of\r\nthe D0 SMT detector modules for Run2A','Cecilia Gerber','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3841/m_3841.ps','',2001,3,1,2451970,2001,3,20,2451989),(3842,'Documentation for the \'Find_Jpsi_Ks\' software that \r\nsearches tracks and track pairs using the Fiber Tracker','Bruce Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','DOC','D0_PRIVATE','TEXT','$D0_PRI/3842/m_Find_Jpsi_Ks.doc','',2001,3,5,2451974,2001,3,5,2451974),(3843,'Multiple Interaction Rejection Studies for Diffractive Physics','W.P. Carvalho, A. Sznajder','Algorithms based on Luminosity Monitor information are defined and evaluated on Monte Carlo samples modelling diffractive processes and their associated backgrounds.','Wagner de Paula Carvalho','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3843/m_MI_Diffraction.ps','',2001,3,16,2451985,2001,3,16,2451985),(3844,'Leakage currents and noise expectations for Run2b','Frank Lehner','','Frank Lehner','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3844/m_run2b_leak.ps','',2001,3,19,2451988,2001,3,19,2451988),(3845,'Histogramming Track Finding Algorithm Performance Study','R. Demina, A. Khanov','internal D0 note','R. Demina','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/3845/m_tracking_eff.pdf','',2001,3,25,2451994,2001,4,12,2452012),(3846,'The construction and performance of the 6-chip silicon ladders for the DZERO silicon main tracker','Frank Lehner','','Frank Lehner','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3846/m_proj_90.ps','',2001,3,26,2451995,2001,3,26,2451995),(3847,'MDT Gas System','Tianchi Zhao','MDT gas system design and construction','Tianchi Zhao','MUON','DOC','D0_PRIVATE','OTHER','','',2001,3,27,2451996,NULL,NULL,NULL,NULL),(3848,'MDT Gas System','Tianchi Zhao','Design and construction of the MDT gas system','Tianchi Zhao, University of Washington','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3848/m_3848.pdf','',2001,3,27,2451996,2004,5,10,2453136),(3849,'SMT Barrel Assembly','S.Choi, W.Cooper, F.Fast, Yu.Gershtein, H.Jostlein, E.Kajfasz, S.Kesisoglou, G.Landsberg, A.Melnitchouk','','Gershtein','SILICON','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3849/m_nimnote.ps','',2001,3,27,2451996,2002,6,19,2452445),(3850,'Impact Parameter b-Jet Tagging','Frank Filthaut, Bram Wijngaarden','','Bram Wijngaarden','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3850/m_imptag.ps','',2001,3,28,2451997,2003,2,8,2452679),(3851,'Study of Resolution in Electron and Photon Position\r\nin the D0 Central Calorimeter for Run II','K.M. Chan, D.K. Cho, M. Zielinski, V.V. Zutshi','','DooKee Cho','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3851/m_3851.ps','',2001,4,2,2452002,2001,10,25,2452208),(3852,'','','','2615','','','D0_PRIVATE','','','',2001,4,10,2452010,NULL,NULL,NULL,NULL),(3853,'Trigger Equation and Error Calculations Using Analytical Techniques','','','2615','','','D0_PRIVATE','POSTSCRIPT','','',2001,4,10,2452010,NULL,NULL,NULL,NULL),(3854,'Trigger Equation and Error Calculations Using Analytical Techniques','','','3853','','','D0_PRIVATE','POSTSCRIPT','','',2001,4,10,2452010,NULL,NULL,NULL,NULL),(3855,'Histogramming Track Finder: the impact parameter b-tagging\r\nperformance','Regina Demina, Alexander Khanov','','Alexander Khanov','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3855/m_bt.ps','',2001,4,17,2452017,2001,4,18,2452018),(3856,'Search for Single Top Quark Production at DZero Using Neural Networks','E.E. Boos, L.V. Dudko, A.P. Heinson, N.A. Sotnikova','The is a physics analysis note, reviewed by EB 122.\r\nPlease use the pdf file. AH','Ann Heinson','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3856/m_d0note3856_singletopNN.ps','',2001,4,18,2452018,2002,8,14,2452501),(3857,'Jet Response from Gamma+Jet: Version 1.0','V. Bhatnagar','','Vipin Bhatnagar','','DOC','D0_PRIVATE','POSTSCRIPT','','',2001,4,20,2452020,NULL,NULL,NULL,NULL),(3858,'Level 1 and Level 2 Calorimeter Configuration','Robert Kehoe, Dean Schamberger, Reiner Hauser','','Robert Kehoe','TRIGGER','MEMO','D0_PRIVATE','TEXT','$D0_PRI/3858/m_L1L2CalPlan.txt','',2001,4,23,2452023,2001,5,11,2452041),(3859,'Using Muo_Examine program for the Forward Muon Scintillation Counters.','Andrey Shchukin','Installation, configuration and running muo_examine procedures for forward muon scintillation system are described.','Andrey Shchukin','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3859/m_3859.ps','',2001,4,24,2452024,2001,4,24,2452024),(3880,'The D0 Meta-Data Browser','Pushpa Bhat','Note','Pushpa Bhat','DATA_MANAGE','MEMO','D0_PRIVATE','OTHER','$D0_PRI/3880/m_d0meta.ps','',2001,6,20,2452081,2001,6,21,2452082),(3861,'D0 Muon Scintillator Gain Determination','S. Doulas, S.R. Dugad, A.S. Ito','','Al Ito','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3861/m_pmt-gain-det.ps','',2001,4,27,2452027,2001,6,15,2452076),(3862,'Measurement of the ratio of the differential cross sections\r\nfor W and Z boson production as a function of transverse momentum','Dylan Casey, Cecilia E. Gerber','','Cecilia Gerber','WZ','','D0_PRIVATE','POSTSCRIPT','','',2001,5,7,2452037,NULL,NULL,NULL,NULL),(3863,'Direct Measurement of the W Boson Decay Width in p-anti p collisions at sqrt(s) = 1.8 TeV.','Qichun Xu, Neeti Parashar, Bing Zhou','','Neeti Parashar','WZ','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3863/m_d0note_3863.ps','',2001,5,15,2452045,2001,6,25,2452086),(3864,'Test of MDT Prototype for the D0 Forward Muon System\r\n','G. Alexeev et.al.','Results of beam test of the Mini-Drift Tube (MDT) prototype based on Iarocci tubes are presented.','D. Denisov','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3864/m_MDTPrototype.doc','',2001,5,16,2452046,2001,9,26,2452179),(3865,'Measurments of Water Vapor Influence on Mini-Drift Tube Characteristics','G. Alexeev, G. Erusalimtsev, V. Malysev, D. Denisov','Influence of water cntamination in Ch4(10%)+Cf4(90%) gas mixture on D0 Mini-Drift Tubes operating characteristics are presented. Contamination below 1% does not affect MDT performance.','D. Denisov','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3865/m_WaterInfl.doc','',2001,5,16,2452046,2001,9,26,2452179),(3866,'Topological Vertex Reconstruction at D0','S.Grinstein, C.Gerber, R.Piegaia','','Sebastian Grinstein','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3866/m_vtx_topo_note.ps','',2001,5,17,2452047,2001,5,22,2452052),(3867,'Subjet Multiplicity of Quark and Gluon Jets Reconstructed\r\nwith the $k_{\\perp}$ Algorithm in $p\\bar{p}$ Collisions','Rob Snihur','Thesis','snihur','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','','',2001,5,24,2452054,NULL,NULL,NULL,NULL),(3868,'The Ratio of the Direct Photon Production Cross Section \r\nat 630 GeV and at 1800 GeV','Mike Strauss','','Mike Strauss','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3868/m_note_3868.ps','',2001,5,29,2452059,2001,5,29,2452059),(3869,'Shopping list for Run II','Bruce Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3869/m_interesting_runII.ps','',2001,5,29,2452059,2001,6,5,2452066),(3870,'Low Energy Electron Identification in D0','F. Fleuret','','Fleuret','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3870/m_soft.ps','',2001,5,29,2452059,2001,5,29,2452059),(3871,'General Purpose VHDL TestBench','Levan Babukhadia','','Levan Babukhadia','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3871/m_TB.ps','',2001,5,31,2452061,2001,6,14,2452075),(3872,'The D0 Soft Electron Reconstruction Package SEMReco','F. Fleuret, F. Beaudette, S. Protopopescu','','fleuret','CALORIMETER','DOC','D0_PRIVATE','','$D0_PRI/3872/m_SEMReco.ps','',2001,6,4,2452065,2001,6,4,2452065),(3873,'D0 muon system scintillation counters front-end crates low voltage power supply and temperature monitoring','Vladimir Lipaev','Describes on-line software for low voltage and temperature monitoring of muon system trigger counters front-end crates.','Vladimir Lipaev','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3873/m_Monitor_note_3873.ps','',2001,6,4,2452065,2001,6,6,2452067),(3874,'A Comparison of the Magnetic Field Programs TOSCA and\r\nGFUN3D for the Run II D0 Detector Magnet System','D.Denisov, V.Klioukhine, V.Korablev, R.P.Smith, R.Yamada','','V.Korablev','MUON','DOC','D0_PRIVATE','','$D0_PRI/3874/m_d0note3874.ps','',2001,6,14,2452075,2001,6,21,2452082),(3875,'User\'s guide for the D0 magnetic field map access software in Run II','V.Korablev, V.Koreshev','','V.Korablev','MUON','DOC','D0_PRIVATE','','$D0_PRI/3875/m_d0note3875.ps','',2001,6,14,2452075,2001,6,24,2452085),(3876,'','','','3859','','','D0_PRIVATE','','','',2001,6,14,2452075,NULL,NULL,NULL,NULL),(3877,'','Shchukin','','bandurin','','','D0_PRIVATE','','','',2001,6,14,2452075,NULL,NULL,NULL,NULL),(3878,'','Shchukin','','bandurin','MUON','','D0_PRIVATE','POSTSCRIPT','','',2001,6,14,2452075,NULL,NULL,NULL,NULL),(3879,'Electronics cabling of the Mini-Drift Tubes System.','D.Denisov, A.Lobodenko, P.Neustroev, V.Tokmenin, L.Uvarov\r\n','This note describes relation between front-end electronics data and physical location of wires in MDT octants.','Valeri Tokmenin','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3879/m_MDT_map.ps','',2001,6,19,2452080,2001,6,19,2452080),(3881,'L1FE VHDL Design','Levan Babukhadia, Satish Desai, Manuel I. Martin','','Levan Babukhadia','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3881/m_l1fe.ps','',2001,6,24,2452085,2001,7,20,2452111),(3882,'L3 Sender VHDL Design','Satish Desai','','Levan Babukhadia','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2001,6,24,2452085,NULL,NULL,NULL,NULL),(3883,'Search for Light Stop Production using Run 1B & 1C data sets.','Carl Lundstedt','','Carl Lundstedt','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3883/m_d0note_3883.ps','',2001,6,25,2452086,2002,7,18,2452474),(3884,'Identification of Electrons Near Jets for Run 1','C.L. Hebert, P.S. Baringer and S.Y. Youssef','','Christina L. Hebert','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3884/m_etagging.ps','',2001,6,27,2452088,2001,6,27,2452088),(3885,'A New 3-Dimensional Cone Track-Clustering Algorithm','Ariel Schwartzman, Meenakshi Narain','','Ariel Schwartzman','ALGORITHMS','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3885/m_jet.ps','',2001,6,27,2452088,2001,7,3,2452094),(3886,'MIL 1553B Control and Monitor Software for MDT Front End\r\nElectronics','A.Lobodenko','A brif description of the software developed to control and to monitor the MDT front end electronics via MIL 1553B network is presented.','Alexandre Lobodenko','MUON','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3886/m_note_3886.ps','',2001,7,2,2452093,2004,6,16,2453173),(3887,'An Object-Oriented Framework for Physics Analysis from ROOT Tuples','Ariel Schwartzman, Meenakshi Narain, Qizhong Li','','Ariel Schwartzman','ALGORITHMS','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3887/m_root.ps','',2001,7,2,2452093,2001,7,3,2452094),(3888,'The D0 Electron/Photon Analysis Package EMAnalyze','F. Fleuret','','fleuret','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3888/m_EMAnalyze.ps','',2001,7,10,2452101,2001,7,20,2452111),(3889,'Visible Light Photon Counter (VLPC) absolute quantum\r\nefficiency and saturation','Bruce Hoeneisen and Don Lincoln','','Bruce Hoeneisen','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3889/m_bruce.pdf','',2001,7,18,2452109,2001,7,19,2452110),(3890,'D0 Build System Frequently Asked Questions','David J. Ritchie','','David J. Ritchie','SOFTWARE_INFRA','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3890/m_BuildSystem.ps','',2001,7,19,2452110,2001,7,19,2452110),(3891,'Helicity of the W in Single-Lepton ttbar Events','Florencia Canelli, Juan Estrada, Gaston Gutierrez','','Florencia Canelli','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3891/m_top.ps','',2001,7,23,2452114,2001,7,30,2452121),(3892,'Time-to-Distance Relationship for the D0 Proportional Drift Tubes PDTs using Garfield.','Bernardo Gomez','Detailed computer simulation of a PDT cell to derive a relation for the muon hit position at cell midplane as a function of the incident muon track angle and of the measured electron drift time.','Bernardo Gomez','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3892/m_PDT_TvsX.ps','',2001,7,24,2452115,2001,7,27,2452118),(3893,'Unpacking of the Timing & Control Crate Data for the D? Calorimeter ','Mrinmoy Bhattacharjee','','Mrinmoy Bhattacharjee','CALORIMETER','DOC','D0_PRIVATE','OTHER','','',2001,8,3,2452125,NULL,NULL,NULL,NULL),(3894,'Unpacking of Pulser Interface Board Data for the D? Calorimeter Pulser','Mrinmoy Bhattacharjee','','Mrinmoy Bhattacharjee','CALORIMETER','DOC','D0_PRIVATE','OTHER','','',2001,8,3,2452125,NULL,NULL,NULL,NULL),(3895,'mETRx: A MissingET Revertexing Tool','Joseph Steele and Robert Hirosky','','Joseph Steele','SOFTWARE_INFRA','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3895/m_d0note_3895.ps','',2001,8,14,2452136,2001,10,10,2452193),(3896,'','lizarazo','','Juan Lizarazo','','','D0_PRIVATE','','','',2001,8,16,2452138,NULL,NULL,NULL,NULL),(3897,'SIFT timing performance','Paul Rubinov and Bruce Hoeneisen','','Bruce Hoeneisen','FIBER_TRACKER','DOC','D0_PRIVATE','TEXT','$D0_PRI/3897/m_sift.txt','',2001,8,20,2452142,2001,8,20,2452142),(3898,'Design of the new MCM','P. Rubinov and B. Hoeneisen','','Bruce Hoeneisen','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3898/m_MCM.ps','',2001,8,20,2452142,2001,8,20,2452142),(3899,'Numbering schemes for the D0 SMT','Freya Blekman','','Freya Blekman','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3899/m_SMT_numbering_schemes.ps','',2001,8,20,2452142,2001,9,28,2452181),(3900,'Search for R-parity violation at D0','Frederic Deliot','talk given at SUSY\'01 (9th International Conference on Supersymmetry and Unification of Fundamental Interactions)\r\nJune 11-17 2001, Dubna','deliot','NEW','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3900/m_susy01.ps','',2001,8,31,2452153,2001,8,31,2452153),(3901,'Muon Segment Reconstruction - Linked List Algorithm','O. Peters','','Onne Peters','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3901/m_MuonSegmentReconstruction.doc','',2001,9,1,2452154,2001,9,1,2452154),(3902,'Search for mSUGRA Signature in the electron + jets + Missing Et in the ppbar collisions at sqrt(s)=1.8 TeV','John Zhou','Not published','John Zhou','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3902/m_note.ps','',2001,9,10,2452163,2001,9,10,2452163),(3903,'','Fleuret','','Cousinou','CALORIMETER','','D0_PRIVATE','POSTSCRIPT','','',2001,9,19,2452172,NULL,NULL,NULL,NULL),(3904,'Central Muon Timing and T0\'s Early in Run 2','H. T. Diehl, M. Wobisch, D. Wood','Technical information.','Diehl','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3904/m_timing.ps','',2001,9,22,2452175,2002,2,6,2452312),(3905,'Feasibility Testing of the Radiation Hardened Transceiver \r\nChip for use in the D0 Run2b Upgrade Project at Fermilab','John Ledford, Chris Owen, Wells Crandall, Jeremy Wade,\r\nXin Zhao, Alice Bean\r\n University of Kansas','','Alice Bean','SILICON','PUB','D0_PRIVATE','OTHER','$D0_PRI/3905/m_d0note3905.pdf','',2001,9,26,2452179,2001,11,5,2452219),(3906,'Primary Vertex Selection','Ariel Schwartzman and Meenakshi Narain','','sch','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3906/m_pv.ps','',2001,9,28,2452181,2001,9,28,2452181),(3907,'Vertex Fitting by means of the Kalman Filter techinque','Ariel Schwartzman, Meenakshi Narian','','Ariel Schwartzman','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','','',2001,9,28,2452181,NULL,NULL,NULL,NULL),(3908,'Secondary Vertex Reconstruction using the Kalman Filter','Ariel Schwartzman and Meenakshi Narain','','Ariel Schwartzman','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3908/m_vertex.ps','',2001,9,28,2452181,2001,9,29,2452182),(3909,'Secondary Vertex b-tagging using the Kalman Filter Algorithm','Ariel Schwartzman and Meenakshi Narain','','Ariel Schwartzman','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3909/m_btag.ps','',2001,9,28,2452181,2001,9,29,2452182),(3910,'b-jet identification in W+Higgs events using secondary vertex b-tagging','Ariel Schwartzman and Meenakshi Narain','','Ariel Schwartzman','ALGORITHMS','DOC','D0_PRIVATE','','$D0_PRI/3910/m_btagHiggs.ps','',2001,9,28,2452181,2001,9,29,2452182),(3911,'MCFAST Studies of the Run2b Silicon Tracker','R. Lipton, L.Stutte','','Ronald Lipton','SILICON','MEMO','D0_PRIVATE','POSTSCRIPT','','',2001,10,4,2452187,NULL,NULL,NULL,NULL),(3912,'Testing and characterization of VLPC cassettes','Volker Buescher, Florencia Canelli, Dookee Cho, Bill Davis, Juan Estrada Vigil, George Ginther, Ariel Schwartzman, Naresh Sen, Philip Yoon','','Juan Estrada','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3912/m_cass.ps','',2001,10,12,2452195,2001,10,12,2452195),(3913,'Run 2b Trigger Task Force Report','Abbott, Abolins, Alton, Babukhadia, Baden, Bhatnagar, Borcherding, Butler, Bystricky, Chopra, Edmunds, Filthaut, Gershtein, Ginther, Heintz, Hildreth, Hirosky, Johns, Johnson, Kehoe, Le Du, Linnemann, Partridge, Petroff, Perez, Schamberger, Stevenson, Tuts, Zutshi','','Richard Partridge','TRIGGER','DOC','D0_PRIVATE','OTHER','','',2001,10,15,2452198,NULL,NULL,NULL,NULL),(3914,'Optimisation of the D0 Online Calorimeter Calibration for RunII','Ronic Chiche, Christophe de la Taille, Yves Jacquier, Gisele Martin, Pierre Petroff, Melissa Ridel','A complete simulation of the calibration and physics signal shapes has been performed. A method to correct the variation of the physics signal with an accuracy better than 1% is proposed.','Melissa Ridel','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3914/m_cal_opti_note_3914.ps','',2001,10,17,2452200,2001,10,17,2452200),(3915,'D0 SMT Radiation Protection System','S. N. Ahmed, R. Lipton, B. Wijngaarden, S. Duensing, A. Naumann, S. de Jong','','S. N. Ahmed','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3915/m_d0_radmon_full_3915.ps','',2001,10,25,2452208,2001,10,26,2452209),(3916,'Study of Resolution in Electron and Photon Position\r\nin the D0 forward Calorimeter for Run II','K.M. Chan, D.K. Cho, M. Zielinski, V.V. Zutshi','','DooKee Cho','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2001,10,25,2452208,NULL,NULL,NULL,NULL),(3917,'Investigation of non-reconstructed tracks for\r\nB_s -> D_s + pi','Raymond Gelhaus','','Raymond Gelhaus','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','','',2001,10,29,2452212,NULL,NULL,NULL,NULL),(3918,'Testing the Standard Model at the Fermilab Tevatron','Martin Gruenewald, Ulrich Heintz, Meenakshi Narain, Michael Schmitt','Contribution to the proceedings of the Snowmass Workshop 2001','Ulrich Heintz','','PUB','D0_PRIVATE','OTHER','','',2001,11,8,2452222,NULL,NULL,NULL,NULL),(3919,'Track-Jet Studies Using a 3-Dimensional Simple Cone Jet Algorithm','Ariel Schwartzman, Meenakshi Narain','','A. Schwartzman','ALGORITHMS','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3919/m_jet2.ps','',2001,11,27,2452241,2001,11,27,2452241),(3920,'Measurement of Dijet Transverse Thrust cross sections','Veronica Sorin, Daniel Elvira, Ricardo Piegaia','','Veronica Sorin','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','','',2001,12,2,2452246,NULL,NULL,NULL,NULL),(3921,'Top Results from the Tevatron','Emanuela Barberis','Proceedings of \"Les Reconstres de Physique de la Vallee\r\nd\'Aoste, LaThuile, March 2001','Emanuela Barberis','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3921/m_d0note3921.ps','',2001,12,10,2452254,2001,12,10,2452254),(3922,'CPSReco: An Initial Study of Performance Versus RCP Parameters','J. Gardner, D. Coppage and P. Baringer','','John Gardner','PRESHOWER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3922/m_CPSReco_RCP_study.ps','',2001,12,12,2452256,2002,1,22,2452297),(3923,'The CellNN algorithm: cell level clustering in the D0 calorimeter','Laurent Duflot and Melissa Ridel','','Laurent Duflot','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3923/m_d0note3923.ps','',2001,12,12,2452256,2002,1,9,2452284),(3924,'','','','burdin','CALORIMETER','','D0_PRIVATE','','','',2001,12,20,2452264,NULL,NULL,NULL,NULL),(3925,'The Central Tracker Trigger System of D0','Silvia Tentindo Repond','','Silvia Tentindo Repond','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3925/m_D0NotePosted.ps','',2001,12,20,2452264,2002,3,19,2452353),(3926,'Jet Studies in Top and Higgs Events','S. Grinstein and V. Zutshi','','S. Grinstein','TOP','PHYS','D0_PRIVATE','','$D0_PRI/3926/m_jethit_note.ps','',2001,12,25,2452269,2001,12,27,2452271),(3927,'An energy flow algorithm for D0','Laurent Duflot and Melissa Ridel','','Laurent Duflot','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3927/m_d0note3927.ps','',2002,1,2,2452277,2002,1,14,2452289),(3928,'Heavy Flavour Production at the Tevatron','Phillip Gutierrez','Proceedings of the International Europhysics Conference on HEP (Budapest, Hungary) July 2001.','Phillip Gutierrez','B_PHYSICS','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3928/m_hvy_flvr.ps','',2002,1,3,2452278,2002,1,3,2452278),(3929,'Comments on Possible Priors in Charged-Higgs Search','Phillip Gutierrez','','Phillip Gutierrez','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3929/m_priors.ps','',2002,1,3,2452278,2002,1,3,2452278),(3930,'Notes of Central Muon Scintillator Counters','Huishun Mao','','Huishun Mao','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3930/m_note3930.doc','',2002,1,4,2452279,2002,1,7,2452282),(3931,'The Control Architecture of the D0 Experiment','J. Frederick Bartlett, Stanislaw Krzywdzinski, Geoffrey Savage, Vladimir I. Sirotenko, and Dehong Zhang','To appear as paper TUCT005 in the proceedings of ICALEPCS 2001; San Jose, California; November 2001','J. Frederick Bartlett','ONLINE','PUB','D0_PRIVATE','OTHER','$D0_PRI/3931/m_ICALEPCS2001.pdf','',2002,1,7,2452282,2002,1,7,2452282),(3932,'FAMUS J/psi Studies with Pre-shutdown Data','Frederic Deliot, Paul Balm','','deliot','MUON','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3932/m_jpsi.ps','',2002,1,9,2452284,2002,1,9,2452284),(3933,'A Search for Large Extra Dimensions in the Monojet + Missing Et Final state in sqrt(s)=1.8 TeV ppbar Collisions at D0','Hai Zheng','not published','Hai Zheng','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3933/m_note31.ps','',2002,1,9,2452284,2002,5,2,2452397),(3934,'Central Track Matching of Muon Track at Level 3','Paul Balm','d0_private','Paul Balm','MUON','DOC','D0_PRIVATE','','$D0_PRI/3934/m_L3CentralTrackMatching_v30.pdf','',2002,1,14,2452289,2002,1,21,2452296),(3935,'Magnetic Field Force Calculations \r\nOn Central Iron \r\nDuring Open Conditions','Marvin Johnson, David Huffman','','David Huffman','','ANAL','D0_PRIVATE','OTHER','$D0_PRI/3935/m_toroidanalysis.pdf','',2002,1,16,2452291,2002,1,24,2452299),(3936,'A Proposal for D?? Remote Analysis Model (D??RAM)','J. Yu, A. Dattatreya, K. De, K. Gopalratnam, D. Meyer, V. Kaushik, M. Sosebee, T. Wlodek ','University of Texas at Arlington','Jae Yu','SOFTWARE_INFRA','DOC','D0_PRIVATE','OTHER','','',2002,1,21,2452296,NULL,NULL,NULL,NULL),(3937,'User Interface to Find the Luminosity Blocks Corresponding to Data Files','Heidi Schellman, Maciej Przybycien, Sunghwan Ahn, Michael Begel, Gregor Geurkov, Alex Kupco\r\nJohn Hauptman, Sehwook Lee, Prolay Mal, Jaewon Park,Rich Partridge, Marco Verzocchi','','schellman','SOFTWARE_INFRA','DOC','D0_PRIVATE','OTHER','','',2002,1,30,2452305,NULL,NULL,NULL,NULL),(3938,'Good and Bad Muon Global Runs Early in Run II','Diehl, Abazov, McCroskey','','H T Diehl','MUON','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3938/m_runs_postshut_feb.ps','',2002,2,4,2452310,2002,3,12,2452346),(3939,'Forces on CF yoke West and East sides in magnetic field of the D0 detector','V. Korablev','Calculation of forces acting on CF yoke West and East \r\nsides in magnetic field of the D0 detector is done using the volume integrals method.','V. Korablev','MUON','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3939/m_d0note.ps','',2002,2,4,2452310,2002,2,6,2452312),(3940,'A propagator tool for the L3 trigger','Duperrin Arnaud, CPPM, IN2P3-CNRS, Marseille','','Duperrin Arnaud ','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3940/m_l3fpropagator.ps','',2002,2,5,2452311,2002,3,4,2452338),(3941,'Work on the Radiation Monitoring at D0','Bastiaan Warnaar','','Sijbrand de Jong','SILICON','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/3941/m_d0note3941.ps','',2002,2,6,2452312,2002,2,6,2452312),(3942,'Top group ROOT tuples selection and Data Quality Monitoring','Barberis, Choi, Gerber, Iashvili, Klute, Quadt, Schwartzman','','barberis','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3942/m_selection.ps','',2002,2,13,2452319,2002,2,13,2452319),(3943,'Search for ttbar resonance using D0 Run 1 data at Tevatron.','Supriya Jain, Naba K. Mondal, Dhiman Chakraborty','EB143 has been set up for the analysis. Plans to\r\nsubmit a paper for publication in PRL, once the analysis \r\nis approved by the EB.\r\n','Supriya Jain','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3943/m_d0note3943.ps','',2002,2,14,2452320,2003,4,9,2452739),(3944,'The Capacitance Calculation and Estimates of Total Noise for SMT Layer 0','Kazu Hanagaki','','Kazu Hanagaki','SILICON','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3944/m_capacitance_cable.ps','',2002,2,14,2452320,2002,2,14,2452320),(3945,'Verification of the Lorentz angle value using SMT data','R. Demina, J. Hernandez, A. Khanov, F. Rizatdinova, A. Nomerotski','','regina demina','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3945/m_D0note_lorentz.ps','',2002,2,19,2452325,2002,4,25,2452390),(3946,'Electron Fake Rate from QCD background for RunII','Shaohua Fu, Vishnu Zutshi','','Shaohua Fu','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2002,2,23,2452329,NULL,NULL,NULL,NULL),(3947,'Monte Carlo Reconstruction Study of $B_{s}^0 \\rightarrow D_{s}^\\pm + \\pi^\\mp$}','Raymond Gelhaus','','Raymond Gelhaus','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3947/m_Bsstudies.ps','',2002,2,27,2452333,2002,2,27,2452333),(3948,'photon+jet process application for setting the absolute jet energy and determining the gluon distribution at the Tevatron Run II.','D.V.Bandurin, N.B.Skachkov','','D.V.Bandurin, N.B.Skachkov','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3948/m_gamjet.ps','',2002,3,1,2452335,2002,3,1,2452335),(3949,'Measurements of Level 1 Trigger Efficiencies from D0 Data','Markus Klute, Arnulf Quadt','','Arnulf Quadt, Markus Klute','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3949/m_d0note_3949.ps','',2002,3,5,2452339,2002,3,5,2452339),(3950,'Tuning of Run II PDT deltaT Measurements','David Hedin','','David Hedin','MUON','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3950/m_D0Note3950.ps','',2002,3,5,2452339,2002,3,5,2452339),(3951,'Expanded Run 2B Silicon Simulation Studies for the December 2001 TDR ','F. Rizatdinova, E. Chabalina, A. Khanov, T. Bolton, R. Demina, R. Lipton, L. Stutte','','Tim Bolton','SILICON','MEMO','D0_PRIVATE','OTHER','$D0_PRI/3951/m_tdr-d0note.doc','',2002,3,7,2452341,2002,3,8,2452342),(3952,'Study of the Level 3 J/psi Electron Trigger for \r\nB -> J/psi + Ks, where J/psi -> ee Final States ','Abid Patwa, Michael Rijssenbeek, and Andre S. Turcot','','Abid Patwa','B_PHYSICS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3952/m_L3jpsi_d0note.ps','',2002,3,13,2452347,2002,3,13,2452347),(3953,'ICD High Voltage System','Alan L. Stone','','Alan L. Stone','CALORIMETER','DOC','D0_PRIVATE','OTHER','','',2002,3,13,2452347,NULL,NULL,NULL,NULL),(3954,'ICD Low Voltage Safety Report','Alan L. Stone, Dave Huffman','','Alan L. Stone','CALORIMETER','DOC','D0_PRIVATE','OTHER','','',2002,3,13,2452347,NULL,NULL,NULL,NULL),(3955,'ICD Scintillator LED Pulser Calibration System','Alan L. Stone','','Alan L. Stone','CALORIMETER','DOC','D0_PRIVATE','OTHER','','',2002,3,13,2452347,NULL,NULL,NULL,NULL),(3956,'ICD Channel Map: Calorimeter Electronics Address to Detector\r\nPhysics Coordinate','Alan L. Stone','','Alan L. Stone','CALORIMETER','DOC','D0_PRIVATE','OTHER','','',2002,3,13,2452347,NULL,NULL,NULL,NULL),(3957,'Missing ET Reconstruction: Variable and Methods','Lee Sawyer and Alan L. Stone','','Alan L. Stone','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/3957/m_missingETnote.pdf','',2002,3,13,2452347,2003,8,1,2452853),(3958,'Studies on the Radiation Damage to Silicon Detectors For Use in the D0 Run2b Experiment','A. Bean, J. Gardner, C. Gerber, H. Haggerty, Z. Ke, S. Korjanevsky, S. Lager, A. Leflat, F. Lehner, R. Lipton, J. Lucky, M. Merkin, P. Rapidis, V. Rykalin, L. Shabalina, L. Spiegel, L. Stutte, B. Webber','','John Gardner','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3958/m_d0note3958.ps','',2002,3,14,2452348,2002,6,10,2452436),(3959,'New leakage current, noise and depletion voltage expectations for Run2b','Frank Lehner','','Frank Lehner','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3959/m_run2b_leak_new.ps','',2002,3,16,2452350,2002,6,13,2452439),(3960,'MDT Online and Off line Database Manager','Alexandre Lobodenko','Brief description of the software to fill and manage MDT\'s online and offline databases is presented.','Alexandre Lobodenko','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/3960/m_Db_manager.ps','',2002,3,17,2452351,2002,3,29,2452363),(3961,'','','','Alice Bean','','','D0_PRIVATE','','','',2002,3,19,2452353,NULL,NULL,NULL,NULL),(3962,'Results from Irradiation Tests on D0 Run2a Silicon Detectors\r\nat the Radiation Damage Facility at Fermilab','J. Gardner, C. Gerber, Z. Ke, S. Korjanevsky, A. Leflat, \r\nF. Lehner, R. Lipton, J. Lackey, M. Merkin, P. Rapidis, \r\nV. Rykalin, L.Shabalina, L. Stutte, B. Webber','','Alice Bean','SILICON','PUB','D0_PRIVATE','OTHER','$D0_PRI/3962/m_d0note3962.pdf','',2002,3,19,2452353,2002,6,11,2452437),(3963,'Combination of CDF and D0 Results on W Boson Mass and Width','Tevatron Electroweak Working Group (D0 + CDF)','This is also CDF note 5888 and FERMILAB-FN-716.','Tom Diehl','WZ','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3963/m_d0note_ashutosh.ps','',2002,3,20,2452354,2002,11,1,2452580),(3964,'Evaluation of Alternate Designs of the Silicon Tracker','T.Bolton, E.Chabalina, R.Demina, A.Khanov, A.Nomerotski, F.Rizatdinova','','Rizatdinova Flera','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3964/m_desc_note_6.ps','',2002,3,20,2452354,2002,3,20,2452354),(3965,'Simulation of the Performance of the Run 2B silicon detector','D0 collaboration','Prepared for April 2002 PAC Meeting','John Womersley','','MEMO','D0_PRIVATE','OTHER','','',2002,3,29,2452363,NULL,NULL,NULL,NULL),(3966,'The sign of Wamus muons reconstructed with Reco version p10.14.01','Bruce Hoeneisen','','Bruce Hoeneisen','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3966/m_muon_sign_d0note3966.ps','',2002,4,3,2452368,2002,4,3,2452368),(3967,'Real-Time Monitoring of the Luminosity System','Sung Hwan Ahn, Seth Bartel, Michael Begel, Tom Ferbel, Gregor Geurkov, John Hauptman, Seh Wook Lee, Jae Won Park, Richard Partridge, Tom Plagge','','John Hauptman','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2002,4,4,2452369,NULL,NULL,NULL,NULL),(3968,'Reconstructing Interaction Vertices in x,y and z using the D0 Luminosity System','Sung Hwan Ahn, Oleksiy Atramentov, Michael Begel, Tom Ferbel, Gregor Geurkov, John Hauptman, Seh Wook Lee, Chyi-Chang Miao, Jae Won Park, Richard Partridge','','John Hauptman','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','','',2002,4,4,2452369,NULL,NULL,NULL,NULL),(3969,'Accessing Triggered Luminosity Information via Flat Files','Sung Hwan Ahn, Michael Begel, Tom Ferbel, Gregor Geurkov, John Hauptman, Alexander Kupco, Seh Wook Lee, Prolay Mal, Jae Won Park, Richard Partridge, Heidi Schellman, Marco Verzocchi ','','John Hauptman','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','','',2002,4,4,2452369,NULL,NULL,NULL,NULL),(3970,'D0 Luminosity in Run 2: Delivered','Sung Hwan Ahn, Oleksiy Atramentov, Michael Begel, Gregor Geurkov, John Hauptman, Alexander Kupco, Seh Wook Lee, Prolay Mal, Jae Won Park, Richard Partridge, Heidi Schellman, Marco Verzocchi','This note describes how D0 measures the delivered instantaneous luminosity.','Michael Begel','','DOC','D0_PRIVATE','','$D0_PRI/3970/m_delivered.pdf','',2002,4,8,2452373,2005,10,14,2453658),(3971,'D0 Luminosity in Run 2: Triggered','Sung Hwan Ahn, Oleksiy Atramentov, Michael Begel, Gregor Geurkov, John Hauptman, Alexander Kupco, Seh Wook Lee, Prolay Mal, Jae Won Park, Richard Partridge, Heidi Schellman, Marco Verzocchi','This note describes how D0 measures the triggered luminosity at Level 1.','Michael Begel','','DOC','D0_PRIVATE','','$D0_PRI/3971/m_triggered.pdf','',2002,4,8,2452373,2005,10,14,2453658),(3972,'D0 Luminosity in Run 2: Recorded','Sung Hwan Ahn, Oleksiy Atramentov, Michael Begel, Gregor Geurkov, John Hauptman, Alexander Kupco, Seh Wook Lee, Prolay Mal, Jae Won Park, Richard Partridge, Heidi Schellman, Marco Verzocchi','This note describes how D0 measures the recorded luminosity.','Michael Begel','','DOC','D0_PRIVATE','','$D0_PRI/3972/m_recorded.pdf','',2002,4,8,2452373,2005,10,14,2453658),(3973,'Luminosity and Performance of D0 during the first year of Run 2','Sung Hwan Ahn, Oleksiy Atramentov, Michael Begel, Gregor Geurkov, John Hauptman, Alexander Kupco, Seh Wook Lee, Prolay Mal, Chyi-Chang Miao, Jae Won Park, Richard Partridge, Heidi Schellman, Marco Verzocchi','This report describes our operations during the first year of Run 2A.','Michael Begel','','DOC','D0_PRIVATE','','$D0_PRI/3973/m_firstyear.pdf','',2002,4,8,2452373,2005,10,14,2453658),(3974,'Mini-Drift Tube Ageing Test with D0 Gas System','G.D.Alexeev, V.L.Malyshev, D.Denisov','Agein test with MDT','V.Malyshev','MUON','','D0_PRIVATE','OTHER','$D0_PRI/3974/m_MDTAgeing.doc','',2002,4,9,2452374,2002,5,23,2452418),(3975,'Description of a Method Developed to Measure the Mass of the Top Quark at DZERO','F.Canelli, J.Estrada, T.Ferbel and G.Gutierrez\r\nUniversity of Rochester\r\nFermilab','','Juan Estrada','','','D0_PRIVATE','','','',2002,4,10,2452375,NULL,NULL,NULL,NULL),(3976,'The Road Method (an algorithm for the identification of electrons in jets)','F. Beaudette and J.-F. Grivaz','A description of the road method is given. Electron identification estimators are proposed, and their performance for heavy flavour tagging is assessed.\r\n','Jean-Francois Grivaz','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3976/m_d0note_3976.ps','',2002,4,11,2452376,2002,4,11,2452376),(3977,'Magnetic field monitors for the D0 solenoid','P. Balm , F. Bergsma , H. Boterenbrood, H.T. van Es, H.E. Fisk , B. Heutenik, L. Jansen, J. Kuijt, F. Linde, R.P. Smith','','Paul Balm','','DOC','D0_PRIVATE','OTHER','$D0_PRI/3977/m_NIKHEFHallProbes_40.pdf','',2002,4,26,2452391,2003,2,27,2452698),(3978,'The tmb_tree package','Serban Protopopescu, Stephanie Baffioni, Elemer Nagy, Eric Thomas, Nadia Lahrichi','','Elemer Nagy','DATA_MANAGE','DOC','D0_PRIVATE','POSTSCRIPT','/prj_root/824/alg_23/enagy/tmb_doc/m_tmb_tree_note_jul02.ps','',2002,4,26,2452391,2002,7,3,2452459),(3979,'ThumbNail: a compact data format','Serban Protopopescu, Stephanie Baffioni, Elemer Nagy','','baffioni','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3979/m_tmb_note.ps','',2002,4,28,2452393,2002,4,30,2452395),(3980,'Track and Preshower Digital Trigger in D0','Levan Babukhadia and Manuel Martin','','Levan Babukhadia','TRIGGER','PUB','PUBLIC','OTHER','$D0_PUB/3980/m_d0note3980.pdf','',2002,4,29,2452394,2002,9,13,2452531),(3981,'Charge distribution in SMT Clusters','R. Demina, A. Khanov (KSU), Y. Kulik , A. Nomerotski (FNAL), L. Shabalina (UIC)','','R. Demina','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3981/m_eta_v4.pdf','',2002,4,29,2452394,2002,7,15,2452471),(3982,'The DZERO Online System Event Path','S. Fuess, M. Begel, D. Genser, G. Guglielmo, M. Litmaath,\r\nC. Moore, S. Snyder, J. Yu, D. Zhang','Proceedings of CHEP2001','Stu Fuess','ONLINE','DOC','D0_PRIVATE','OTHER','$D0_PRI/3982/m_d0note3982.pdf','',2002,4,30,2452395,2002,4,30,2452395),(3983,'Neural Networks for Higgs Physics at D0 \"','Silvia Tentindo-Repond','','Silvia Tentindo-Repond','','DOC','D0_PRIVATE','POSTSCRIPT','','',2002,5,2,2452397,NULL,NULL,NULL,NULL),(3984,'Proposal for DZero Regional Analysis Centers, v1.0','Bertram, Brock, Filtaut, Leuking, Mattig, Narain, Lebrun, Thooris, Yu, and Zeitnitz','','Raymond Brock','SOFTWARE_INFRA','DOC','D0_PRIVATE','OTHER','','',2002,5,8,2452403,NULL,NULL,NULL,NULL),(3985,'Jets in Run II','JetMet group (conveners: G. Bernardi and V. Zutshi)','Certification Note Spring 2002','Gregorio Bernardi','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3985/m_jet.ps','',2002,5,19,2452414,2002,12,11,2452620),(3986,'Hot Cells and Missing Transverse Energy in Run II','JetMet group (conveners: G. Bernardi and V. Zutshi)','Certification Note Spring 2002','Gregorio Bernardi','','PHYS','D0_PRIVATE','POSTSCRIPT','','',2002,5,19,2452414,NULL,NULL,NULL,NULL),(3987,'More Information on Tracks that Pass Through the STOV Board','Bill Lee','','Bill Lee','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3987/m_overlap.ps','',2002,5,22,2452417,2002,5,28,2452423),(3988,'Phase-5 Tests and Studies of the Run IIa Analog Front End Board','Pushpa Bhat, Alan Bross, Kirsten Goldmann, Rick Jesik, Yi Jiang, Mike Matulik, Hugh Montgomery, and Andriy Zatserklyaniy','','Pushpa Bhat','FIBER_TRACKER','DOC','D0_PRIVATE','OTHER','$D0_PRI/3988/m_AFE_Phase5_D0note_3988.pdf','',2002,5,23,2452418,2003,11,6,2452950),(3989,'Details of Run 1 \"top likelihood\" estimation for top quark\r\nmass analysis in the lepton+jets channel','Mark Strovink','','Mark Strovink','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/3989/m_run1-top-likelihood.pdf','',2002,5,29,2452424,2002,5,29,2452424),(3990,'Forward Level 1 Muon Trigger : Wire Chamber Trigger Studies','M. Maity, J.M. Butler, E. Machado','','Manas Maity, John M. Butler','MUON','','D0_PRIVATE','POSTSCRIPT','','',2002,5,30,2452425,NULL,NULL,NULL,NULL),(3991,'Alignment of FAMUS scintillation counters.','A.Mayorov','','A.Mayorov','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3991/m_Famus_al.ps','',2002,6,9,2452435,2002,6,9,2452435),(3992,'Level-3 Muon Dynamic Unpacker','Christophe Clement, Scott Snyder ','','Christophe Clement','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3992/m_muo_unpack.ps','',2002,6,13,2452439,2002,6,13,2452439),(3993,'Search for New Particles Decaying into Dijets','Christina L. Hebert, Iain Bertram','','Christina Hebert','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3993/m_dijet_fitting_v_2_6.ps','',2002,6,17,2452443,2003,3,20,2452719),(3994,'vfitter: A Vertexing Package with Kinematic and Topological\r\nConstraints','Sherry Towers','','Sherry Towers','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3994/m_vertexb.ps','',2002,7,1,2452457,2002,9,12,2452530),(3995,'New Phenomena Group Run 2 Results for ICHEP 2002','A. Besson, P. Demine, S. Fu, Yu. Gershtein, R. Hooper, S. Kesisoglou, O. Kouznetsov, G. Landsberg, G. Sajot, V. Zutshi','Submitted to ICHEP 2002, Amsterdam, July 24-31, 2002.','Greg Landsberg','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3995/m_3995.pdf','',2002,7,5,2452461,2002,8,23,2452510),(3996,'Muon Tracking in the Calorimeter','Daniel Whiteson','','Daniel Whiteson','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3996/m_mtc.ps','',2002,7,5,2452461,2003,7,21,2452842),(3997,'Study of the Non Linearity of the D0 Calorimeter Readout Chain','Robert Zitoun','','Rovert Zitoun','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3997/m_papier.ps.gz','',2002,7,14,2452470,2002,7,31,2452487),(3998,'Run 2 Results of Leptoquark Search in eejj channel for ICHEP 2002','Shaohua Fu, Vishnu Zutshi','','Shaohua Fu','NEW','ANAL','D0_PRIVATE','OTHER','','',2002,7,15,2452471,NULL,NULL,NULL,NULL),(3999,'The D0 Level-3 muon filter',' Paul Balm, Christophe Clement, Tom Diehl, \r\n Martijn Mulders, Stefan Soldner-Rembold, Martin Wegner','D0_PRIVATE','Martijn Mulders','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/3999/m_L3MuonFilterNote.ps','',2002,7,16,2452472,2002,7,17,2452473),(4000,'A Technique for Measuring Heavy Quark Backgrounds \r\nin W(mu-nu) and Z(mu-mu) Samples ','Diehl, Askew & Hesketh','','Tom Diehl','WZ','MEMO','D0_PRIVATE','','$D0_PRI/4000/m_w_back_tech.ps','',2002,7,18,2452474,2002,8,10,2452497),(4001,'First look at backgrounds to the search for the Higgs boson in the H->WW->enuenu channel in DO data from Run 2','Marc Hohlfeld','','Marc Hohlfeld','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4001/m_hww_study.ps.gz','',2002,7,19,2452475,2002,8,1,2452488),(4002,'Local Muon Momentum Resolution','John M. Butler','','John Butler','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4002/m_local_muon_resolution.pdf','',2002,7,22,2452478,2002,7,23,2452479),(4003,'Measurement of the Z and W boson production cross sections in the electron mode in ppbar collisions at 1.96 TeV','Marumi Kado\r\nRobert Zitoun','','Marumi Kado','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4003/m_note.ps','',2002,7,23,2452479,2002,8,29,2452516),(4004,'Measurement of the Z and W boson production cross sections in the electron mode in pp collisions at 1.96 TeV','Marumi Kado\r\nRobert Zitoun','ICHEP conference note','Marumi Kado and Robert Zitoun','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4004/m_confnote.ps','',2002,7,23,2452479,2002,8,29,2452516),(4005,'Status of D0 for B Physics','R. Van Kooten for the D0 Collaboration','To be published in the proceedings of Flavor Physics and CP Violation (FPCP), Univ. of Pennsylvania, Philadelphia, PA, 16-18 May 2002,\r\nhep-ex/0207096','Rick Van Kooten','B_PHYSICS','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4005/m_vank_fpcp.ps','',2002,7,29,2452485,2002,7,29,2452485),(4006,'Trigger','R. Moore','','Han Do','','','D0_PRIVATE','','','',2002,8,7,2452494,NULL,NULL,NULL,NULL),(4007,'Trigger Laguage','R. Moore','','Han Do','','','D0_PRIVATE','','','',2002,8,7,2452494,NULL,NULL,NULL,NULL),(4008,'The Status of Noise Study for Run2B SMT Layer 0','Kazu Hanagaki','','Kazu Hanagaki','SILICON','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4008/m_L0_noise.ps','',2002,8,20,2452507,2002,8,20,2452507),(4009,'MCM II and the Trip chip','J. Estrada, C. Garcia, B. Hoeneisen and P. Rubinov','','Bruce Hoeneisen','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4009/m_MCMII_4009.ps','',2002,8,22,2452509,2002,8,22,2452509),(4010,'Studies of the EM Object Fake Rate for v2.0 EM Certified Objects\r\n\r\n','S. Fu, O. Kouznetsov, G. Landsberg, A. Melnitchouk, \r\nG. Sajot, and V. Zutshi','','Greg Landsberg','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4010/m_4010.pdf','',2002,8,23,2452510,2002,8,23,2452510),(4116,'Measurement of the ttbar cross section at sqrt(s)=1.96 TeV','Anderson,Barberis,Bassler,Beaudette,Bernardi,Cho,Clement, Demina,Fiedler,Gerber,Golling,Grivaz,Groer,Han, Heinson,Iashvili,Juste,Li,Kado,Kehoe,Khanov,Klute,Kozminski,Quadt,Quinn,Mal,O\'Neil,Parua,Perea,Phaf,Rizatdinova,Schwartzman,Schwienhorst,Shabalina,Strandberg,Whiteson,Zielinski,Zitoun','','Top group','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4116/m_note_3.2.ps','',2003,3,3,2452702,2003,3,7,2452706),(4012,'Simulation of STT with Run 2b Silicon Microstrip Tracker','Ulrich Heintz','','Ulrich Heintz','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2002,8,24,2452511,NULL,NULL,NULL,NULL),(4013,'Searches for Standard Model Higgs Boson in ZH->mumu+bbbar Decay Channel. ','YILDIRIM MUTAF','','YILDIRIM MUTAF','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4013/m_note4013.ps','',2002,8,26,2452513,2002,9,6,2452524),(4014,'CPSReco: the cluster reconstruction package for the central preshower detector','P. Baringer, D. Coppage, J. Gardner, C. Hebert, A. Turcot','','Philip Baringer (baringer@ku.edu)','PRESHOWER','DOC','D0_PRIVATE','','$D0_PRI/4014/m_CPSReco.htm','',2002,8,27,2452514,2002,9,24,2452542),(4015,'The Highlight of Initial Tests for the SVX4','K. Hanagaki, M. Garcia-Sciveres, and M. Weber','','Kazu Hanagaki','SILICON','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4015/m_svx4_testing.ps','',2002,8,27,2452514,2002,8,27,2452514),(4016,'Numbering convention for sequencer ID in SMT data stream','Ulrich Heintz','','Ulrich Heintz','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4016/m_sequencer_id.doc','',2002,8,28,2452515,2003,7,9,2452830),(4017,'Electron + Jets Triggers for Top Physics','Lukas Phaf','','Lukas Phaf','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4017/m_d0note4017.ps','',2002,8,28,2452515,2002,8,29,2452516),(4018,'Search for the Top Quark in the All-jets Channel at D0\r\n','c. Stewart, C. Cretsinger','','C. Stewart','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',2002,8,28,2452515,NULL,NULL,NULL,NULL),(4019,'Prospects for Discovering Neutral Supersymmetric Higgs Bosons in 4 b-jet Final State\r\n','Levan Babukhadia, Andrew Haas, Avtandyl Kharchilava, Jyothsna Rani','','Levan Babukhadia','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2002,8,31,2452518,NULL,NULL,NULL,NULL),(4020,'Jets in High E_T events: data vs. Monte Carlo','L. Duflot, J.-F. Grivaz, M. Ridel and P. Verdier','','J.-F. Grivaz','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4020/m_jets.ps','',2002,9,2,2452520,2002,9,2,2452520),(4021,'Status of the $WH \\rightarrrow \\mu\\nu b\\bbar$ Analysis','Satish Desai','','Satish Desai','NEW','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4021/m_whmunu.ps','',2002,9,3,2452521,2002,9,5,2452523),(4022,'D0 SMT Radiation Monitoring System','S. N. Ahmed, R. Lipton, B. Wijngaarden, S. Duensing, A. Naumann, S. de Jong','','Naeem Ahmed','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4022/m_radmonsystem.ps','',2002,9,13,2452531,2002,11,14,2452593),(4023,'Energy corrections for geometry effects for electrons in Run II','Sabine Crepe-Renaudin','','Sabine Crepe-Renaudin','MC','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4023/m_geocor.ps','',2002,9,17,2452535,2002,9,20,2452538),(4024,'DZero Computing and Software Operation\r\nand Upgrade Plan - June 2002 Review Committee Version','The Dzero Collaboration','May 22, 2002','Nick Hadley','','PUB','D0_PRIVATE','OTHER','$D0_PRI/4024/m_comp_plan_rev_comm.pdf','',2002,9,19,2452537,2002,9,19,2452537),(4025,'D0 Computing and Software Operations and Upgrade Plan\r\nInternal collaboration version May 2002','D0 Collaboration','May 7, 2002','Nick Hadley','','DOC','D0_PRIVATE','OTHER','$D0_PRI/4025/m_CS_Plan_Internal.pdf','',2002,9,19,2452537,2002,9,19,2452537),(4026,'Determination of T0\'s for the Forward Muon Scintillation Counters','V. Evdokimov, V. Lipaev, I. Vasilyev, D. Denisov','The procedure and results of T0\'s measurement for the forward muon scintillation counters are presented.','Igor Vasilyev','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4026/m_t0s.ps','',2002,9,19,2452537,2002,9,19,2452537),(4027,'Benefits of Minimizing the Number of Discriminators\r\nUsed in a Multivariate Analysis','Sherry Towers','','Sherry Towers','','','D0_PRIVATE','','$D0_PRI/4027/m_reduc.ps','',2002,9,23,2452541,2002,9,24,2452542),(4028,'Effects of Electronic Noise on Cone jets','Vishnu V. Zutshi','','Vishnu Zutshi','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2002,9,25,2452543,NULL,NULL,NULL,NULL),(4029,'Radiation Hardness Tests of Prototype ELMA L0 Sensors for D0 Run IIb','T. Bolton, K. Carnes, R. Demina, T. Gray, D. Karmanov, K. Kitten, S. Korjenevski, M. Litos, M. Merkin, A. Rankin','','Tim Bolton','SILICON','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4029/m_D0Note_4029.pdf','',2002,9,30,2452548,2002,10,28,2452576),(4030,'The missing E_T distribution in high E_T multijet events','J.-F. Grivaz and M. Ridel','','J.-F. Grivaz','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4030/m_met.ps','',2002,9,30,2452548,2002,9,30,2452548),(4031,'Performance comparison of Impact-Parameter and Secondary-Vertex b-Quark Jet Tags in Data','Sherry Towers','','Sherry Towers','','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4031/m_btag.ps','',2002,9,30,2452548,2002,9,30,2452548),(4032,'Electron identification and b-tagging with the road method','F. Beaudette and J.-F. Grivaz','Electron identification efficiency and purity, and b-tagging performance of the road method are evaluated using \r\ndata collected during the first semester of 2002.','J.-F. Grivaz','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4032/m_bid.ps','',2002,10,3,2452551,2002,10,30,2452578),(4033,'*** Dummy entry ***','J.-F. Grivaz','*** Sorry: this is a dummy entry... ***','J.-F. Grivaz','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','','',2002,10,3,2452551,NULL,NULL,NULL,NULL),(4034,'Searches for Standard Model Higgs Boson in ZH->e+ e- + bbbar Decay Channel.','Michele Petteni','','Michele Petteni','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4034/m_p10_zheebb_higgs.ps','',2002,10,14,2452562,2003,10,9,2452922),(4035,'Level 3 Missing ET Tools','Lee Sawyer','','Lee Sawyer','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4035/m_l3missingEt.pdf','',2002,10,17,2452565,2002,11,27,2452606),(4036,'Certification Studies for the Level 3 Missing ET Tool','Markus Klute\r\nLee Sawyer','','Lee Sawyer','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4036/m_l3met_cert.pdf','',2002,10,17,2452565,2002,11,27,2452606),(4037,'Search Strategy for Initial Observation of Z to bbbar Decays at Dzero in RunII','Sherry Towers','','Sherry Towers','','','D0_PRIVATE','','','',2002,10,22,2452570,NULL,NULL,NULL,NULL),(4038,'Effect of Looping Particles on Dose Absorbed by D0 SMT','S. N. Ahmed','','S. N. Ahmed','SILICON','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4038/m_looperstudy.ps','',2002,10,24,2452572,2002,10,24,2452572),(4039,'Hot Cell Suppression at Level 3','Gregorio Bernardi and Marumi Kado','','Marumi Kado','CALORIMETER','PHYS','D0_PRIVATE','','$D0_PRI/4039/m_l3nada.ps','',2002,10,25,2452573,2003,1,23,2452663),(4040,'Irradiation of Silver-Loaded Epoxy by 14 MeV Protons','T.Bolton, K.Carnes, T.Gray, H.Haggerty, A.Rankin','','Tim Bolton','SILICON','DOC','D0_PRIVATE','OTHER','','',2002,11,5,2452584,2002,11,5,2452584),(4041,'Tool to determine L1 CEM(n,x) Trigger Efficiencies for a given data set','Tobias Golling','This document serves as a documentation of a routine, called emeff_tool, which can be used to determine L1 trigger efficiencies for all electron triggers for any data set.','Tobias Golling','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4022/m_emeff_tool.ps','',2002,11,5,2452584,2002,11,5,2452584),(4042,'Probabilistic Primary Vertex Selection','Ariel Schwartzman and Meenakshi Narain','','Ariel Schwartzman','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4042/m_4042_prob_pv.pdf','',2002,11,8,2452587,2007,8,28,2454341),(4043,'Dose Estimates for D0 SMT','S.N. Ahmed, L. Berntzon','','S.N. Ahmed','SILICON','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4043/m_d0smtdose_4043.ps','',2004,4,22,2453118,2004,10,7,2453286),(4044,'Background Dose Estimates for D0 SMT','S.N. Ahmed','','S.N. Ahmed','SILICON','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4044/m_radmonhalo.ps','',2002,11,8,2452587,2002,11,14,2452593),(4045,'Muon studies with Reco version p11.09','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','','',2002,11,8,2452587,NULL,NULL,NULL,NULL),(4046,'A Simple Method to Correct Monte Carlo Smearing','Sherry Towers','','Sherry Towers','','','D0_PRIVATE','','$D0_PRI/4046/m_smear_version1.ps','',2002,11,13,2452592,2002,11,14,2452593),(4047,'Run 2A P10.15 Jet Energy Resolutions using Photon+jets Data','Ming Yan, Drew Baden, Sarah Eno','','Ming Yan','','PHYS','D0_PRIVATE','POSTSCRIPT','','',2002,11,13,2452592,NULL,NULL,NULL,NULL),(4048,'Jet Energy Resolution in the Post Shutdown Data','Ming Yan, Sarah Eno, Nick Hadley, Marco Verzocchi','','Ming Yan','','PHYS','D0_PRIVATE','','','',2002,11,14,2452593,NULL,NULL,NULL,NULL),(4049,'b-tagging with Counting Signed Impact Parameter method','R.Demina, A.Khanov, F.Rizatdinova','','Rizatdinova Flera','ALGORITHMS','','D0_PRIVATE','','$D0_PRI/4049/m_btag1.ps','',2002,11,14,2452593,2002,11,26,2452605),(4050,'Track finding efficiency study using Z->ee sample','R. Demina, A. Khanov, N. Stanton, E. von Toerne ','','R. Demina','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4050/m_tracking_zee_V13.pdf','',2002,11,14,2452593,2002,11,19,2452598),(4051,'Diffractive Physics at D0','Silvia Tentindo Repond','','Silvia Tentindo Repond','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4051/m_D0Note4051.ps','',2002,11,15,2452594,2002,12,10,2452619),(4052,'The Calibration Manager: a Web Interface for Monitoring the D0 Pre-shower Calibration Database','Jeremy Herr (herrj@umich.edu), Homer A. Neal (haneal@umich.edu), Eric Myers (myers@vassar.edu)','The Calibration Manager is a web based application that provides users easy access to calibration data, as well as the ability to modify and update the database.','Jeremy Herr','PRESHOWER','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/4052/m_cps_calib_mgr.ps','',2002,11,21,2452600,2002,12,9,2452618),(4053,'The D-Zero L2-Muon Trigger Performance for P11','Tim Christiansen','','Tim Christiansen','MUON','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4053/m_studyl2.ps','',2002,11,25,2452604,2002,12,2,2452611),(4054,'Forward Proton ID Certification I: Elastic Process and Standalone DAQ','G.A. Alves et al.','We describe the first results of the D0 FPD detector used to certify the proton ID.','Sergio F. Novaes','QCD','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4054/m_pidI.ps','',2002,11,27,2452606,2003,2,4,2452675),(4055,'Unpacking of the Timing & Control Crate Data from the D0 Calorimeter','Tibor Kurca','this note supersedes the obsolete one #3893','Tibor Kurca','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4055/m_Unpack.ps','',2002,11,28,2452607,2002,11,28,2452607),(4056,'Helium background in D0 and PMT tubes.','Valeri Evdokimov, Anatoli Evdokimov','','Anatoli Evdokimov','MUON','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4056/m_note4056.ps','',2002,11,29,2452608,2002,11,29,2452608),(4057,'Improvement of the NADA Algorithm: \r\nHot Cell Killing in D0 Run II Data','Gregorio Bernardi\r\nSophie Trincaz-Duvoid','','trincaz-duvoid','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4057/m_upgradeNADA.ps','',2002,12,1,2452610,2002,12,1,2452610),(4058,'A Measurement of the Top Mass in the All-Jets Channel Using Run I Data','Brian Connolly','www.hep.fsu.edu/~connolly/d0note.ps','Brian Connolly','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4058/m_note4058.pdf','',2002,12,2,2452611,2004,1,27,2453032),(4059,'Status of the Fast Simulation, PMCS, December 2002','Greg Graham, Sarah Eno, Marco Verzocchi, Frederic Deliot, Ryan Hooper, Bing Zhou, Junjie Zhu, Lei Wang, Qichun Xu, Sudeshna Banerjee, Florencia Canelli, DooKee Cho, Marek Zielinski, Shawn Kwang, Supriya Jain, Frank Filthaut, Jim Deganhardt, Georg Mikus, Dave Hedin, Zhong Ming Wang, Elemer Nagy','','Sarah Eno','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/4059/m_pmcsstatus_nov02.pdf','',2002,12,3,2452612,2002,12,18,2452627),(4060,'Mistag rate calculation for CSIP method','R. Demina, A. Khanov, F. Rizatdinova ','','demina','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4060/m_mistag_calculation.pdf','',2002,12,3,2452612,2002,12,3,2452612),(4061,'Forward Muon System for the D0 Experiment','D. Denisov','Presentation at the IEEE 2002 Conference, Norfolk, November 2002','Dmitri Denisov','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4061/m_D0_Note_4061.ps','',2002,12,5,2452614,2002,12,6,2452615),(4062,'Status of PMCS_EM','Junjie Zhu','','Junjie Zhu','MC','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4062/m_D0note4062.ps','',2002,12,9,2452618,2003,1,2,2452642),(4063,'Searches and expected signatures at D0 ','Andrei Nomerotski for D0 collaboration','Proceedings of HCP2002, Karlsruhe, October 2002','Andrei Nomerotski','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4063/m_hcp2002_an_rev_1.ps','',2002,12,10,2452619,2002,12,10,2452619),(4064,'The D0 Detector for Run II','Levan Babukhadia','Invited talk at the 31st International Conference on High Energy Physics, Amsterdam, the Netherlands, July 24-31, 2002.\r\nhep-ex/0210002, Fermilab-Conf-02/239-E','Levan Babukhadia','','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4064/m_lb_ichep02_0210002.ps','',2002,12,10,2452619,2002,12,10,2452619),(4065,'Parameterized MC Simulation (PMCS) muon package','Bing Zhou, Qichun Xu, James Degenhardt','','Bing Zhou, Qichun Xu','MC','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4065/m_pmcsmuon.ps','',2002,12,11,2452620,2002,12,30,2452639),(4066,'Comparison between PMCS and D0Reco on p10 Dostar MC data','Lei Wang, Sarah Eno','','Lei Wang','MC','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4066/m_d0note.ps','',2002,12,11,2452620,2003,3,5,2452704),(4067,'High Pt Dimuons with PMCS','Ryan J. Hooper, Junjie Zhu','','Ryan J. Hooper','MC','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4067/m_high_pt_dimu_pmcs.ps','',2002,12,11,2452620,2002,12,19,2452628),(4068,'A Proposal for Triggering D0 at 60E30 in 2003','Andre S. Turcot','','Andre Turcot','TRIGGER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4068/m_list_60.pdf','',2002,12,12,2452621,2002,12,12,2452621),(4069,'Jet Lifetime b-tagging','D.Bloch, D.Gele, S.Greder, I.Ripp-Baudot, F.Filthaut, B.Wijngaarden','A b-tagging method of jets is presented, based on a lifetime probability computed using the impact parameter of tracks. Performances are evaluated for the p11 processing.','Daniel Bloch','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4069/m_btag_jetlifetime.ps','',2002,12,18,2452627,2002,12,19,2452628),(4070,'Muon Isolation Studies','Daniel Whiteson and Marumi Kado','','Marumi Kado','MUON','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4070/m_muonnote.ps','',2002,12,18,2452627,2003,1,23,2452663),(4071,'MC study of te ZH -> nunu bbbar channel','Makoto Tomoto','','Makoto Tomoto','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4071/m_note_zh_nunubbbar.ps','',2002,12,23,2452632,2002,12,23,2452632),(4072,'Studies of track pairs with Reco version p11.09','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4072/m_B0_p1109.ps','',2002,12,31,2452640,2002,12,31,2452640),(4073,'Level 1 and Level 2 Calorimeter Trigger Performance in Multi-jet Events','Andy Haas','','Andy Haas','TRIGGER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4073/m_L1L2_note.ps','',2003,1,2,2452642,2003,2,5,2452676),(4074,'Superjets at Dzero','Robert Bradley\r\nChris Tully\r\n','','Chris Tully','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4074/m_jpnew.ps','',2003,1,5,2452645,2003,1,5,2452645),(4075,'b-tagging with CSIP algorithm in 13','R.Demina, A.Khanov, F.Rizatdinova','','Flera Rizatdinova','ALGORITHMS','ANAL','D0_PRIVATE','','$D0_PRI/4075/m_btag2.ps','',2003,1,5,2452645,2003,1,9,2452649),(4076,'Characterization of the TriP chip at 132ns using a modified AFE1c board.','Juan Estrada, Charly Garcia, Bruce Hoeneisen, Paul Rubinov','','rubinov','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4076/m_Trip_report_4076.pdf','',2003,1,7,2452647,2003,1,7,2452647),(4077,'Lifetime of the D? Silicon Tracker','Ronald Lipton','','Ronald Lipton','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4077/m_d0smtlifetime.doc','',2003,1,8,2452648,2005,5,6,2453497),(4078,'An Online Event Display for the D0 SMT Detector','S. Dean and G. Hesketh','','G Hesketh','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4078/m_note4078.ps','',2003,1,10,2452650,2003,3,10,2452709),(4079,'Central Track Extrapolation Through the D0 Detector','G. Hesketh','','G Hesketh','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4079/m_extrap.ps','',2003,1,10,2452650,2003,3,19,2452718),(4080,'b-quark jet identification via Secondary Vertex Reconstruction','Ariel Schwartzman and Meenakshi Narain','','Ariel Schwartzman','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4080/m_btag_v7.ps','',2003,1,12,2452652,2003,1,12,2452652),(4081,'b-quark jet identification via Secondary Vertex reconstruction in D0 reco p13 Software','Ariel Schwartzman and Meenakshi Narain','','Ariel Schwartzman','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4081/m_btag13_v1.ps','',2003,1,12,2452652,2003,1,12,2452652),(4082,'Procedure to determine backgrounds in b-tagged W+jets sample for top search','R. Demina, L. Chabalina, A. Khanov, F. Rizatdinova','','demina','TOP','DOC','D0_PRIVATE','OTHER','','',2003,1,12,2452652,NULL,NULL,NULL,NULL),(4083,'A Proposal for Separate Data File Tables in the SAM Database','Adam Lyon, Jeremy Simmons','','Adam Lyon','DATA_MANAGE','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4083/m_samProposal.pdf','',2003,1,14,2452654,2003,1,15,2452655),(4084,'Search for discriminating power in bjet-identification between higgs and gluon decays.','YILDIRIM D. MUTAF','','YILDIRIM D. MUTAF','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4084/m_note4084.ps','',2003,1,16,2452656,2003,2,18,2452689),(4085,'Helicity of the W in Single-Lepton ttbar events','F. Canelli, J. Estrada, T. Ferbel, G. Gutierrez','This note is the continuation of note 3975','Florencia Canelli','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4085/m_whel_note_v8.0.ps','',2003,1,21,2452661,2003,10,15,2452928),(4086,'Optimization of $b$-tag Operation Points: A Means to Dramatically Improve Signal Signficance in Multi-$b$-tag Analyses','Sherry Towers','','Sherry Towers','','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4086/m_opt.ps','',2003,1,21,2452661,2003,1,30,2452670),(4087,'First look at cross section limits in exotic Higgs models in H->WW->enuenu and H->WW->enumunu channels in D0 data from Run II','Marc Hohlfeld','','Marc Hohlfeld','','PHYS','D0_PRIVATE','','$D0_PRI/4087/m_h_ww_lnulnu_note.ps','',2003,1,22,2452662,2003,3,27,2452726),(4088,'C-Hole Scintillation Counter Design and D0GStar Geometry','H. T. Diehl','d0note only','Diehl','MUON','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4088/m_chole.ps','',2003,1,26,2452666,2003,2,5,2452676),(4089,'D0 Run2b test card (purple card)Manual','R. Sidwell, T. Sobering, R. Taylor','','Ron Sidwell','DAQ_ELECTRONICS','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4089/m_d0note4089.ps','',2003,1,27,2452667,2003,1,27,2452667),(4090,'The WZRUNI algorithm of the PMCS_MET package: a Description and Comparison to p13.03 data','Junjie Zhu, Sarah Eno, Marco Verzocchi, Nick Hadley','','Junjie Zhu','MC','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4090/m_D0note4090.ps','',2003,2,1,2452672,2003,2,17,2452688),(4091,'Content of the p13 muon thumbnail','Christophe Clement, Frederic Deliot, Martijn Mulders, Stefan Soldner-Rembold, for D0 Muon Algo and Muon ID groups','','Christophe Clement','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4091/m_mu_tmb_doc.ps','',2003,2,3,2452674,2003,2,3,2452674),(4092,'Split CFT Clusters','Christian Schmitt','','Christian Schmitt','ALGORITHMS','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4092/m_d0note4092.ps','',2003,2,5,2452676,2003,2,14,2452685),(4093,'A Measurement of the Z production Cross Section times Muon Branching Fraction in Early Run II Data','Gavin Hesketh','','Gavin Hesketh','WZ','','D0_PRIVATE','','$D0_PRI/4093/m_note_4093.ps','',2003,2,7,2452678,2003,8,8,2452860),(4094,'','','','3687','','','D0_PRIVATE','','','',2003,2,10,2452681,NULL,NULL,NULL,NULL),(4095,'','','','4094','','','D0_PRIVATE','','','',2003,2,10,2452681,NULL,NULL,NULL,NULL),(4096,'Response to Questions from the Luminosity Review Committee','Brendan Casey, Richard Partridge. Michael Begel, Heidi Schellman','','Brendan Casey','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4096/m_lum-review-jan-2003-response.ps.gz','',2003,2,12,2452683,2003,2,12,2452683),(4097,'Status of the Fast Simulatin PMCS, v01-96-00','Sarah Eno, Marco Verzocchi,Frederic Deliot, Ryan Hooper, Bing Zhou, Junjie Zhu, Lei Wang, Qichun Xu, S. Banerjee, S. Jain','','Sarah Eno','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/4097/m_note4097.pdf','',2003,2,12,2452683,2003,2,12,2452683),(4098,'Measurement of jet production associated with a W boson','David Meder','','David Meder','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4098/m_W+jets_note.ps','',2003,2,14,2452685,2003,2,26,2452697),(4099,'The Muon Trigger at DZERO','Christos Leonidopoulos','proceedings from CHEP 2001, Beijing, China','Christos Leonidopoulos','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4099/m_010903-LEONIDOPOULOS-proceedings.ps','',2003,2,14,2452685,2003,2,14,2452685),(4100,'Study of Jets Produced in Association with W(->mu nu)','Peter Tamburello','','Peter Tamburello','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4100/m_writeup.ps','',2003,2,18,2452689,2003,3,11,2452710),(4101,'Dimuon studies with Reco version p13','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4101/m_dimuon_p13.ps','',2003,2,18,2452689,2003,2,19,2452690),(4102,'Search for Large Extra Dimensions in the Dielectron and Diphoton Channels in 50 pb^-1 of Run II Data','Greg Landsberg','Moriond 2003 results','Greg Landsberg','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4102/m_4102.pdf','',2003,2,21,2452692,2003,2,28,2452699),(4103,'WZ Generator for Run II','Junjie Zhu','','Junjie Zhu','WZ','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4103/m_D0note4103.ps','',2003,2,22,2452693,2003,3,21,2452720),(4104,'Jet Properties in Z(->ee) Events','K. Hanagaki','','Kazu Hanagaki','','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4104/m_zeejets.ps','',2003,2,24,2452695,2003,3,10,2452709),(4105,'Measurement of Efficiencies of Central EM Triggers from\r\nOnline Trigger Towers.','Sarosh N. Fatakia, Ulrich Heintz','','Sarosh N. Fatakia','TRIGGER','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4105/m_d0_note_4105.ps','',2003,2,25,2452696,2003,3,7,2452706),(4106,'Search for Large Extra Spatial Dimensions in the Di-Muon Channel with 30pb^-1 of Run II Data','Ryan J. Hooper, Greg Landsberg','','Ryan Hooper','NEW','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4106/m_NP_EDmumu_moriond.eps','',2003,2,25,2452696,2003,3,11,2452710),(4107,'Search for 2nd-Generation Leptoquarks in ppbar Collisions at sqrt(s) = 1.96 TeV','Tim Christiansen and Thomas Nunnemann','','Tim Christiansen','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4107/m_lqnote_v0.9.ps','',2003,2,25,2452696,2003,3,5,2452704),(4108,'B_s Mixing using B_s --> D_s(*) pi at D0 ','Raymond Gelhaus and John Ellison, UC Riverside','','John Ellison','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4108/m_d0note4108.ps','',2003,2,27,2452698,2003,3,4,2452703),(4109,'Search for Z\' in Run II data (Moriond 2003)','Mingcheng Gao','','Mingcheng Gao','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4109/m_zprime_2003Moriond_v1.4.ps','',2003,2,28,2452699,2003,2,28,2452699),(4110,'First Jet Energy Scale at D0 in Run II\r\n(for p10 Data and Monte Carlo)','Florencia Canelli, Jerome Coss, Anna Goussiou, Ia Iashvili, Bob Kehoe, Alexander Kupco, Steve Muanza, Vivian O\'Dell, Nirmalya Parua, Michele Petteni, Ariel Schwartzman','','Anna Goussiou','CALORIMETER','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4110/m_note.ps','',2002,9,30,2452548,2003,3,3,2452702),(4117,'Search for non-SM Light Higgs Boson in the h\\rightarrow\\gamma\\gamma Channel','Alex Melnitchouk','','V08822','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4117/m_d0note4117.ps','',2003,3,4,2452703,2003,4,2,2452732),(4112,'Jet Energy Scale for p11 Data','Jerome Coss, Anna Goussiou, Ia Iashvili, Steve Muanza, Vivian O\'Dell, Nirmalya Parua, Philip Perea, Ariel Schwartzman','','Anna Goussiou','CALORIMETER','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4112/m_note.ps','',2002,10,31,2452579,2003,3,3,2452702),(4113,'Analysis of Z+jets in Dimuon Channel','Suyong Choi','Z + jets analysis for the Higgs group Winter 2002','Suyong Choi','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4113/m_zmumuhiggs2.ps','',2003,3,3,2452702,2003,3,10,2452709),(4114,'Measurement of cross-section times branching ratio for Z->mumu in ppbar collisions at 1.96 TeV','Emily Nurse and Paul Telford','','Terry Wyatt','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4114/m_zmumu_winter.ps','',2003,3,3,2452702,2003,3,3,2452702),(4115,'Jet Energy Scale and Resolution\r\nfor p13 Data and Monte Carlo','Jerome Coss, Sarosh Fatakia, Anna Goussiou, Ulrich Heintz, Ia Iashvili, Miroslav Kopal, Alexander Kupco, Steve Muanza,\r\nVivian O\'Dell, Nirmalya Parua, Philip Perea','','Anna Goussiou','CALORIMETER','ANAL','D0_PRIVATE','POSTSCRIPT','','',2003,3,3,2452702,NULL,NULL,NULL,NULL),(4118,'Muon ID Certification for p13','Christophe Clement, Frederic Deliot, Martijn Mulders,\r\nStefan Soldner-Rembold (for the Muon ID/Algorithms Group)','','Stefan Soldner-Rembold','MUON','DOC','D0_PRIVATE','POSTSCRIPT','','',2003,3,4,2452703,NULL,NULL,NULL,NULL),(4119,'Missing Et Studies on Zero and Minimum Bias Events','S. Beauceron and G. Bernardi','','Beauceron','CALORIMETER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4119/m_MissingET.ps','',2003,3,10,2452709,2003,3,10,2452709),(4120,'Silicon Sensor Quality Assurance for the D0 RunIIb Silicon Detector: Procedures and Equipment','A. Bean, M. Demarteau, R. Demina, C. Gerber, D. Karmanov, S. Korjenevski, F. Lehner, R. Lipton, M. Mao, M. Merkin, R.L. McCarthy and R.P. Smith','','Frank Lehner','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4120/m_4120.pdf','',2003,3,11,2452710,2003,12,22,2452996),(4121,'Background studies for the search of the Higgs boson in the channel H->WW(*)->mu nu mu nu at D0 in Run II','Johannes Elmsheuser','','Johannes Elmsheuser','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4121/m_note_v1.ps','',2003,3,12,2452711,2003,4,1,2452731),(4122,'TopAnalyze - A Framework Analyze Package For Top Group Analyses.','Markus Klute, Lukas Phaf and Daniel Whiteson','','Markus Klute','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4122/m_top_analyze_4122.ps','',2003,3,17,2452716,2003,3,18,2452717),(4123,'Higgs Mass resolutions in P13 ','Silvia Tentindo Repond','Resolutions in the Higgs (115 GeV) Invariant Mass spectrum\r\nare studied in function of various Jet Algorithms, and effects of Jet Energy Scale in P13. \r\nin order to make trhe comparison complete.','Silvia Tentindo Repond','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4123/m_D0Note4123i.ps','',2003,3,22,2452721,2003,5,9,2452769),(4124,'Towards a Coherent Treatment of Calorimetric Energies: Missing Transverse Energy, Jets, E.M.~Objects and the T42 Algorithm','Ursula Bassler and Gregorio Bernardi','','Gregorio Bernardi','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4124/m_tow.ps','',2003,3,24,2452723,2003,3,24,2452723),(4125,'The D\\O\\ Silicon Track Trigger\\\\ Beam Spot Correction','John Hobbs, Wendy Taylor','','John Hobbs','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4125/m_4125.ps','',2003,3,25,2452724,2003,3,25,2452724),(4126,'Cross section for a leptophobic Z\' decaying to t-tbar in a model of topcolor assisted technicolor','Supriya Jain, Naba K. Mondal','','Supriya Jain','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4126/m_d0note4126-zprime-cs.pdf','',2003,3,28,2452727,2003,11,24,2452968),(4127,'Search for First Generation Leptoquarks in the Dielectron Channel','Shaohua Fu, Vishnu Zutshi','','Shaohua Fu','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4127/m_LQ.ps','',2003,3,30,2452729,2003,8,15,2452867),(4128,'Measurement of the Inclusive W to mu nu Cross-Section in p pbar Collisions at sqrt{s}=1.96 TeV','Mathieu Agelou, Andrew Askew, Marc Besancon, Frederic Deliot, Nadia Lahrichi,Yurii Maravin, Emmanuelle Perez, Boris Tuchming, Marco Verzocchi','','deliot','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4128/m_wmuxsec.ps','',2003,3,31,2452730,2003,3,31,2452730),(4129,'MARS Simulation of Beam Loss and New Collimator Impact on the CDF and DO Subdetectors','L.Y. Nicolas, N.V. Mokhov, A.I. Drozhdin','','Nikolai Mokhov','MC','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4129/m_D0-note-4129.ps','',2003,4,1,2452731,2003,4,1,2452731),(4130,'Studies of Single Electron Triggers for the Z->ee + jets and W->enu + jets Channels','Marc Buehler and Jodi Wittlin','','Jodi Wittlin','','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4130/m_zee_trigger.ps','',2003,4,1,2452731,2003,4,1,2452731),(4131,'Measurement of $Z{\\rightarrow}e^+e^-$ and $W{\\rightarrow}e^\\pm\\nu$ Production Cross Sections at the Tevatron With the DZero Detector ','Drew Alton, Harald Fox, John Gardner, Sean Mattingly, Georg Steinbr\\\"{u}ck, Julie Torborg, Marco Verzocchi, Junjie Zhu','','Sean Mattingly','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4131/m_d0note.ps','',2003,4,1,2452731,2003,4,1,2452731),(4132,'The Level 3 Tau Tool','Yann Coadou','','Yann Coadou','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4132/m_l3tau_note.ps','',2003,4,5,2452735,2003,4,17,2452747),(4133,'Measurement of b-tagging efficiency and mi-tagging rates with CSIP method','R.Demina, A.Khanov, F.Rizatdinova, E.Shabalina','','F. Rizatdinova','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4133/m_d0note_4133.ps','',2003,4,7,2452737,2003,6,17,2452808),(4134,'Survey & Alignment of the D0 Detector for Run II','R. P. Smith','None','Richard P. Smith','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4134/m_RunII_Survey_Coordinate_System_TEVI.ps','',2003,4,9,2452739,2003,4,9,2452739),(4135,'Beam Loss and Backgrounds in the CDF and D0 Detectors due to Nuclear Elastic Beam-Gas Scattering','A.I. Drozhdin, V.A. Lebedev, N.V. Mokhov, L.Y. Nicolas, D.V. Sidorov, S.I. Striganov, A.V. Tollestrup','FERMILAB-FN-734','Nikolai Mokhov','MC','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4135/m_D0-note-4135.ps','',2003,4,10,2452740,2003,4,10,2452740),(4136,'An Investigation of b-jet Energy Resolution and bbbar Mass Resolution in ZH->eebbbar and Z->bbbar ','Amber Jenkins, Anna Goussiou','','Amber Jenkins','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4136/m_note_4136.ps','',2003,4,15,2452745,2003,4,15,2452745),(4137,'D0 Luminosity in Run 2: Online Bookkeeping','Michael Begel','','Michael Begel','','','D0_PRIVATE','','','',2003,4,16,2452746,NULL,NULL,NULL,NULL),(4138,'The CKM Matrix and the Unitarity Triangle','The CKM (1st workshop) group','Proceedings of the First Workshop on the CKM Unitarity\r\n Triangle, CERN 13-16 February 2002, to appear as CERN Yellow Report','Christos Leonidopoulos','B_PHYSICS','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4138/m_020214-LEONIDOPOULOS-proceedings.ps','',2003,4,16,2452746,2003,4,16,2452746),(4139,'','Greg Landsberg','3729\r\n','nxuan','NEW','PUB','D0_PRIVATE','','','',2003,4,17,2452747,NULL,NULL,NULL,NULL),(4140,'Luminosity L3 Data Format','Brendan Casey and Richard Partridge','','Richard Partridge','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4140/m_Data_Format_v12.pdf','',2003,4,23,2452753,2005,6,23,2453545),(4141,'Measurement of the $\\rm t\\bar{t}$ production cross-section at $\\sqrt{s}=1.96$~TeV using lifetime tagging','Regina Demina, Tobias Golling, Aurelio Juste, \r\nAlexander Khanov, Flera Rizatdinova, Elizaveta Shabalina, Jonas Strandberg','','Aurelio Juste','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4141/m_note_v1_0.ps','',2003,4,25,2452755,2003,8,19,2452871),(4142,'Search for Associated Production of Chargino and Neutralino\r\nin Trilepton Final States','Ulrike Blumenschein\r\nVolker Buescher','','Ulrike Blumenschein','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4142/m_trileptons.ps','',2003,4,28,2452758,2003,5,2,2452762),(4143,'Study of the correlation between D0 Clock System timing drift and Forward Muon Scintillation Counters T0?s.','Dmitri Denisov, Andrey Shchukin','','Andrey Shchukin','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4143/m_4143.doc','',2003,5,6,2452766,2003,5,6,2452766),(4144,'leptoquark\r\n','','','cjarvis','','','D0_PRIVATE','','','',2003,5,6,2452766,NULL,NULL,NULL,NULL),(4145,'Measurement of the dijet mass cross section','Alexander Kupco, Pavel Demine, Christophe Royon, Marek Zielinski','The first measurement of the inclusive dijet mass cross section in RunII data.','Alexander Kupco','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4145/m_dijetmass.ps','',2003,5,9,2452769,2003,6,11,2452802),(4146,'Technical description of the T42 algorithm for the calorimeter noise suppression','Jean-Roch Vlimant, Ursula Bassler, Gregorio Bernardi, Sophie Trincaz-Duvoid','','vlimant','CALORIMETER','DOC','D0_PRIVATE','','$D0_PRI/4146/m_t42note.ps','',2003,5,12,2452772,2003,6,11,2452802),(4147,'Naming Scheme for Parts in the D0-Run2b Silicon Tracker','Eckhard von Toerne','','Eckhard von Toerne','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4147/m_Naming_run2b.pdf','',2003,5,13,2452773,2003,5,14,2452774),(4148,'Computing Farm Infrastructure in DAB-FCH2','Gustaaf Brooijmans','','Gustaaf Brooijmans','DAQ_ELECTRONICS','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4148/m_FCH2W_infrastructure.pdf','',2003,5,13,2452773,2003,5,13,2452773),(4149,'Irradiation of a Run IIb Four-SVX4 Chip Hybrid \r\nwith 14 MeV Protons\r\n','T. Bolton, K. Carnes, T. Gray, A. Rankin, E. von Toerne','PDF document','Eckhard von Toerne','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4149/m_hybrid-jrmtest-final.pdf','',2003,5,14,2452774,2003,5,14,2452774),(4150,'Mass constraints and decay rates in the Two Higgs Doublet Model of type II','Carlos A. Marin and B. Hoeneisen','','Bruce Hoeneisen','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4150/m_TwoHiggs_h_H.ps','',2003,5,16,2452776,2003,5,19,2452779),(4151,'Luminosity Monitor Calibration','Victor Bodyagin, Brendan Casey, Richard Partridge','','Richard Partridge','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4151/m_LM_Calibration_v12.pdf','',2003,5,21,2452781,2005,6,23,2453545),(4152,'Study of Higgs mass resolution in W H to qqbb','Paul Grannis','','Paul Grannis','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4152/m_higgs_resolution.ps','',2003,5,21,2452781,2003,5,21,2452781),(4153,'On averaging the inelastic cross sections across experiments','Heidi Schellman, Michael Begel','','begel','','DOC','D0_PRIVATE','','','',2003,5,23,2452783,NULL,NULL,NULL,NULL),(4154,'D0 Luminosity in Run 2: ORing triggers','Michael Begel','','begel','','DOC','D0_PRIVATE','','','',2003,5,23,2452783,NULL,NULL,NULL,NULL),(4155,'Search for sbottom squark pair production\r\nin ppbar collisions in the DO experiment','M. Talby, F. Villeneuve-S?guier','','Talby','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4155/m_sbottom.ps','',2003,5,27,2452787,2003,6,11,2452802),(4156,'A Fast Monte Carlo Simulation of the DO Luminosity Monitor','Joseph Tuggle, Sung Hwan Ahn, Michael Begel, John Hauptman, Jae Won Park, Richard Partridge','','begel','','DOC','D0_PRIVATE','','','',2003,5,27,2452787,NULL,NULL,NULL,NULL),(4157,'First D0 Measurement of the Inclusive Jet Cross Section in RunII','Michael Begel, Gregory A. Davis, Pavel Demine, Alexander Kupco, Christophe Royon, Markus Wobisch, Marek Zielinski','We present the first D0 measurement of the inclusive jet cross section in RunII at sqrt(s)=1960GeV','Markus Wobisch','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4157/m_4157incl.pdf','',2003,5,29,2452789,2005,1,21,2453392),(4158,'Performance of the Jet LIfetime Probability method for b-tagging in D0 data ','Daniel Bloch, Benoit Cl\\\'ement, Denis Gel\\\'e, S\\\'ebastien Greder, Isabelle Ripp-Baudot (IReS, IN2P3/CNRS, Strasbourg, France)\r\n','','Daniel Bloch','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','','',2003,5,30,2452790,2003,6,10,2452801),(4159,'SystemD or how to get signal, backgrounds and their efficiencies with real data','Benoit Cl\\\'ement, Daniel Bloch, Denis Gel\\\'e, S\\\'ebastien Greder, Anne-Catherine Le Bihan, Isabelle Ripp-Baudot \r\n(IReS IN2P3/CNRS Strasbourg, France)','','Daniel Bloch','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','','',2003,5,30,2452790,2003,6,11,2452802),(4160,'Evaluation of Monte Carlo efficiencies and Drell Yan Background to $z$ $\\rightarrow$ $\\mu$ $\\mu$ usingt PMCS','Paul Telford','','Paul Telford','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4160/m_emc.ps','',2003,6,3,2452794,2003,6,3,2452794),(4161,'The P14 Tracker Realignment','G. Borissov, H. Greenlee, M. Hildreth, K. Hanagaki, A. Kharchilava, S. Kulik, M. Zdrazil','','Herbert Greenlee','ALGORITHMS','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4161/m_align.pdf','',2003,6,4,2452795,2003,6,4,2452795),(4162,'A Fast Algorithm to Find Clusters for L2CPS','Qichun Xu ','description of algorithms and implementation for the L2CPS stereo DFE boards (DFEF)','Qichun Xu','PRESHOWER','DOC','PUBLIC','POSTSCRIPT','$D0_PUB/4162/m_cpsl2note.ps','',2003,6,6,2452797,2003,6,18,2452809),(4163,'DFEA Technical Design Report','Jamieson Olsen ','CFT/CPS Axial track finder DFE daughterboard algorithms and implemenation.','Jamieson Olsen','TRIGGER','DOC','PUBLIC','OTHER','$D0_PRI/4163/m_4163_v101.pdf','',2003,6,6,2452797,2005,3,17,2453447),(4164,'The D0 Upgrade: Central Fiber Tracker, Technical Design Report','D. Adams et al.','Central Fiber Tracker, Technical Design Report','Jamieson Olsen','FIBER_TRACKER','DOC','PUBLIC','OTHER','$D0_PUB/4164/m_cft_tdr.pdf','',2003,6,6,2452797,2003,6,18,2452809),(4165,'Status of the Fast Simulation Program PMCS, v01-98-00','Sarah Eno, Marco Verzocchi','','Sarah Eno','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/4165/m_pmcsstatus_v01-98-00.pdf','',2003,6,10,2452801,2003,6,10,2452801),(4166,'Search for bottom squark cascade decays in two electrons + jets + missing Et channel','St?phanie BAFFIONI, Elem?r NAGY','','baffioni','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4166/m_susy_1206.ps','',2003,6,11,2452802,2003,6,12,2452803),(4167,'Front End Busy Task Force Report','Fred Borcherding, Aurelio Juste, Eric Kajfasz, Don Lincoln, Ronald Lipton, Marvin Johnson, Yaroslav Kulik, Michael Weber','','Ronald Lipton','DAQ_ELECTRONICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4167/m_feb_note.doc','',2003,6,11,2452802,2003,6,25,2452816),(4168,'Alignment Requirements for the Run IIb Silicon Tracker','James Fast','','James Fast','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4168/m_d0note4168.ps','',2003,6,13,2452804,2003,6,25,2452816),(4169,'Charge to Voltage conversion for muon pulses in A-phi scintillation counters','Shashikant R. Dugad, Al Ito','','Shashikant R. Dugad','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4169/m_qtv_02.ps','',2003,6,18,2452809,2003,6,18,2452809),(4170,'The btags_cert CVS Package: A Uniform b-tagging Interface\r\nfor D0 Analyses','S. Towers','','Sherry Towers','','','D0_PRIVATE','POSTSCRIPT','/RunII/home/smjt/m_doc_v3.ps','',2003,6,23,2452814,2003,7,24,2452845),(4171,'em_cert: EM Certification Tools','Junjie Zhu','EM Certification Tools','Junjie Zhu','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4171/m_emcert.ps','',2003,6,25,2452816,2003,10,13,2452926),(4172,'ZH->vvbb Analysis for the D0 Higgs Sensitivity Group','Wade Fisher','','Wade Fisher','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4172/m_ZHanal_HSG.ps','',2003,6,26,2452817,2003,7,17,2452838),(4173,'Electron Neutrino Correction to Jet Energy Scale','I. Blackler, G. Davies, A. Goussiou','','Ian Blackler','','DOC','D0_PRIVATE','POSTSCRIPT','','',2003,6,30,2452821,NULL,NULL,NULL,NULL),(4174,'Understanding the McFarm, UTA\'s Linux-Farm controller\r\nfor D0 MC generation.','Heuhnu Kim, Jae Yu, Drew Meyer, Mark Sosebee, \r\nPrashant Bhamidipati, Karthik Gopalratnan','','Heuhnu Kim','MC','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4174/m_dn-4174.ps','',2003,6,30,2452821,2004,5,4,2453130),(4175,'Measurement of the top pair production cross section in the all-jets channel using p13 data','Freya Blekman, Marcel Vreeswijk','This note describes the current progress on the measurement of the ttbar -> hadrons cross section for the start of run 2a (production release p13)','Freya Blekman','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4175/m_d0note_4175.pdf','',2003,7,1,2452822,2003,10,3,2452916),(4176,'A Proposal to Physics Topics with Charged Particles in Jets at D0','Zhengguo Zhao, Qichun Xu, Bing Zhou, Yi Jiang','','Qichun Xu','QCD','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4176/m_qcdproposal.ps','',2003,7,2,2452823,2003,7,2,2452823),(4177,'The Grounding Study for Run 2B SMT Layer0','Kazu Hanagaki and Marvin Johnson','','Kazu Hanagaki','SILICON','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4177/m_grounding.ps','',2003,7,3,2452824,2003,7,3,2452824),(4178,'Supplement to D0note 4116 on the measurement of the ttbar cross section at sqrt(s)=1.96 TeV','Anderson,Barberis,Bassler,Beaudette,Bernardi,Cho,Clement, Demina,Fiedler,Gerber,Golling,Grivaz,Groer,Han,\r\n Heinson,Iashvili,Juste,Li,Kado,Kehoe,Khanov,Klute,Kozminski,Quadt,Quinn,Mal,O\'Neil,Parua,Perea,Phaf,Rizatdinova,Schwartzman,Schwienhorst,Shabalina,Strandberg,Whiteson,Zielinski,Zitoun','','Top Group','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4178/m_d0note4178.ps','',2003,7,3,2452824,2004,1,20,2453025),(4179,'Search for Large Extra Dimensions in the Dielectron and Diphoton Channels With 120 pb^-1 of Run II Data','Greg Landsberg','','Greg Landsberg','NEW','DOC','D0_PRIVATE','POSTSCRIPT','','',2003,7,6,2452827,NULL,NULL,NULL,NULL),(4180,'Motion of a Charged Particle in a Magnetic Field','H. Greenlee','','H. Greenlee','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4180/m_motion.pdf','',2003,7,7,2452828,2003,7,21,2452842),(4181,'','','','3714','','','D0_PRIVATE','','','',2003,7,7,2452828,NULL,NULL,NULL,NULL),(4182,'Update on the b-quark Jet Identification with Secondary Vertex Reconstruction using D0reco version p13','L. Feligioni, A. Schwartzman, L. Sonnenschein, M. narain','','Meenakshi Narain','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4182/m_secvertex_d0note4182n.ps','',2003,7,9,2452830,2003,7,21,2452842),(4183,'Measurement of the Ratio of Production Cross Sections $W{\\rightarrow}e^\\p\r\nm\\nu / Z{\\rightarrow}e^+e^-$ at the Tevatron \\\\ Using the DZero Detector','Sean Mattingly, Heidi Schellman, Junjie Zhu','','Sean Mattingly','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4183/m_d0note.ps','',2003,7,11,2452832,2003,7,11,2452832),(4184,'Electron Likelihood','Daniel Whiteson, Lukas Phaf','','Daniel Whiteson','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4184/m_lhood.ps','',2003,7,11,2452832,2003,7,21,2452842),(4185,'Measurement of the ttbar cross section at sqrt{s}=1.96 TeV in muon-plus-jets channel','Markus Klute','','Markus Klute','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4185/m_note4185.ps','',2003,7,13,2452834,2003,11,5,2452949),(4186,'A Trigger Strategy for Associated Higgs Boson Production\r\nat L = 2E32 ','A.S. Turcot','','Andre S. Turcot','TRIGGER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4186/m_higgs_trigger.ps','',2003,7,14,2452835,2003,7,14,2452835),(4187,'Measurement of the second binomial moment and the fragmentation function of jets into charged hadrons','Qichun Xu, Zhengguo Zhao, Bing Zhou','','Qichun Xu','QCD','DOC','D0_PRIVATE','POSTSCRIPT','','',2003,7,15,2452836,NULL,NULL,NULL,NULL),(4188,'Combining the CDF and D0 R measurements for Summer, 2003','Sarah Eno, Harald Fox, Martin Gruenewald, Eva Halkiadakis, Eric James, Ashutosh Kotwal, Giulia Manca, Sean Mattingly, Pasha Mura, Michael Schmitt, Georg Steinbrueck, Alexei Varganov, Marco Verzocchi, Junjie Zhu (CDF and D0 collaborations, the Tevatron Electroweak Working Group)','','Marco Verzocchi','WZ','PUB','D0_PRIVATE','POSTSCRIPT','','',2003,7,16,2452837,NULL,NULL,NULL,NULL),(4189,'Dijet Mass Resolution','Anna Goussiou','','Anna Goussiou','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4189/m_note.ps','',2003,7,16,2452837,2003,7,30,2452851),(4190,'Search for 2nd-Generation Leptoquarks in the mumu+jj Channel in ppbar Collisions at sqrt{s} = 1.96 TeV','Tim Christiansen','','Tim Christiansen','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4190/m_LQNote_Summer03_v1.0.ps','',2003,7,16,2452837,2003,8,7,2452859),(4191,'systematic error on the ttbar->e+jet channel due to JES uncertainties','jean-roch Vlimant, marumi Kado','','vlimant jean-roch','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4191/m_JES_top.ps','',2003,7,17,2452838,2003,7,22,2452843),(4192,'D0 Luminosity in Run 2: Trigger Rules','Michael Begel, Elizabeth Gallas','','begel@fnal.gov','','','D0_PRIVATE','','','',2003,7,17,2452838,NULL,NULL,NULL,NULL),(4193,'Combining the CDF and D0 R Measurements for Summer, 2003','S. Eno, H. Fox, M. Grunewald, E. Halkiadakis, E. James, A. Kotwal, G. Manca, S. Mattingly, P. Murat, M. Schmitt, G. Steinbruck, A. Varganov, M. Verzocchi, J. Zhu','','Sarah Eno','WZ','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4193/m_combine_r_summer03.ps','',2003,7,17,2452838,2003,7,23,2452844),(4194,'Measurement of the ttbar cross section at sqrt(s)=1.96 TeV in the e+jets channel','Lukas Phaf, Ia Iashvili','','Lukas Phaf','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4194/m_d0note4194.ps','',2003,7,18,2452839,2003,10,7,2452920),(4195,'Search for Gauge Mediated SUSY in gamma-gamma-MET final state','Yuri Gershtein','','Yuri Gershtein','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4195/m_note4195.ps','',2003,7,18,2452839,2003,11,19,2452963),(4196,'Analysis of the ttbar Cross Section in the Dielectron Channel','J. Kozminski, R. Kehoe, H. Weerts','','Joseph Kozminski','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','','',2003,7,18,2452839,NULL,NULL,NULL,NULL),(4197,'Production of ttbar in the emujj channel at Run II','Daniel Whiteson ','','Daniel Whiteson','TOP','PHYS','D0_PRIVATE','','$D0_PRI/4197/m_emu_top.ps','',2003,7,19,2452840,2003,10,31,2452944),(4198,'The e-mu Final State','Daniel Whiteson','','Daniel Whiteson','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','','',2003,7,20,2452841,NULL,NULL,NULL,NULL),(4199,'The effect of losing the inner silicon layer on b-tagging performance in Run IIA','A.Khanov, F.Rizatdinova','','Flera Rizatdinova','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4199/m_d0note_4199.ps','',2003,7,21,2452842,2003,7,21,2452842),(4200,'Towards a Measurement of the ttbar Cross Section at sqrt(s)=1.96 TeV Using Dimuon Events','Stefan Anderson, Susan Burke, Ken Johns, Bob Kehoe, Jeff Temple','','Stefan Anderson','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4200/m_dimuon_top_xsec_LP2003.pdf','',2003,7,21,2452842,2003,10,7,2452920),(4201,'Central Muon Scintillator Time of Flight Corrections','S. Doulas, M. Eads, D. Hedin, A. Ito','','M. Eads','MUON','','D0_PRIVATE','','$D0_PRI/4201/m_d0note4201_tof_corrections.pdf','',2003,7,22,2452843,2004,10,19,2453298),(4202,'Time-of-flight measurement in the Central Fiber Tracker','J. Estrada, C. Garcia, B. Hoeneisen and P. Rubinov','','Bruce Hoeneisen','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4202/m_z.ps','',2003,7,22,2452843,2003,7,22,2452843),(4203,'Sensitivity Estimations in the Higgs Search','Chris Tully','','Chris Tully','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4203/m_clspaper2.ps','',2003,7,22,2452843,2003,7,22,2452843),(4204,'','','','YILDIRIM D. M','','','D0_PRIVATE','','','',2003,7,22,2452843,NULL,NULL,NULL,NULL),(4205,'Muon Isolation for Topologies with Large Hadronic Activity','YILDIRIM D. MUTAF','','YILDIRIM D. MUTAF','MUON','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4205/m_note4205.ps','',2003,7,22,2452843,2003,8,5,2452857),(4206,'Measurement of the t\\bar t production cross section in the lepton+jets channels with soft muon tag','F. Beaudette and J.-F. Grivaz','','Jean-Francois Grivaz','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4206/m_top.ps','',2003,7,23,2452844,2003,8,25,2452877),(4207,'Cross section limits in exotic Higgs models in H->WW->enuenu\r\nand H->WW->enumunu channels in D0 data from Run II','Marc Hohlfeld','','Marc Hohlfeld','NEW','','D0_PRIVATE','','$D0_PRI/4207/m_hww_summer2003.ps','',2003,7,23,2452844,2003,8,26,2452878),(4208,'Preparation of a Desktop Linux Cluster for DO MonteCarlo Production\r\n','Horst Severini, University of Oklahoma\r\nJoel Snow, Langston University\r\n','','Horst Severini','SOFTWARE_INFRA','DOC','D0_PRIVATE','OTHER','$D0_PRI/4208/m_DesktopMcFarmHowto.pdf','',2003,7,23,2452844,2003,8,1,2452853),(4209,'Effect of Lead Sheets in Reducing D0 Central Muon Octant 1 and 2 Scintillator Rates.','Diehl, Doulas, Bodyagin','','Tom Diehl','MUON','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4209/m_lead_top.ps','',2003,7,24,2452845,2003,7,24,2452845),(4210,'Reconstruction of tau leptons in hadronic final states at D0 in Run 2','D. Chakraborty, Y. Coadou, S. Duensing, C. Galea, Y. Gershtein, A-C. LeBihan, C Noeding, S. Protopopescu','','Yuri Gershtein','ALGORITHMS','','D0_PRIVATE','','$D0_PRI/4210/m_taucert_07-2003.pdf','',2003,7,25,2452846,2004,3,19,2453084),(4211,'Top quark mass and decay properties at Fermilab Tevatron','Robert Zitoun, for the CDF and D0 collaborations','Talk presented at Moriond 2003, QCD session','Robert Zitoun','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4211/m_moriond.ps','',2003,7,26,2452847,2003,7,26,2452847),(4212,'Impact of Jet resolution uncertainties on the measurment of the ttbar production in the l+jets and ll channels','Jean-Roch Vlimant, Emmanuel Busato','','vlimant jean-roch','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',2003,7,29,2452850,NULL,NULL,NULL,NULL),(4213,'Luminosity Certification for 2001-2003','Gilvan Alves, Michael Begel, Brendan Casey, Tamsin Edwards,\r\nAlexander Kupco, Richard Partridge, Heidi Schellman, \r\nAndre Sznajder, Marco Verzocchi','','begel@fnal.gov','','ANAL','D0_PRIVATE','','','',2003,7,29,2452850,NULL,NULL,NULL,NULL),(4214,'Search for Z\' in dielectron channel in Run II (LP 2003)','Mingcheng Gao','','Mingcheng Gao','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4214/m_ZprimeLP03.ps','',2003,7,30,2452851,2003,8,7,2452859),(4215,'mistake','Michael Friedman','','Michael Friedman','FIBER_TRACKER','DOC','D0_PRIVATE','TEXT','$D0_PRI/4215/m_index.html','',2003,7,31,2452852,2004,7,22,2453209),(4216,'cft offline monitoring notes','Michael Friedman','correction to D0 note 4215','Michael Friedman','FIBER_TRACKER','DOC','D0_PRIVATE','TEXT','$D0_PRI/4216/m_index.html','',2003,7,31,2452852,2003,7,31,2452852),(4217,'Search for Doubly-charged Higgs Boson Production in\r\nthe Decay H++ to mu+ mu+ mu- mu- ','Stefan Soldner-Rembold, Marian Zdrazil','Doubly charged Higgs Search','Marian Zdrazil','MUON','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4217/m_d0note4217.ps','',2003,7,31,2452852,2003,8,20,2452872),(4218,'Understanding the di-muon data','Marian Zdrazil','Technical aspects of the di-muon analysis : luminosity,\r\ntrack reconstruction, trigger, loose, isolation efficiency.\r\nMass resolution issues.','Marian Zdrazil','MUON','PHYS','D0_PRIVATE','POSTSCRIPT','','',2003,7,31,2452852,NULL,NULL,NULL,NULL),(4219,'A study of Bs-J/psi phi Decays with the D0 Detector at fermilab','Chunhi Luo, Daria Zieminska','','daria','B_PHYSICS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4219/m_bs.ps','',2003,8,3,2452855,2003,8,5,2452857),(4220,'A study of Bd-J/psi K* Decays with the D0 Detector at fermilab','Chunhi Luo, Daria Zieminska','','daria','B_PHYSICS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4220/m_bd.ps','',2003,8,3,2452855,2003,8,5,2452857),(4221,'A study of Bs-J/psi phi and Bd-J/psi K* Decays with the D0 Detector at fermilab','Chunhi Luo, Daria Zieminska','','daria','B_PHYSICS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4221/m_bs_21sets.ps','',2003,8,3,2452855,2003,8,5,2452857),(4222,'Search for Narrow t-tbar Resonances in p-pbar Collisions at \\root{s} = 1.8 TeV. ','V.M. Abazov et. al.','Submitted to Physical Review Letters.','Supriya Jain','TOP','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4222/m_d0note_4222.ps','',2003,8,4,2452856,2003,8,4,2452856),(4223,'Search for the Higgs boson in H->WW->mu nu mu nu decays at DO in Run II','Johannes Elmsheuser','','Johannes Elmsheuser','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4223/m_note4223_v1.ps','',2003,8,4,2452856,2003,8,19,2452871),(4224,'Towards a Measurement of the W+2jets and Wbbbar Production Cross Section at sqrt(s)=1.96 TeV','Stephanie Beauceron, Gregorio Bernardi, Sophie Trincaz-Duvoid','','Gregorio Bernardi','CALORIMETER','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4224/m_wbb.ps','',2003,8,4,2452856,2003,8,15,2452867),(4225,'Search for the Higgs boson in H->WW->lnulnu (l=e, mu)\r\ndecays at D0 in Run II','Johannes Elmsheuser, Marc Hohlfeld','','Marc Hohlfeld','NEW','','D0_PRIVATE','','$D0_PRI/4225/m_note4225.ps','',2003,8,4,2452856,2003,8,22,2452874),(4226,'Search for First Generation Leptoquarks in p-antiproton collisions at sqrt(s)=1.96TeV in the final state electron 2jets and missing transverse energy','A. Cothenet, M.C Cousinou, G. Landsberg','','M.C Cousinou','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4226/m_LQ.ps','',2003,8,7,2452859,2003,8,7,2452859),(4227,'Search for first Generation Leptoquarks in the Dielectron Channel','Shaohua Fu, Vishnu Zutshi','Approved result for Lepton Photon 2003','Shaohua Fu','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4227/m_LQ.ps','',2003,8,7,2452859,2003,8,7,2452859),(4228,'Combined Limits on First Generation Leptoquarks in the eejj and evjj Channels ','Marie-Claude Cousinou, Alexis Cothenet, Shaohua Fu,\r\nGreg Landsberg, and Vishnu Zutshi','Lepton-Photon 2003 Analysis Note','Greg Landsberg','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2003,8,7,2452859,NULL,NULL,NULL,NULL),(4229,'Search for Heavy Resonances in the Di-Muon Channel With 100pb-1 of Run II Data','Ryan J. Hooper, Greg Landsberg','','Ryan J. Hooper','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4229/m_MUMU_Zprime_LP03.ps','',2003,8,8,2452860,2003,8,8,2452860),(4230,'Search for Large Extra Spatial Dimensions in the Di-Muon Channel With 100pb-1 of Run II Data','Ryan J. Hooper, Greg Landsberg','','Ryan J. Hooper','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4230/m_MUMU_ED_LP03.ps','',2003,8,8,2452860,2003,8,8,2452860),(4231,'Measurement of cross section times branching ratio for Z->mu+mu- in ppbar collisions at 1.96 TeV.','Emily Nurse and Paul Telford','','Emily Nurse','WZ','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4231/m_zmumu_summer.ps','',2003,8,14,2452866,2003,8,15,2452867),(4232,'A Measurement of the Lambda_b Baryon Lifetime Using\r\nthe Lambda_b -> J/psi Lambda Decay Mode','Abaz Kryemadhi, Rick Van Kooten','','Rick Van Kooten','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4232/m_lambda_b_lifetime.ps','',2003,8,15,2452867,2003,8,18,2452870),(4233,'System tests of the new electronics for the Central\r\nFiber Tracker and Preshower detectors','J. Estrada, C. Garcia, B. Hoeneisen and P. Rubinov','','Bruce Hoeneisen','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4233/m_396.ps','',2003,8,15,2452867,2003,8,15,2452867),(4234,'The D0 Solenoid Magnetic Field','H.E. Fisk, R.P. Smith and B. Hoeneisen','','Bruce Hoeneisen','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4234/m_B_4234.ps','',2003,8,20,2452872,2003,8,20,2452872),(4235,'Gas gain response to pressure variations for MDT and PDT gas mixtures','D. Denisov, V. Malyshev','','Dmitri Denisov','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4235/m_PressureTest.doc','',2003,8,20,2452872,2003,9,15,2452898),(4236,'Results of the DO Higgs Sensitivity Study','Levan Babukhadia, Wade Fisher, Anna Goussiou,Boaz Klima, Qizhong Li, Meenakshi Narain, Rich Partridge, Flera Rizatdinova, Chris Tully, Andre S. Turcot','','Wade Fisher','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4236/m_HSGnote.pdf','',2003,8,20,2452872,2003,9,23,2452906),(4237,'Finite Element Analysis of the Layers 0 and 1 Support Structures for the Run2b Silicon Tracker','Colin H. Daly','','Henry Lubatti','SILICON','PUB','D0_PRIVATE','OTHER','','',2003,8,21,2452873,NULL,NULL,NULL,NULL),(4238,'Searches at the Run II Tevatron Collider','Leslie Groer for the CDF and D0 collaborations','Proceedings for the 8th Conference on the Intersections of Particle and Nuclear Physics (CIPANP 2003), New York City, May 19-24, 2003','groer','NEW','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4238/m_groer_cipanp03.ps','',2003,8,21,2452873,2003,8,21,2452873),(4239,'Study of reconstruction efficiency, b-tagging efficiency and mistag rates in Run2b','A. Khanov, M. Narain, F. Rizatdinova','','Meenakshi Narain','ALGORITHMS','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/4239/m_run2b_btag_d0note.ps','',2003,8,22,2452874,2003,8,25,2452877),(4240,'D0 Calorimeter Upgrades for Tevatron Run II','Leslie Groer for the D0 Collaboration','Proceedings for the IXth International Conference on Calorimetry in Particle Physics, Annecy, France, Oct 9-14, 2000.','groer','CALORIMETER','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4240/m_groer_calor2k.ps','',2003,8,22,2452874,2003,8,22,2452874),(4241,'Top Quark Mass Measurements at the Tevatron','Florencia Canelli for the CDF and D0 collaborations','Proceedings for the 8th Conference on the Intersections of Particle and Nuclear\r\nPhysics (CIPANP 2003), New York City, May 19-24, 2003','Florencia Canelli','TOP','PHYS','PUBLIC','POSTSCRIPT','$D0_PRI/4241/m_canelli_cipanp03.ps','',2003,8,27,2452879,2003,10,10,2452923),(4242,'Search for supersymmetric new physics in the e-mu final state at DZero using QUAERO.','Daniel Whiteson','','Daniel Whiteson','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','','',2003,8,29,2452881,NULL,NULL,NULL,NULL),(4243,'Search for RpV SUSY in the tri-electron channel (lambda_121 coupling)','Y. Arnoud, A-M. Magnan, G.Sajot','','sajot','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4243/m_trielectron_rpv_aug3.ps','',2003,9,1,2452884,2003,9,4,2452887),(4244,'Inclusive B Lifetime using B->D0 mu X','B. Abbott, T. Bose, V. Jain, C. Leonidopoulos, W. Taylor','','Wendy Taylor','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4244/m_d0note_4244_v103.ps','',2003,9,2,2452885,2003,9,2,2452885),(4245,'Search for the Associated Production of Chargino and Neutralino in Trilepton Final States','Ulrike Blumenschein\r\nVolker Buescher','A search has been performed for the trilepton decay signature from the associated chargino-neutralino production with data corresponding to an integrated luminosity of 132/pb.','Ulrike Blumenschein','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4245/m_trileptons.pdf','',2003,9,3,2452886,2003,10,5,2452918),(4246,'Combined Results for the ttbar Cross Section Measurement','Emanuela Barberis, Jean-Francois Grivaz and Marumi Kado','','Marumi Kado','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4246/m_combination.ps','',2003,9,3,2452886,2003,9,3,2452886),(4247,'Correcting the reconstructed jet\'s 4-vector to the parton level. ','Sarosh N. Fatakia, Ulrich Heintz','','Sarosh N. Fatakia','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4247/m_d0_note_4247.pdf','',2003,9,5,2452888,2003,11,10,2452954),(4248,'Energy Correction for Semi-leptonic Decays of b-Jets, using p13','M. Petteni, G. Davies, A. Goussiou','','Michele Petteni','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4248/m_p13_semilep_mu.ps','',2003,9,9,2452892,2003,9,12,2452895),(4249,'The Stimulus Test Stand','Leonard Christofek, Aaron Reinhard, Petros Rapidis','','Leonard Christofek','SILICON','DOC','PUBLIC','OTHER','$D0_PRI/4249/m_stimulus_test_stand.doc','',2003,9,11,2452894,2005,6,20,2453542),(4250,'Preliminary Test Results for the SVX4','Leonard Christofek, Kazu Hanagaki, Petros Rapidis, Mike Utes','','Leonard Christofek','SILICON','DOC','PUBLIC','OTHER','$D0_PRI/4250/m_svx4_v2_test_results.doc','',2003,9,11,2452894,2005,6,20,2453542),(4251,'Test Results for the SVX4 Version A/B Chip','Leonard Christofek, Kazu Hanagaki, Miao Jun, Daekwang Kau, Petros Rapidis, Mike Utes','','Leonard Christofek','SILICON','DOC','PUBLIC','OTHER','$D0_PRI/4251/m_svx4_vb_test_results.doc','',2003,9,11,2452894,2005,6,20,2453542),(4252,'The SVX4 User\'s Manual','Leonard Christofek, Kazu Hanagaki, Jim Hoff, Marvin Johnson, Brad Kreiger, Petros Rapidis, Maurice Garcia-Sciveres, Mike Utes, Marc Weber, Ray Yarema, Tom Zimmerman ','','Leonard Christofek','SILICON','DOC','PUBLIC','OTHER','$D0_PRI/4252/m_svx4_user_guide.doc','',2003,9,11,2452894,2005,6,21,2453543),(4253,'Missing Et Significance Algorithm: User\'s Guide','Ariel Schwartzman','','Ariel Schwartzman','CALORIMETER','','D0_PRIVATE','','$D0_PRI/4253/m_metSig.ps','',2003,9,11,2452894,2003,9,11,2452894),(4254,'Missing Et Significance Algorithm in RunII data','Ariel Schwartzman','','Ariel Schwartzman','CALORIMETER','','D0_PRIVATE','','$D0_PRI/4254/m_metNote.ps','',2003,9,11,2452894,2003,9,11,2452894),(4255,'Measurement of the Z tau tau cross section using the muon-hadronic tau final state at DO in Run 2','Silke Duensing','','Silke Duensing','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4255/m_muhad_0910-2003_v1.4.ps','',2003,9,11,2452894,2003,9,11,2452894),(4256,'Correction Factor in the inclusive B lifetime at $D\\O$','E. De La Cruz Burelo, A. Sanchez-Hernandez, \r\nH. Castilla-Valdez','We report how the correction factor, needed in the \r\ninclusive B hadron lifetime measurement, was determinated.\r\nSystematic uncertainties were determinated.','Eduard De La Cruz Burelo','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4256/m_CFNote.ps','',2003,9,12,2452895,2003,9,12,2452895),(4257,'Inclusive B lifetime at $D\\0$','E. De La Cruz Burelo, H. Castilla-Valdez, \r\nA. Sanchez-Hernandez, B.C.K. Casey','We are reporting the measurement on the inclusive B hadrons lifetime in the inclusive decay B$\\rightarrowJ/$\\psi$ + X.','Eduard De La Cruz Burelo','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4257/m_BLifetimeNote.ps','',2003,9,12,2452895,2003,9,13,2452896),(4258,'MonteCarlo cross check of the inclusive B lifetime at D\\0\\','E. De La Cruz Burelo, H. Castilla-Valdez, \r\nA. Sanchez-Hernandez','We reported a montecarlo study about the inclusive B lifetime. A bias event by event was found.','Eduard De La Cruz Burelo','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4258/m_MCCrossCheckNote.ps','',2003,9,13,2452896,2003,9,13,2452896),(4259,'Understanding the dark current and rate effects of\r\nVisible Light Photon Counters.','J. Estrada, C. Garcia, B. Hoeneisen, D. Lincoln, P. Rubinov','draft','Juan Estrada','FIBER_TRACKER','','D0_PRIVATE','POSTSCRIPT','/RunII/home/estrada/m_4259_v2.ps','',2003,9,16,2452899,2003,12,9,2452983),(4260,'Probabilistic Approach in the Identification of Z Bosons','YILDIRIM D. MUTAF','','YILDIRIM D. MUTAF','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4260/m_note4260.pdf','',2003,9,17,2452900,2003,12,8,2452982),(4261,'Missing ET Significance Algorithm with p13 Run II data\r\nApplication to e + multijets events','Arnaud Duperrin','','Arnaud Duperrin ','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4261/m_met_significance.ps','',2003,9,17,2452900,2003,9,17,2452900),(4262,'Data Streaming Review Committee Interim Report','Laurent Duflot, Leslie Groer, Marumi Kado, Avto Kharcilava, \r\nGreg Landsberg, Peter Maettig, Rick Van Kooten (chair)','','Rick Van Kooten','DATA_MANAGE','DOC','D0_PRIVATE','OTHER','$D0_PRI/4262/m_v2p0_streaming_int.pdf','',2003,9,19,2452902,2003,9,19,2452902),(4263,'Revertexing in TMB\'s using offline Vertex Infrastructure','G. Watts','','Gordon Watts','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4263/m_vertextmb.pdf','',2003,9,21,2452904,2003,9,21,2452904),(4264,'Studies of Upsilon(1S) bottomonium state production with the D0 detector at Fermilab','Daniela Bauer, Jundong Huang and Andrzej Zieminski','internal D0 note','Andrzej Zieminski','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4264/m_ups_note.ps','',2003,9,24,2452907,2004,7,23,2453210),(4265,'Data Quality: Online Monitoring Status','Pushpa Bhat','','Pushpa Bhat','ONLINE','DOC','D0_PRIVATE','','','',2003,9,26,2452909,NULL,NULL,NULL,NULL),(4266,'Direct measurement of the top quark mass in the lepton+jets channel using Run II data','Daniela Bauer, Kevin Black, Sarosh Fatakia, Tobias Golling,\r\nUlrich Heintz, Ia Iashvili, Aurelio Juste, Slava Kulik,\r\nMartijn Mulders, Meenakshi Narain, Philip Perea, Dennis Shpakov, Erich Varnes, Yevgeniy Yen','','Ia Iashvili for the Top Properties group','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4266/m_topmass_moriond2003.ps','',2003,9,29,2452912,2003,9,29,2452912),(4267,'Correction of the energy sharing problem in the calorimeter data','Jan Stark','','stark@in2p3.fr','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2003,10,1,2452914,NULL,NULL,NULL,NULL),(4268,'Correction of the tower two problem in the CAL data','Jan Stark','','stark@in2p3.fr','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2003,10,1,2452914,NULL,NULL,NULL,NULL),(4269,'Do We Understand the Lambda_b Signal?','Daria Zieminska','','daria','B_PHYSICS','','D0_PRIVATE','','$D0_PRI/4269/m_lbnote.ps','',2003,10,1,2452914,2003,10,2,2452915),(4270,'Towards CP-violation results from D0 - proceedings from EPS 2003','Paul Balm','','Paul Balm','B_PHYSICS','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4270/m_CPresultsD0_note.ps','',2003,10,3,2452916,2003,10,3,2452916),(4271,'Vertexing for the Level 3 Trigger','Chris Barnes, Ray Beuselinck, Per Jonsson','','Chris Barnes','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4271/m_L3Vertexing.pdf','',2003,10,5,2452918,2005,7,19,2453571),(4272,'Level 3 triggers for Bs mixing','Chris Barnes, Rick Jesik','','Chris Barnes','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4272/m_IPTriggers.pdf','',2003,10,8,2452921,2005,7,19,2453571),(4273,'Charged B lifetime at Dzero','P. Podesta-Lerma ,H. Castilla-Valdez, A. Sanchez-Hernandez, B.C.K Casey. ','We present the result of the lifetimeof the charged B meson for fall conferences.\r\n','Pedro Podesta','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4273/m_BplusLifetimev1.ps','',2003,10,9,2452922,2003,10,27,2452940),(4274,'Search for Single Top Production at Run II in the Electron+Jets Channel','Emmanuel Busato, Bernard Andrieu and Marumi Kado','','Emmanuel Busato','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4274/m_single_top.ps','',2003,10,10,2452923,2003,10,20,2452933),(4275,'Forward muon system monitoring using single muon production','D.Bandurin, D.Denisov, G.Erusalimtsev','','Bandurin Dmitry','MUON','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4275/m_monitor.ps','',2003,10,13,2452926,2003,11,6,2452950),(4276,'Search for Extra Dimensions at Hadron Colliders','Michiel Sanders','Presented at the International Europhysics Conference on\r\nHigh Energy Physics, Aachen, Germany, July 2003','Michiel Sanders','NEW','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4276/m_procEPS2003_d0note.ps','',2003,10,14,2452927,2003,10,14,2452927),(4277,'How to Efficiently Build, Run and Maintain Examine Programs','Michiel Sanders','Tips for building and running examine programs in the\r\ncontrol room in an efficient and organized way','Michiel Sanders','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4277/m_examine_structure.ps','',2003,10,15,2452928,2003,10,15,2452928),(4278,'Search for SUSY in Gauge Mediated and Anomaly Mediated Supersymmetry Breaking Models','Thomas Nunnemann for the D0 Collaboration','Proccedings of the International Europhysics Conference on High Energy Physics EPS (July 17th-23rd 2003)','Thomas Nunnemann','NEW','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4278/m_nunnemann_eps2003.ps','',2003,10,15,2452928,2003,10,15,2452928),(4279,'','','','3287','','','D0_PRIVATE','','','',2003,10,16,2452929,NULL,NULL,NULL,NULL),(4280,'Measurement of Lifetime Ratio for Charged and Neutral B Mesons ','G.Borissov, S.Burdin, A.Nomerotski','','Andrei Nomerotski','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4280/m_paper-1.3.ps','',2003,10,22,2452935,2004,8,10,2453228),(4281,'Operation Readiness Clearance Information \r\nfor \r\nUMD Power Supply Interface/Controller','R. Baum','','Terrence Toole','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4281/m_4281_L2rackModule_psic.pdf','',2003,10,23,2452936,2003,10,23,2452936),(4282,'Operation Readiness Clearance Information \r\nfor \r\nDZero Level 2 Electronics Racks','R. Baum and T. Toole','','Terrence Toole','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4282/m_4282_L2racks_orc.pdf','',2003,10,23,2452936,2003,10,23,2452936),(4283,'PDT Pad Data Access and Preliminary Studies','Gavin Hesketh','','Gavin Hesketh','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4283/m_pads_note.ps','',2003,10,27,2452940,2003,10,28,2452941),(4284,'Measurement of cross section times branching ratio for Z->mu+mu- in ppbar collisions at 1.96 TeV. (Abbreviated version).','Emily Nurse and Paul Telford','','Emily Nurse','WZ','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4284/m_4284.ps','',2003,10,27,2452940,2003,10,27,2452940),(4285,'The D0 Forward Proton Detector (FPD) Status','Jorge Barreto (for the D0 Collaboration)','Invited Talk presented at the 5th Small-x and Diffraction Workshop, Fermilab, Sept. 17-20, 2003','Jorge Barreto','QCD','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4285/m_small_x.ps','',2003,10,28,2452941,2003,10,29,2452942),(4286,'\"Ring-of-Welding\" and Calorimeter Noise Characteristics ','Diehl, Arov, Askew ...','','Tom Diehl','CALORIMETER','MEMO','D0_PRIVATE','','$D0_PRI/4286/m_Calornote.ps','',2003,11,1,2452945,2003,11,14,2452958),(4287,'Software for the new C-Hole counters','Daniela Bauer','This note describes the implementation of the new muon system C-hole counters in the D0 software.','Daniela Bauer','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4287/m_note4287.ps','',2003,11,7,2452951,2003,11,10,2452954),(4288,'Memo Documenting the Issues with Calorimeter Corrections in p13 and p14','Leslie Groer, Jan Stark, Robert Zitoun','','Leslie Groer','CALORIMETER','MEMO','D0_PRIVATE','TEXT','$D0_PRI/4288/m_weights_memo_v10.txt','',2003,11,9,2452953,2003,11,9,2452953),(4289,'Recent DO Results at Run II','Stefan Soldner-Rembold','submitted to the proceedings of\r\nthe 4th International Conference on Physics Beyond the Standard Model,\r\nBeyond the Desert \'03, Schloss Ringberg, Tegernsee, Germany, 9-14 June 2003','Stefan Soldner-Rembold','NEW','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4289/m_d0note4289.ps','',2003,11,13,2452957,2003,11,14,2452958),(4290,'D0 Search for Neutral Higgs Bosons at High Tan\\beta in Multi-jet Events Using p13 Data','Andy Haas, Avto Kharchilava','','Andy Haas','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4290/m_bbh_analysis_note_4290.ps','',2003,11,19,2452963,2004,3,23,2453088),(4291,'Channel-by-channel t0 Calibration of the Central Muon Scintillators','Chadd Bailey, Steven Doulas, Darien Wood','','Darien Wood','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4291/m_4291_cmsc_t0.pdf','',2003,11,22,2452966,2003,11,22,2452966),(4292,' Effect of Halo Events on the Measured Min Bias Rates for Luminosity','Heidi Schellman, Brendan Casey , Tamsin Edwards and Rich Partridge','','Schellman','','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4292/m_4292_halo.pdf','',2003,11,23,2452967,2004,1,22,2453027),(4293,'The D0 Interactinng Propagator','Herbert Greenlee','','Herbert Greenlee','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4293/m_d0note4293_interacting_propagator.pdf','',2003,11,24,2452968,2003,11,24,2452968),(4294,'Note on Debugging Calorimeter Electronics by Using \"cal_elec\"','Shaohua Fu','','Shaohua Fu','CALORIMETER','DOC','D0_PRIVATE','OTHER','','',2003,11,25,2452969,NULL,NULL,NULL,NULL),(4295,'Recent Results from D0 ','Vivek Jain\r\nBrookhaven National Laboratory','The following article has been submitted to the AIP Proceedings for Beauty2003, Carnegie Mellon University, Pittsburgh, Oct 14-18, 2003','vivek jain','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4295/m_Beauty2003_proceed_D0note_4295.ps','',2003,11,26,2452970,2003,11,26,2452970),(4296,'Measurement of the CP violation parameter of the\r\n(B0, B0bar) system with the D0 detector','B. Hoeneisen','','B. Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4296/m_p13dimuon_d0note4296.ps','',2003,11,27,2452971,2003,11,27,2452971),(4297,'Retuning of pmcs_chprt to P13 and P14 data','Paul Telford, Nick Hadley and Lei Wang','','Paul Telford','MC','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4297/m_4297_pmcs_chprt.pdf','',2003,11,30,2452974,2004,3,29,2453094),(4298,'Crumbly Clusters in the Central Fiber Tracker','Su Yong Choi, Herbert Greenlee, Alexander Khanov','','A.Khanov','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4298/m_cc_4298.ps','',2003,12,2,2452976,2003,12,2,2452976),(4299,'Phi-intercalibration of the D0 calorimeter at Run II','Pierre Antoine Delsart, Julien Donini, Patrice Lebrun','This note gives description of the phi-intercalibration methods of the calorimeter. Work done inside em_id/calgo group','Patrice Lebrun','CALORIMETER','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4299/m_phi-intercal.pdf','',2003,12,4,2452978,2007,7,10,2454292),(4300,'Average out-of-cone showering corrections for \r\nfixed size cone jet algorithms','Sarosh N. Fatakia\r\n Ulrich Heintz\r\n','','Sarosh N. Fatakia','CALORIMETER','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4300/m_note_4300_shower.pdf','',2003,12,9,2452983,2003,12,24,2452998),(4301,'Cosmic Background Estimates for the D0 Forward Muon System','D. Denisov, V. Malyshev','Based on results of cosmic run 155083 we estimate cosmic ray admixture in the inclusive single muon sample for the D0 forward muon system.','Dmitri Denisov','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4301/m_D0_Note_4301.pdf','',2003,12,9,2452983,2003,12,24,2452998),(4302,'Measures of Significance in HEP and Astrophysics','J. Linnemann','physics/0312059 at archive server\r\nPHYSTAT 2003 contribution http://www-conf.slac.stanford.edu/phystat2003/','Jim Linnemann','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4302/m_4302_measures_of_significance.pdf','',2003,12,9,2452983,2004,4,9,2453105),(4303,'The D0 Kalman Track Fit','H. Greenlee','','H. Greenlee','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4303/m_d0note_4303_kalman.pdf','',2003,12,10,2452984,2004,1,6,2453011),(4304,'Testing of the Silicon Modules for the Run IIb Silicon Detector','J.Novak, S.Burdin, J.Fast, A.Nomerotski, G.Otero','','Sergey Burdin','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4304/m_D0note4304.pdf','',2003,12,12,2452986,2003,12,12,2452986),(4305,'On a reduction of background to the direct photon\r\nusing calorimeter information.','M.Alexeev, D.Bandurin, D.Kirillov, N.Skachkov','background analysis to a direct photon','Bandurin Dmitry','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4305/m_gam_note.ps','',2003,12,14,2452988,2003,12,14,2452988),(4306,'Evaluation of the Ratio of Production Cross Sections for \\Wmunu/\\Zmumu','Paul Telford and Terry Wyatt','','Paul Telford','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4306/m_R_mu_4306.ps','',2003,12,14,2452988,2003,12,30,2453004),(4307,'Error in Ratios of Normally Distributed Variables','Matthew Wetstein','','Matthew Wetstein','WZ','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4307/m_error.pdf','',2003,12,15,2452989,2003,12,30,2453004),(4308,'Characteristics of the Outer Layer Silicon Sensors for the Run IIb Silicon Detector ','M. Demarteau, R. Demina, S. Korjenevski, F. Lehner, R. Lipton, H.S. Mao, R. McCarthy, R. Smith','','Marcel Demarteau','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4308/m_4308.pdf','',2003,12,22,2452996,2003,12,22,2452996),(4309,'Characteristics of the Layer 1 Silicon Sensors for the Run IIb Silicon Detector ','M. Demarteau, R. Demina, S. Korjenevski, F. Lehner, R. Lipton, H.S. Mao, R. McCarthy, R. Smith','','Marcel Demarteau','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4309/m_4309.pdf','',2003,12,22,2452996,2003,12,22,2452996),(4310,'Measurements on irradiated L1 sensor prototypes for the D0 Run IIb silicon detector project','M. Ahsan, T.Bolton, K. Carnes, M. Demarteau, R. Demina, T. Gray, S. Korjenevski, F. Lehner, R. Lipton, H.S. Mao, R. McCarthy, A. Rankin, M. Shamin, R.P. Smith\r\n','','Marcel Demarteau','SILICON','','D0_PRIVATE','OTHER','$D0_PRI/4310/m_4310.pdf','',2003,12,22,2452996,2003,12,22,2452996),(4311,'Effects of the Digital Jumper Cable on Silicon Sensors','J.Novak, S.Burdin, A.Nomerotski, M.Utes','','Sergey Burdin','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4311/m_D0note4311.pdf','',2003,12,23,2452997,2003,12,23,2452997),(4312,'Magnetic field in the D0 Tracker volume ','Andrei Nomerotski (Fermilab)','','A.Nomerotski','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4312/m_Bfield_D0note_4312_final.pdf','',2003,12,26,2453000,2004,1,6,2453011),(4313,'Isolated jets in \"photon+jet\" Run II D0 data and their\r\napplication for jet energy scale setting','M.Alexeev, D.Bandurin, G.Golovanov, N.Skachkov ','','bandurin dmitry','QCD','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4313/m_calib_note.ps','',2003,12,29,2453003,2004,3,10,2453075),(4314,'Parametrizing the Local Muon Resolution in p13 Data for PMCS','Andrew Askew','D0 Private','Andrew Askew','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4314/m_LocMuoRes.ps','',2003,12,29,2453003,2003,12,30,2453004),(4315,'A trigger for Jets and Missing E_T','A. Zabi, L. Duflot, J.-F. Grivaz, P. Verdier and A. Duperrin','','J.-F. Grivaz','TRIGGER','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4315/m_4315.ps','',2003,12,30,2453004,2004,1,13,2453018),(4316,'A measurement of the top-quark production cross section in the muon+jets channel','C. Clement','','Clement','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4316/m_topxs.ps','',2003,12,30,2453004,2004,3,2,2453067),(4317,'Track reconstruction efficiency measurement with single muons','E.W. Varnes','','E.W. Varnes','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4317/m_note.pdf','',2003,12,30,2453004,2004,10,14,2453293),(4318,'Estimated Gains in B Physics with Increased L3 Trigger Bandwidth','Brad Abbott, Vivek Jain, Rick Van Kooten','White paper submitted to Fermilab PAC December 2003','Rick Van Kooten','B_PHYSICS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4318/m_l3_band_bphys_white_paper.ps','',2003,12,31,2453005,2003,12,31,2453005),(4319,'Measurement of the B0 lifetime in the decay mode B0->J/psi Ks','Paul Balm','','Paul Balm','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4319/m_d0note4319_v4_0.ps','',2004,1,2,2453007,2004,2,18,2453054),(4320,'Primary Vertex certification in p14','Aran Garcia-Bellido, Sara Lager, Flera Rizatdinova, Ariel Schwartzman and Gordon Watts','','Flera Rizatdinova','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4320/m_d0note4230.ps','',2004,1,4,2453009,2004,1,8,2453013),(4321,'Fast Simulation of WZ Bosons','Junjie Zhu','','Junjie Zhu','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4321/m_note4321.ps','',2004,1,9,2453014,2004,1,9,2453014),(4322,'Search for excited quarks in z + jets channel.','Eric Thomas, Elemer Nagy and Marie-Claude Cousinou','Draft in preparation, to be posted soon','Eric Thomas','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4322/m_qstar_004322.pdf','',2004,1,12,2453017,2004,5,18,2453144),(4323,'Determination of Electron Energy Scale and Energy Resolution using P14 zee data','Junjie Zhu','','Junjie Zhu','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4323/m_note4323.ps','',2004,1,12,2453017,2004,3,20,2453085),(4324,'Observation of B -> D** mu nu decays ','G.Borissov, S.Burdin, A.Nomerotski','','A.Nomerotski','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4324/m_D0note4324.ps','',2004,1,17,2453022,2005,2,7,2453409),(4325,'Measurement of the Inclusive Muon Production Cross Section','T. Stapelberg, T. Hebbeker, C. Magass','','Thomas Hebbeker','','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4325/m_d0note4325.ps','',2004,1,20,2453025,2004,1,21,2453026),(4326,'Measurement of the Inclusive Electron Production Cross Section','C.Magass, T. Hebbeker, T. Stapelberg','','Thomas Hebbeker','','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4326/m_d0note4326.ps','',2004,1,20,2453025,2004,1,21,2453026),(4327,'Mini-Drift Tube Geometry Measurement with X-ray Tomograph','L. Vertogradov, V. Dodonov, V. Malyshev, A. Nozdrin, I. Pisarev','Geometrical parameters of assembled Mini-Drift Tube are measured with X-ray tomograph','Dmitri Denisov','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4327/m_dt_4327.doc','',2004,1,20,2453025,2004,1,28,2453033),(4328,' The Updated D\\O \\ Luminosity Determination - Short summary','Tamsin Edwards, Sahal Yacoob, Tim Andeen, Jaewon Park, Brendan Casey, Michael Begel, Rich Partridge, Heidi Schellman and Andre Sznajder ','','Heidi Schellman','','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4328/m_4328_luminosity_short.pdf','',2004,1,21,2453026,2004,1,22,2453027),(4329,' A crosscheck of the Run II Luminosity Monitor Efficiency','Heidi Schellman, Brendan Casey, Tamsin Edwards','','H. Schellman','','ANAL','D0_PRIVATE','','$D0_PRI/4329/m_d0note_4329.pdf','',2004,1,21,2453026,2004,1,22,2453027),(4330,'B_d flavor oscillations with opposite side muon tagging','G.Borissov, S.Burdin, A.Nomerotski','','A.Nomerotski','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4330/m_D0note4330.ps','',2004,1,22,2453027,2004,3,12,2453077),(4331,'','Estrada','','topmass','TOP','','D0_PRIVATE','','','',2004,1,22,2453027,NULL,NULL,NULL,NULL),(4332,'','Estrada','','Method Developed to Measure the Mass of the Top','TOP','','D0_PRIVATE','POSTSCRIPT','','',2004,1,22,2453027,NULL,NULL,NULL,NULL),(4333,'Dataset and topological analysis for the ttbar to hadrons production cross section measurement on p14 data','F.Blekman and M. Vreeswijk','ttbar to all-jets cross section note for the 2004 winter conferences. This note describes the dataset used for the SLT and SVT analyses','Freya Blekman','TOP','ANAL','D0_PRIVATE','OTHER','/RunII/home/fblekman/m_d0note4333_alljets_dataset.pdf','',2004,1,22,2453027,2004,3,11,2453076),(4334,'Observation of the X(3872) State at D0','Brad Abbott','','Brad Abbott','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','','',2004,1,26,2453031,NULL,NULL,NULL,NULL),(4335,'Improvements from the T42 Algorithm on Calorimeter Objects Reconstruction','Gregorio Bernardi, Emmanuel Busato and Jean-Roch Vlimant','','Gregorio Bernardi','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4335/m_t42note_4335.ps','',2004,1,26,2453031,2004,2,4,2453040),(4336,'Search for Large Extra Dimensions in the Dielectron and Diphoton Channels with 200 pb^-1 of Run II Data','Greg Landsberg','','Greg Landsberg','NEW','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4336/m_4336_v11.pdf','',2004,2,3,2453039,2004,2,27,2453063),(4337,'Flavor oscillations in Bd mesons with same side tagging','G. Borissov (Lancaster), S.Burdin (Fermilab), A.Nomerotski (Fermilab)','','Sergey Burdin','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4337/m_bd4337_v5_2.ps','',2004,2,3,2453039,2004,8,3,2453221),(4338,'Single EM Trigger Efficiency Using a Diem Tag and Probe Method','John Gardner','','John Gardner','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4338/m_em_trig_eff.pdf','',2004,2,3,2453039,2005,3,3,2453433),(4339,'The Multi-hit Reconstruction in FPD','M.Rangel, J.Barreto and G.Alves','','Murilo Santana Rangel','QCD','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4339/m_multi_FPD_4339.pdf','',2004,2,9,2453045,2005,3,24,2453454),(4340,'A Multivariate Method for Comparing N-dimensional Distributions','James D. Loudin and Hannu E. Miettinen','To be published in Proceedings of PhyStat 2003','Hannu Miettinen','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2004,2,10,2453046,NULL,NULL,NULL,NULL),(4341,'Sensitivity Analysis of the rare decay Bs->mu mu with the D0 detector','Ralf P. Bernhard and Frank Lehner','','Frank Lehner','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4341/m_bsmumunote_4341.pdf','',2004,2,13,2453049,2004,3,10,2453075),(4342,'Efficiency Study of the Central Track Trigger in Z->ee Events','Michael Cooke, Yurii Maravin','','Michael Cooke','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4342/m_z-ee_eff.pdf','',2004,2,13,2453049,2004,2,13,2453049),(4343,'Using EM Objects to Locate Problematic Calorimeter Regions','John Gardner','','John Gardner','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,2,13,2453049,NULL,NULL,NULL,NULL),(4344,' Search for Gauge Mediated SUSY in gamma-gamma-MET final state','Yu. Gershtein, S. Kesisoglou','','Yuri Gershtein','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4344/m_4344.ps','',2004,2,16,2453052,2006,2,23,2453790),(4345,'L2 multijet trigger study for the hbb channel','Marine Michaut\r\nBoris Tuchming','','Boris Tuchming','TRIGGER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4345/m_l1l2triggerv13_hbb.ps','',2004,2,17,2453053,2004,3,3,2453068),(4346,'Measurement of the ttbar to all-jets production cross section using Secondary Vertex Tagging','Freya Blekman, Marcel Vreeswijk','addendum to d0 note 4333, uses SVT tag instead of soft muon tags.','Freya Blekman','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4346/m_d0note4346_alljets_xsec_p14_svt.pdf','',2004,2,18,2453054,2004,8,17,2453235),(4347,'Measurement of the ttbar to all-jets production cross section using soft muon tagging','Freya Blekman, Marcel Vreeswijk','Addendum to d0 note 4333, uses SLT instead of SVT for b-jet identification. All of this for p14 data','Freya Blekman','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','','',2004,2,18,2453054,NULL,NULL,NULL,NULL),(4348,'Performance of the JLIP b-tagger in p14','Daniel Bloch, Benoit Clement, Denis Gele, Sebastien Greder, Isabelle Ripp-Baudot','The JLIP b-tagging method is applied to p14 data and MC.\r\nTagging efficiencies are measured in data for light and b-jets. Macros for TRF\'s and scale factors are provided. \r\n','Daniel Bloch','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4348/m_JLIP_p14_v2.ps','',2004,2,20,2453056,2004,4,1,2453097),(4349,'Search for Large and TeV^-1 Extra Dimensions in the Dielectron Channel with 200 pb^-1 of Run II Data','Greg Landsberg','','Greg Landsberg','NEW','DOC','D0_PRIVATE','OTHER','','',2004,2,20,2453056,NULL,NULL,NULL,NULL),(4350,'MuonID Certification for p14','C. Clement, F. Deliot, T. Golling, K. Haganaki, \r\nB. Leonhardt, M. Mulders, E. Nurse, S. Soldner-Remboldt, \r\nJ. Stark','','Christophe Clement','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4350/m_p14muon.ps','',2004,2,20,2453056,2004,3,4,2453069),(4351,'Search for non-SM Light Higgs Boson in the h->gammagamma Channel at D0 in Run II ','Alex Melnitchouk','','Alex Melnitchouk','NEW','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4351/m_h_analysis_4351.ps','',2004,2,21,2453057,2004,3,19,2453084),(4352,'','','','4157\r\n','','','D0_PRIVATE','','','',2004,2,22,2453058,NULL,NULL,NULL,NULL),(4353,'Observation of b-jet in Z(->ee) events','Kazu Hanagaki','','Kazu Hanagaki','','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4353/m_4353.ps','',2004,2,22,2453058,2004,4,30,2453126),(4354,'Measurement of Z+bjet to Z+jet Cross Section Ratio in Dimuon Channel','YILDIRIM D. MUTAF','Submitted to PRL (in combination with Dielectron Analysis)','YILDIRIM D. MUTAF','WZ','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4354/m_note4354_v24.ps','',2004,2,22,2453058,2004,10,28,2453307),(4355,'(Re)Establishing the Lambda_b Signal via the \r\nLambda_b -> J/psi Lambda Decay Mode','Abaz Kryemadhi, Rick Van Kooten','','Rick Van Kooten','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4355/m_4355_lambdab_re_signal.ps','',2004,2,23,2453059,2004,2,25,2453061),(4356,'A Study on Higgs Trigger Efficiency for Single Electrons ','Heuhnu KIM, Jae YU','','Heuhnu Kim','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,2,23,2453059,NULL,NULL,NULL,NULL),(4357,'Direct Search for Charged Higgs ttbar Decays','D. Chakraborty, P. Gutierrez, E. Smith','Note on details of submitted PRL','Phillip Gutierrez','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4357/m_chiggs_4357.ps','',2004,2,24,2453060,2004,2,24,2453060),(4358,'CLIMIT - A Program To Compute Upper Limits','Harrison B. Prosper','','Harrison B. Prosper','','DOC','D0_PRIVATE','OTHER','','',2004,2,25,2453061,NULL,NULL,NULL,NULL),(4359,'Single and double b-tag event probability calculation ','R. Demina','suppliment to ttbar b-tagging cross section analysis','R. Demina','TOP','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4359/m_single_double_tag.pdf','',2004,2,25,2453061,2004,2,25,2453061),(4360,'Measurement of the $\\Lambda_{b}$ lifetime in the decay channel $\\Lambda_{b}\\rightarrow J/\\psi(\\mu^{+}\\mu^{-})\\Lambda(p\\pi^{-})$ at $D\\O$','Eduard De La Cruz Burelo','We are reporting the $\\Lambda_{b}$ lifetime measurement at D0','Eduard De La Cruz Burelo','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4360/m_LambdabNote_v.3.2.ps','',2004,2,25,2453061,2004,9,13,2453262),(4361,'Bs-> Jpsi + Phi . Lifetime and tranversity ','Pedro Podesta ','We report the lifetime measurement and transversity analisis for the Bs->Jpsi + Phi : Jpsi-> muon+ Muon- : Phi-> kaon+ kaon-. With a Luminosity ~ 225 pb^{-1}','Pedro Podesta','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4361/m_BsLifetime.ps','',2004,2,25,2453061,2005,1,27,2453398),(4362,'Detector hits in the thumbnail a.k.a. TMB++','Suyong Choi','Description of proposal for TMB++ and tests','Suyong Choi','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4362/m_tmbplusv3.ps.gz','',2004,3,2,2453067,2004,3,2,2453067),(4363,'Jet Reconstruction and Quality Cut Efficiencies','Jyothsna Rani','','Jyothsna Rani','CALORIMETER','MEMO','D0_PRIVATE','POSTSCRIPT','','',2004,3,3,2453068,NULL,NULL,NULL,NULL),(4364,'Search for the Heavy $\\bm Z$-Bosons in the Dielectron Channel with 200~\\ipb of Run II Data ','Leslie Groer, Colummbia University\r\nGreg Landsberg, Brown University','','Greg Landsberg','NEW','DOC','D0_PRIVATE','OTHER','','',2004,3,3,2453068,NULL,NULL,NULL,NULL),(4365,'Comparison of the \\dzero\\ Search for Neutral Higgs Bosons at High \\tanb~in Multi--jet Events to the CDF Run I Analysis','Andrew Haas, Avto Kharchilava, Gordon Watts','','Andrew Haas','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4365/m_cdf_comparison_note_4365.ps','',2004,3,5,2453070,2004,3,23,2453088),(4366,'The \\dzero\\ Search for Neutral Higgs Bosons at High \\tanb~in Multi--jet Events','Andrew Haas, Avto Kharchilava, Gordon Watts','','Andrew Haas','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4366/m_bbh_analysis_conf_4366.ps','',2004,3,5,2453070,2004,3,23,2453088),(4367,'Measurement of the B0d lifetime in the decay mode B0d -> J/psi (mu+mu-) Kshort (pi+pi-)','Paul Balm','','Paul Balm','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4367/m_d0note4367_v1_2.ps','',2004,3,8,2453073,2004,3,22,2453087),(4368,'Search for the Associated Production of Chargino and Neutralino in Final States with Three Leptons','U. Blumenschein, V. Buescher, R. Hauser, M. Hohlfeld,\r\nJ. Linnemann, R. Moore, A. Yurkewicz','Preliminary Results for Winter 2004 Conferences','Volker Buescher','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2004,3,8,2453073,NULL,NULL,NULL,NULL),(4369,'D0 High Voltage System Tutorial','J. Frederick Bartlett','','J. Frederick Bartlett','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4369/m_HvTutorial_4369.pdf','',2004,3,8,2453073,2004,3,8,2453073),(4370,'Flavor oscillations in Bd mesons with opposite side muon tagging (conference note)','G.Borissov (Lancaster), S.Burdin (Fermilab), A.Nomerotski (Fermilab)','Conference note','Sergey Burdin','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4370/m_d0note4370.ps','',2004,3,9,2453074,2004,3,20,2453085),(4371,'Observation of semileptonic B decays to narrow D** mesons','G.Borissov, S.Burdin, A.Nomerotski','','A.Nomerotski','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4371/m_Dstst_confnote4371.ps','',2004,3,9,2453074,2004,3,19,2453084),(4372,'Photon+jet Run~II D0 data with isolated jets in the End Calorimeter and their application for jet energy scale setting.','M.Alexeev, D.Bandurin, G.Golovanov, D.Kirillov, N.Skachkov','','Bandurin Dmitry','QCD','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4372/m_calib_note_EC.ps','',2004,3,9,2453074,2004,4,14,2453110),(4373,'Search for First Generation Leptoquark in ppbar collisions at sqrt(s)=1.96 GeV','Alexis Cothenet, Shaohua Fu, Marie-Claude Cousinou, Vishnu Zutshi','','Marie-Claude Cousinou','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4373/m_4373_LQ1search_moriond04_full.ps','',2004,3,9,2453074,2004,3,18,2453083),(4374,'Search for non-SM Light Higgs Boson in the h->gammagamma Channel at D0 in Run II ','Alex Melnitchouk','','Alex Melnitchouk','NEW','CONF','PUBLIC','POSTSCRIPT','$D0_PRI/4374/m_h_d0conf_4374.ps','',2004,3,9,2453074,2004,3,19,2453084),(4375,'Search for Heavy Z Bosons in the Dielectron Channel with 200 pb-1 of Run II Data','Leslie Groer, Columbia University and\r\nGreg Landsberg, Brown University','D0 Conference report','Leslie Groer','NEW','PUB','D0_PRIVATE','POSTSCRIPT','','',2004,3,9,2453074,NULL,NULL,NULL,NULL),(4376,'Measurement of Lifetime Ratio for Neutral and\r\nCharged B Mesons ','G.Borissov, S.Burdin, A.Nomerotski','','G.Borissov','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4376/m_papconf-2.1.ps','',2004,3,9,2453074,2004,3,22,2453087),(4377,'Sensitivity Analysis of the rare decay Bs -> mu mu with the D0 detector','Ralf Bernhard and Frank Lehner','','Frank Lehner','B_PHYSICS','CONF','D0_PRIVATE','','$D0_PRI/4377/m_bsmumuconf_4377_v1.pdf','',2004,3,10,2453075,2004,3,23,2453088),(4378,'Search for Gauge Mediated SUSY in gamma-gamma-MET final state\r\n','Yu. Gershtein, S. Kesisoglou','','Yuri Gershtein','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4378/m_4378.ps','',2004,3,10,2453075,2006,2,23,2453790),(4379,'Search for new physics in Jets + Missing E_T topologies','L. Duflot, A. Duperrin, J.-F. Grivaz, E. Kajfasz, P. Verdier and A. Zabi','','J.-F. Grivaz','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4379/m_JetMet.ps','',2004,3,11,2453076,2004,4,2,2453098),(4380,'Search for Squarks and Gluinos in the Jets + Missing E_T topology','L. Duflot, A. Duperrin, J.-F. Grivaz, E. Kajfasz, P. Verdier and A. Zabi','','J.-F. Grivaz','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4380/m_SQGL.ps','',2004,3,11,2453076,2004,4,1,2453097),(4381,'Measurement of Dijet Azimuthal Decorrelations \r\nat Central Rapidities in $\\bar{p}p$ Collisions at $\\sqrt{s}=1.96\\,{\\rm TeV}$','Alexander Kupco, Michael Begel, Pavel Demine, \r\nChristophe Royon, Markus Wobisch, Marek Zielinski','First Measurement of Dijet Azimuthal Decorrelations in Run II using L=150pb-1','Markus Wobisch','QCD','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4381/m_4381dijetphi.pdf','',2004,3,11,2453076,2005,1,21,2453392),(4382,'Measurement of Inclusive Jet and Dijet Cross Sections \\\\\r\nin $\\bar{p}p$ collisions at $\\sqrt{s}=1.96\\,{\\rm TeV}$','Jean-Laurent Agram, Pavel Demine, Christophe Royon, \r\nMichael Begel, Alexander Kupco, Markus Wobisch, \r\nMarek Zielinski','Measurement of the inclusive jet and the dijet cross section\r\nin Run II using L=143pb-1','Markus Wobisch','QCD','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4382/m_4382jetxsect.pdf','',2004,3,11,2453076,2005,1,21,2453392),(4383,'Systematic Studies Towards a new $WH \\rightarrow e\\nu b\\bar{b}$ Cross Section Limit','S. Beauceron, G. Bernardi, H. Kim, D. Meder, S. Snyder, P. Tamburello, J. Wittlin, and J. Yu','','Jodi Wittlin','','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4383/m_whsystematics.pdf','',2004,3,11,2453076,2004,3,11,2453076),(4384,'Measurement of dijet azimuthal angle distribution in ppbar collisions at \\sqrt{s}=1.96 TeV','Alexander Kupco, Michael Begel, \r\nPavel Demine, Christophe Royon, Markus Wobisch, \r\nMarek Zielinski','This note describes in detail the measurement of the dijet azimuthal angle for jets with cone $R=0.7$ and central\r\nrapidities.','Alexander Kupco','QCD','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4384/m_delta_phi_4384.pdf','',2004,3,12,2453077,2004,3,17,2453082),(4385,'Jet angular resolutions in the central part of calorimeter \r\nfor $R=0.7$ cone.','Alexander Kupco, Pavel Demine, Christophe Royon','We describe the derivation of jet angular resolutions\r\nin pseudorapidity $\\eta$ and azimuthal angle $\\phi$\r\nfor cone $R=0.7$ jets in the central region of the calorimeter.','Alexnder Kupco','QCD','ANAL','D0_PRIVATE','OTHER','','',2004,3,12,2453077,NULL,NULL,NULL,NULL),(4386,'Search for the Higgs boson in H->WW_>mu nu mu nu decays at D0 in Run II','Johannes Elmsheuser','','Johannes Elmsheuser','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4386/m_note4386.ps','',2004,3,12,2453077,2004,6,7,2453164),(4387,'Search for the Higgs boson in H->WW->l nu l nu (l=e,mu) decays at D0 in Run II','Johannes Elmsheuser, Marc Hohlfeld','','Johannes Elmsheuser','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4387/m_note4387.ps','',2004,3,12,2453077,2004,8,11,2453229),(4388,'Measurement of Inclusive Cross Section Ratio sigma(Z+b)/sigma(Z+j)','Kazu Hanagaki, Yildirim Mutaf, Suyong Choi, Qizhong Li (Higgs group)','Conference note of Z+b/Z+j cross section ratio measurement for 2004 winter conferences','Suyong Choi','','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4388/m_zbzj_4388.ps','',2004,3,12,2453077,2004,5,7,2453133),(4389,'Measurement of Inclusive Cross Section Ratio sigma(Z+b)/sigma(Z+j)','Kazu Hanagaki, Yildirim Mutaf, Suyong Choi, Qizhong Li (Higgs group)','Conference note of Z+b/Z+j cross section ratio measurement for 2004 winter conferences','Suyong Choi','','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,3,12,2453077,NULL,NULL,NULL,NULL),(4390,'Search for Doubly-charged Higgs Boson Production in\r\nthe Decay H++H-- to m+m-m+m- with the DO Detector at sqrt(s)=1.96 TeV\r\n','Marian Zdrazil, Stefan Soldner-Rembold, Avto Kharchilava','','Stefan Soldner-Rembold','','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4390/m_d0note4390.ps','',2004,3,13,2453078,2004,6,17,2453174),(4391,'Specifications for low mass flexible cables for the new layer 0 silicon detector at DZERO','Frank Lehner','','Frank Lehner','SILICON','DOC','D0_PRIVATE','OTHER','','',2004,3,13,2453078,NULL,NULL,NULL,NULL),(4392,'Search for the Higgs boson in H->WW->enuenu and H->WW->enumunu decays','Marc Hohlfeld','','Marc Hohlfeld','','','D0_PRIVATE','','$D0_PRI/4392/m_d0note4392_hww.ps','',2004,3,13,2453078,2004,7,6,2453193),(4393,'Search for associated Chargino/Neutralino production in the $e\\mu(+l)$ final state','Marc Hohlfeld','','Marc Hohlfeld','','','D0_PRIVATE','','$D0_PRI/4393/m_d0note4393_trilepton.ps','',2004,3,14,2453079,2004,7,6,2453193),(4394,'Evidence for W b bbar Production at sqrt(s)=1.96 TeV','Stephanie Beauceron and Gregorio Bernardi','','Gregorio Bernardi','','PHYS','D0_PRIVATE','POSTSCRIPT','','',2004,3,14,2453079,NULL,NULL,NULL,NULL),(4395,'Extension of the measurement of the inclusive jet $p_T$ cross section \r\nat high rapidity','Jean-Laurent Agram, Christophe Royon','','Christophe Royon','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4395/m_inclusive.pdf','',2004,3,15,2453080,2005,1,25,2453396),(4396,'Jet $p_T$ resolution using JES v05-02-00','Jean-Laurent Agram, Christophe Royon','','Christophe Royon','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4396/m_resolution.pdf','',2004,3,15,2453080,2005,1,25,2453396),(4397,'Measurement of the dijet mass cross section ','Pavel Demine, Christophe Royon','','Christophe Royon','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4397/m_dijetmass_4397.pdf','',2004,3,15,2453080,2005,1,26,2453397),(4398,'Search for Single Top Quark Production at DZero in Run II','Agelou, Andrieu, Baringer, Bean, Bloch, Boos, Bunichev, Busato, Christofek, Clement, Dudko, Gadfort, Garcia-Bellido, Gaudio, Gele, Gutierrez, Heinson, Jabeen, S.Jain, Juste, Kau, Kopal, Mitrevski, Parsons, Perea, Perez, Prosper, Quadt, Rud, Schwienhorst, Strauss, Vachon, Warsinsky, Watts','Analysis note for the Spring 2004 search.','Ann Heinson','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4398/m_d0note4398_sintop_july04.pdf','',2004,3,15,2453080,2005,2,11,2453413),(4399,'Evidence for Wbbbar Production at sqrt(s)=1.96 TeV','Stephanie Beauceron and Gregorio Bernardi','conference note corresponding to d0-note 4394','Gregorio Bernardi','','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4399/m_Wbb_Wh_Moriond_04_Confnote.ps','',2004,3,16,2453081,2004,5,18,2453144),(4400,'Search for large extra spatial dimensions\r\nin Jets + Missing E_T topologies','L. Duflot, J.-F. Grivaz, P. Verdier and A. Zabi','','Laurent Duflot','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4400/m_d0note4400_extradim.pdf','',2004,3,17,2453082,2004,4,5,2453101),(4401,'Search for First Generation Leptoquarks in p pbar collisions at sqrt(s)=1.96 TeV','Alexis Cothenet, Marie-Claude Cousinou, Shaohua Fu, Vishnu Zutshi','','M.C Cousinou','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4401/m_4401_LQ1search_moriond04_conf.ps','',2004,3,18,2453083,2004,3,18,2453083),(4402,'Scale and Over-smearing for MC Electron','Supriya Jain','','Supriya Jain','TOP','','D0_PRIVATE','','$D0_PRI/4402/m_4402_MCelectron_OverSmearing.pdf','',2004,3,18,2453083,2004,6,20,2453177),(4403,'Measurement of Z->ee and W->enu Production Cross Sections with \r\n|eta|<2.3','Doug Chapin, Harald Fox, John Gardner, Robert Illingworth, Adam Lyon, Junjie Zhu','','Harald Fox','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4403/m_4403_wzelec.ps','',2004,3,18,2453083,2004,3,18,2453083),(4404,'Search for mSUGRA SUSY in the Like-Sign Dimuon Channel','A. Yurkewicz, R. Hauser, J. Linnemann, and R. Moore','','Adam Yurkewicz','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/4404/m_4404_msugrasearch.pdf','',2004,3,18,2453083,2004,5,24,2453150),(4405,'Search for the Associated Production of Chargino and Neutralino in Final States\r\nwith Two Electrons and an Additional Lepton ','Ulla Blumenschein, Volker Buescher','','Ulla Blumenschein','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,3,18,2453083,NULL,NULL,NULL,NULL),(4406,'Search for associated Chargino and Neutralino production in the emu(+l) final state in D0 data from Run II','Marc Hohlfeld','Preliminary Results for Winter 2004 Conferences','Marc Hohlfeld','NEW','CONF','D0_PRIVATE','','','',2004,3,19,2453084,NULL,NULL,NULL,NULL),(4407,'Optimizing the Efficiency of Mass Constrained Vertex Fitting\r\nvia a Track pT Uncertainty Scale Factor','Sherry Towers','','Sherry Towers','','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4407/m_d0note_4407.ps','',2004,3,19,2453084,2004,3,19,2453084),(4408,'Search for mSUGRA SUSY in the Like-Sign Dimuon Channel','A. Yurkewicz, R. Hauser, J. Linnemann, R. Moore','','Adam Yurkewicz','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4408/m_4408_msugrasearch_2.pdf','',2004,3,19,2453084,2005,8,1,2453584),(4409,'Measurement of the Cross Section for W Boson + Photon Production at sqrt(s)=1.96 TeV','Drew Alton, Andrew Askew, H.T. Diehl, Yurii Maravin, Sean Mattingly','Preliminary for Moriond 2004','diehl','WZ','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4409/m_w_gamma_feb_2004.ps','',2004,3,21,2453086,2004,3,21,2453086),(4410,'Measurement of W Gamma Events in D0 Run II Data','Drew Alton, Andrew Askew, H.T. Diehl, Yurii Maravin, Sean Mattingly','Preliminary for Moriond 2004. Details of the analysis summarized in D0Note 4409.','diehl','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4410/m_d0note_wgamma.ps','',2004,3,21,2453086,2004,4,2,2453098),(4411,'Optimization of central track matching to electromagnetic objects by utilizing central preshower stereo clusters.','Yurii Maravin','We present an analysis of different central track matching algorithms. We find the most optimal method that has higher efficiency and smaller fake rate than that in the standard method.','Yurii Maravin','WZ','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4411/m_TRK-CPS-EM_matching_methods_Note4411.ps','',2004,3,24,2453089,2004,3,26,2453091),(4412,'Neural Network Optimization using Genetic Algorithm','Karel Soustruznik','nc25.troja.mff.cuni.cz/~soustruznik/work/notes/nnga.ps.gz','Karel Soustruznik','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4412/m_nnga4412.ps','',2004,3,24,2453089,2004,4,6,2453102),(4413,'Top Charge Studies on MC','Emanuela Barberis, Iacovos Pilinas, Dennis Sphakov, and Darien Wood','','Iacovos Pilinas','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4413/m_d0note_4413_top_charge_mc.pdf','',2004,3,24,2453089,2004,4,13,2453109),(4414,'Update on b-quark jet identification with Secondary Vertex reconstruction using DOReco version p14','L. Feligioni, M. Narain, P. Schieferdecker, A. Schwartzman','','Meenakshi Narain','ALGORITHMS','DOC','D0_PRIVATE','','$D0_PRI/4414/m_4414_svt_btag.pdf','',2004,3,25,2453090,2004,4,21,2453117),(4415,'Dzero Layer 0 Conceptual Design Report','Dzero Layer 0 silicon group','Conceptual design report of the layer 0 silicon detector.','Marcel Demarteau','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4415/m_4415.pdf','',2004,3,25,2453090,2004,3,26,2453091),(4416,'Proposed New CPS Packing Format','Alan Magerkurth','','Alan Magerkurth','PRESHOWER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4416/m_cps_packing_scheme.pdf','',2004,3,30,2453095,2004,5,11,2453137),(4417,'Combination of CDF and D-Zero Results on the Top-Quark Mass\r\n','The CDF Collaboration, the D-Zero Collaboration, and\r\nthe TEVATRON Electroweak Working Group\r\n','Public physics result!\r\n\r\n','Martin Grunewald','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4417/m_run1mtop.ps','',2004,3,31,2453096,2004,4,8,2453104),(4418,'Estimated Improvement in Proper Time Resolution with the \r\nAddition of Layer 0 Silicon','Abaz Kreymadhi, Rick Van Kooten','Internal D0 Note, not intended for publication','Rick Van Kooten','B_PHYSICS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4418/m_layer0_addition.ps','',2004,4,1,2453097,2004,8,4,2453222),(4419,'D0 Top Analyses and Data Sample for the Winter Conference 2004','Top Physics Working Group','Documentation of D0 top physics analyses, submitted to winter conferences 2004.','Arnulf Quadt','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4419/m_d0note_4419_v0.5.pdf','',2004,4,2,2453098,2004,8,6,2453224),(4420,'Measurement of the ttbar Xsec in the dilepton channels at sqrt(s) = 1.96 TeV (topological)','S. Anderson, A. Juste, K. Johns, R. Kehoe,\r\nJ. Kozminski, A. Kumar, S. Lager, J. Leveque,\r\nMcCroskey, P. Mal, A. Quadt, K. Ranjan, E. Shabalina','Documentation of analysis, submitted to winter conferences 2004.','Arnulf Quadt','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4420/m_dilepton_4420.ps','',2004,4,2,2453098,2004,10,19,2453298),(4421,'Measurement of the ttbar Xsec in the dilepton channels at sqrt(s) = 1.96 TeV (topological)','Top Physics Working Group','Documentation of analysis, submitted to winter conferences 2004.','Arnulf Quadt','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4421/m_d0note_4421.pdf','',2004,4,2,2453098,2004,11,22,2453332),(4422,'Measurement of the ttbar Xsec in the lepton+jets channels at sqrt(s) = 1.96 TeV (topological)\r\n','Top Physics Working Group','Documentation of analysis, submitted to winter conferences 2004.','Arnulf Quadt','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4422/m_d0note_4422_v0.5.pdf','',2004,4,2,2453098,2004,8,8,2453226),(4423,'Measurement of the ttbar Xsec in the lepton+jets channels at sqrt(s) = 1.96 TeV (topological)\r\n','Top Physics Working Group','Documentation of analysis, submitted to winter conferences 2004.','Arnulf Quadt','TOP','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,4,2,2453098,NULL,NULL,NULL,NULL),(4424,'Measurement of the ttbar Xsec in the lepton+jets channels at sqrt(s) = 1.96 TeV using soft-muon tag','Top Physics Working Group','Documentation of analysis, submitted to winter conferences 2004.','Arnulf Quadt','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','','',2004,4,2,2453098,NULL,NULL,NULL,NULL),(4425,'Measurement of the ttbar Xsec in the lepton+jets channels at sqrt(s) = 1.96 TeV using soft-muon tag','Top Physics Working Group','Documentation of analysis, submitted to winter conferences 2004.','Arnulf Quadt','TOP','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,4,2,2453098,NULL,NULL,NULL,NULL),(4426,'Direct measurement of the top quark mass in the lepton+jets channel using Run II data (General Note) ','Top Physics Working Group','Documentation of analysis.','Arnulf Quadt','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','','',2004,4,2,2453098,NULL,NULL,NULL,NULL),(4427,'Top Mass Measurement in the Lepton+Jets Channel using the Matrix-Element Method in Run-II','Kevin Kroeninger, Alan Magerkurth, Arnulf Quadt, Philipp Schieferdecker','Documentation of analysis.','Arnulf Quadt','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4427/m_d0note_4427.pdf','',2004,4,2,2453098,2005,4,26,2453487),(4428,'Measurement of the ttbar production cross section in the all-jets channel','The D0 Collaboration','Documentation of analysis submitted to winter\'04 conferences.','Arnulf Quadt','TOP','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,4,2,2453098,NULL,NULL,NULL,NULL),(4429,'Top Mass Measurement in the Lepton+Jets Channel using the Ideogram Method in Run II','Martijn Mulders','','Martijn Mulders','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4429/m_ideogram_topmass_moriond04_4429.pdf','',2004,4,2,2453098,2004,6,30,2453187),(4430,'Overview of the Installation and Infrastructure for the Run IIb L1 Calorimeter Trigger Upgrade','Alan Stone','','Alan Stone','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4430/m_l1cal_install.pdf','',2004,4,5,2453101,2006,7,25,2453942),(4431,'Muon tag-rate function for all-jets top mass analysis','Karel Soustruznik','nc25.troja.mff.cuni.cz/~soustruznik/work/notes/trfmy.ps.gz','Karel Soustruznik','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4431/m_tagrate4431.ps','',2004,4,6,2453102,2004,4,6,2453102),(4432,'Measurement of b-tagging efficiency and mis-tagging rates \r\nwith CSIP method','R.Demina, A.Khanov, F.Rizatdinova, E.Shabalina','','Flera Rizatdionva','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4432/m_note_4432.ps','',2004,4,8,2453104,2004,4,8,2453104),(4433,'Long Term Forward Single Muon Cross Section Stability.','Victor Bezzubov, Dmitri Denisov, Alexey Ferapontov, Andrey Shchukin.','','Alexey Ferapontov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4433/m_4433_1.pdf','',2004,4,8,2453104,2004,6,28,2453185),(4434,'Study of (Z/gamma)* boson events with a rapity gap signature in the mu+mu- channel in ppbar collisions at 1.96 TeV ','Tamsin Edwards, Martijn Mulders, Andrew Brandt, Emily Nurse, Christophe Royon, Paul Telford','Internal D0 note reporting on the status of the diffractive Z analysis','Martijn Mulders','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4434/m_ZmumuGapNote4434.pdf','',2004,4,9,2453105,2004,4,9,2453105),(4435,'Channel-by-channel t0 Calibration of the Central Muon BC-layer Scintillation Counters','Robert Harrington','','Robert Harrington','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4435/m_4435_CMSCTzeroCalibration.ps','',2004,4,11,2453107,2004,4,11,2453107),(4436,'The Level 3 Isolation Tool','Christian Autermann','','Christian Autermann','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4436/m_4436_l3fiso.ps','',2004,4,12,2453108,2004,4,12,2453108),(4437,'Optimization of ttbar->emujj selection criteria','Prolay Mal, Sudeshna Banerjee, Robert Kehoe','','Prolay Mal','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4437/m_d0note_4437.ps','',2004,4,12,2453108,2004,4,12,2453108),(4438,'D0 Luminosity in Run 2: Reconstructed','Prolay Kumar Mal, Michael Begel, Marco Verzocchi, Heidi Schellman','','Prolay Mal','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4438/m_d0note_4438.ps','',2004,4,13,2453109,2004,4,13,2453109),(4439,'Determination of uparallel efficiency ','Junjie Zhu, Sarah Eno','','Junjie Zhu','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4439/m_note4439.ps','',2004,4,13,2453109,2004,4,27,2453123),(4440,'The D0 Detector Muon System','Dmitri Denisov','Transparencies from Joint CDF/D0/CMS meeting: principles of muon detection, specifications for muon detectors, successes and issues with D0 Run I and Run II muon systems.','Denisov','MUON','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4440/m_4440.pdf','',2004,4,15,2453111,2004,4,15,2453111),(4441,'Response of the diode sensors of the SMT radiation monitoring system','Lisa Berntzon, Cristina Galea, Sijbrand de Jong, Ron Lipton','','Lisa Berntzon','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,4,16,2453112,NULL,NULL,NULL,NULL),(4442,'B_s Decay Study at D0','Avdhesk Chandra, Shashi Dugad, Daria Zieminska','','daria','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4442/m_bs3d.ps','',2004,4,19,2453115,2004,8,12,2453230),(4443,'D0 Data Quality Epochs:\r\nNov. 2001-Sept. 2003 and Beyond','H.T. Diehl','','Tom Diehl','DATA_MANAGE','DOC','D0_PRIVATE','OTHER','$D0_PRI/4443/m_DataNotes.doc','',2004,4,21,2453117,2004,4,27,2453123),(4444,'Utilizing CFT and SMT hits count for photon and electron reconstruction.','Oleksiy Atramentov and Yurii Maravin','','Oleksiy Atramentov','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4444/m_D0Note_4444_road_hits.ps','',2004,4,22,2453118,2004,4,22,2453118),(4445,'Muon Timing at Level-2','Arthur Maciel','','Arthur Maciel','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4445/m_l2times_4445.ps','',2004,4,26,2453122,2004,4,26,2453122),(4446,'Reconstruction of pi0 in the di-photon final state','Yurii Maravin','Method to identify pi0 using CPS and EM information. New photon-ID methods for p17','Yurii Maravin','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4446/m_pi0toGammaGamma_4446.ps','',2004,4,26,2453122,2004,4,30,2453126),(4447,'Oracle Epics slow archiver at D0','V.Sirotenko','','Vladimir Sirotenko','ONLINE','CONF','D0_PRIVATE','OTHER','$D0_PRI/4447/m_OracleArchiver.pdf','',2004,4,30,2453126,2004,4,30,2453126),(4448,'Search for the Associated Production of Chargino and Neutralino in Final States with Two Electrons and an Additional Lepton','Ulrike Blumenschein','','Ulrike Blumenschein','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4448/m_trilepton_note_4448.ps','',2004,5,2,2453128,2004,5,4,2453130),(4449,'Electron Likelihood in p14','Joseph Kozminski, Robert Kehoe, Harry Weerts, Su-Jung Park, Arnulf Quadt, John Gardner, Shabnam Jabeen\r\n','','Joseph Kozminski','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4449/m_4449_emlhood.ps','',2004,5,5,2453131,2004,5,5,2453131),(4450,'Observation of Bs -> J/psi K+K- with m(K+K-) > 1.1 GeV/c2','Brendan Casey','','Brendan Casey','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4450/m_psikk.pdf','',2004,5,6,2453132,2004,5,6,2453132),(4451,'L2beta Firmware Documentation','Bernard Lavigne','','Bernard Lavigne - Patrice Verdier - Bob Hirosky','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4451/m_4451_l2b_firmware.doc','',2004,5,7,2453133,2004,5,7,2453133),(4452,'PMCS for High pt di-muons','Paul Telford','','Paul Telford','MC','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,5,8,2453134,NULL,NULL,NULL,NULL),(4453,'Tau ID certification for p14 ','D. Chakraborty, F.Charles, C. Galea, A. Gay, Y. Gerstein, A.C. Lebihan, S. Nelson, C. Noeding, A. Patwa, S. Protopopescu','','Serban Protopopescu','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4453/m_taucert_d0note4453.pdf','',2004,5,9,2453135,2004,5,24,2453150),(4454,'Measurement of the CP Asymmetry Parameter $\\sin(2\\beta)$\r\n Using the Opposite Side Jet Charge Tagging Algorithm','Xiaojian Zhang, Phillip Gutierrez','','Xiaojian Zhang','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4454/m_JETQ_sin2beta.pdf','',2004,5,10,2453136,2004,5,10,2453136),(4455,'The Error Calculation in the $B$ Flavor Tagging Studies','Xiaojian Zhang, Phillip Gutierrez','','Xiaojian Zhang','B_PHYSICS','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4455/m_Errors.pdf','',2004,5,10,2453136,2004,5,10,2453136),(4456,'Applying the Matrix Element Method in a Search for the Higgs Boson','Juan Estrada, Carlos Garcia','','Carlos Garcia','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4456/m_4456MEforHiggs.pdf','',2004,5,10,2453136,2004,5,11,2453137),(4457,'Jet Algorithms in D0 RunII Software:\r\nDescription and User\'s Guide','E. Busato, B. Andrieu','','B. Andrieu','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4457/m_JetAlgoDescription_D0Note4457.ps','',2004,5,12,2453138,2004,8,13,2453231),(4458,'Long-term stability of muon timing peak in the forward muon scintillation counters.','Dmitri Denisov, Andrey Shchukin','','Andrey Shchukin','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4458/m_4458.pdf','',2004,5,12,2453138,2004,5,21,2453147),(4459,'Summer 2004 update of Top Mass Measurement in the lepton+jets Channel using the Ideogram Method','Martijn Mulders','','Martijn Mulders','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4459/m_TopIdeogram_ichep_4459.pdf','',2004,5,14,2453140,2004,12,16,2453356),(4460,'Ensemble testing for the Top Mass measurement','Martijn Mulders','','Martijn Mulders','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4460/m_ResamplingNote4460.pdf','',2004,5,14,2453140,2006,12,1,2454071),(4461,'Tools for the Matrix Element Method - the top_me_tools Package','K. Kroeninger, A. Magerkurth, A. Quadt, P. Schieferdecker','','K. Kroeninger','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4461/m_top_me_tools.ps','',2004,5,18,2453144,2004,5,23,2453149),(4462,'Long Term Local Muon System Energy Scale Stability','Dmitri Denisov, Alexey Ferapontov, Andrey Shchukin','','Alexey Ferapontov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4462/m_4462.pdf','',2004,5,21,2453147,2004,5,24,2453150),(4463,'Significant Event System for Run II','Geoff Savage','','Geoff Savage','ONLINE','DOC','D0_PRIVATE','OTHER','','',2004,5,21,2453147,NULL,NULL,NULL,NULL),(4464,'Measurement of the Top Mass: The Low Bias Template Method ','K. Black, M. Narain','','Kevin Black','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4464/m_summer04_lb_template_ljets_mass_d0note_4464.pdf','',2004,5,25,2453151,2005,2,21,2453423),(4465,'What to do with multijet events ?','Thomas Hebbeker','','Thomas Hebbeker','QCD','PHYS','PUBLIC','POSTSCRIPT','$D0_PUB/4465/m_multijets_4465.pdf','',2004,5,26,2453152,2004,6,16,2453173),(4466,'Measurement of the CP violation parameter of the\r\nB0 - B0bar system using 210/pb of data','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4466/m_CPV_d0note_4466.pdf','',2004,5,28,2453154,2004,5,31,2453157),(4467,'PDT Gas Gain Study','D. Denisov','Dependence of PDT Run II gas mixture gain vs CF4 and CH4 concentrations is described.','Dmitri Denisov','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4467/m_4467.pdf','',2004,5,29,2453155,2004,6,1,2453158),(4468,'Silicon Cloud Diffusion Studies in the D0 Monte Carlo','Alice Bean, Jake King, Vitaly Kheyfets','','Alice Bean','MC','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4468/m_d0note4468_silicon_cloud_diffusion_MC.pdf','',2004,6,1,2453158,2004,6,1,2453158),(4469,'Recent Tevatron Searches','James T. Linnemann','Should be public. Also on the preprint server as hep ex/0405079\r\n','James Linnemann','NEW','PHYS','PUBLIC','POSTSCRIPT','$D0_PUB/4469/m_4469_tev_searches.ps','',2004,6,1,2453158,2004,6,2,2453159),(4470,'Level 3 Muon Tools: p16 certification','D. Bauer, V. Lesne, R. Jesik','Certification plots and data for p16 production release.','Daniela Bauer','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4470/m_p16l3mucert_4470.ps','',2004,6,3,2453160,2004,9,13,2453262),(4471,'The MDT R(t) RELATION','D.Denisov, Yu.yatsunenko','The reconstruction of the MDT drift distance for measured\r\ndrift time is described.','Yuriy Yatsunenko','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4471/m_RT_MDT_4471.doc','',2004,6,4,2453161,2004,6,4,2453161),(4472,'Studies of the PDT A-layer efficiency using RAW data','Dmitri Denisov, Gaston Gutierrez, Al Ito, Vladimir Turtikov, Darien Wood','','Turtikov','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4472/m_pdt_eff.pdf','',2004,6,15,2453172,2004,6,15,2453172),(4473,'Report of the D0 Data Format Working Group','F. Deliot, H. Greenlee, S. Kulik, A. Lyon, S. Protopopescu, G. Watts','','Herbert Greenlee','','','D0_PRIVATE','','$D0_PRI/4473/m_d0dfwg_d0note4473.pdf','',2004,6,16,2453173,2004,6,22,2453179),(4474,'Missing ET Reconstruction in p17','Sophie Trincaz-Duvoid and Patrice Verdier','','trincaz-duvoid','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4474/m_note4474.ps','',2004,6,17,2453174,2004,6,21,2453178),(4475,'Forward Muon System Longevity','Dmitri Denisov','Summary talk about longevity of the D0 forward muon system. Items discussed: radiation aging, reliability of detectors and electronics, detectors occupancies, availability of experts.','Dmitri Denisov','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4475/m_4475.pdf','',2004,6,17,2453174,2004,6,17,2453174),(4476,'NNLO Cross-Sections for Drell-Yan, $Z$ and $W$ Production using Modern Parton Distribution Functions','Thomas Nunnemann','','Thomas Nunnemann','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4476/m_4476_dy_xsect.pdf','',2004,6,18,2453175,2004,6,18,2453175),(4477,'Design Proposal to Upgrade the L2 Trigger to more than 128 Bits','R. Hirosky, M. Kopal, J. Linnemann, R. Moore, A. Yurkewicz','','Roger Moore','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4477/m_l2-128+bits-proposal.pdf','',2004,6,18,2453175,2004,7,30,2453217),(4478,'Combined Z+b/Z+j results Summer 2004','Kazu Hanagaki, Yildirim Mutaf, Suyong Choi, Qizhong Li','Combined result of Z+b/Z+j cross section ratio','Suyong Choi','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4478/m_4478_zbzjcombination.pdf','',2004,6,21,2453178,2004,10,27,2453306),(4479,'Updates of Dzero Note 4353 (Observation of b-jets associated with Z(->e^{+}e^{-}) events)','K. Hanagaki','','Kazu Hanagaki','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4479/m_4479.ps','',2004,6,21,2453178,2004,10,15,2453294),(4480,'Missing Transverse Energy Studies Using Z->ee+X and Z->mumu+X Events','Ashish Kumar, Kirti Ranjan, Brajesh C. Choudhary, Jessica Leveque, Susan Burke, Bob Kehoe and Joe Kozminski','','Kirti Ranjan','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4480/m_metnote.ps','',2004,6,22,2453179,2004,6,28,2453185),(4481,'Reconstruction of B Hadron Signals at D0','Guennadi Borissov, Sergey Burdin,\r\nEduard de la Cruz-Burelo, Vivek Jain,\r\nAndrei Nomerotski,\r\nPedro Podesta-Lerma, Rick Van Kooten','Conference note for documentation of certain mass peaks shown in public.','Rick Van Kooten','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4481/m_note4481_bsignals_v2.ps','',2004,6,24,2453181,2004,8,4,2453222),(4482,'Search for the Associate Chargino-Neutralino Production in the Final States with two Muons and additional Lepton','Meta Binder, Raimund Strohmer','','Meta Binder','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4482/m_d0note_4482_trilepton_mumu.pdf','',2004,6,26,2453183,2004,8,10,2453228),(4483,'Observation of the $B_c$ Meson \r\nin the $\\psi\\mu X$ Final State\r\nUsing 210 pb$^{-1}$ of Data Collected\r\nby the D{\\O}Experiment','Sherry Towers','','Sherry Towers','','','D0_PRIVATE','','$D0_PRI/4483/m_tri_v0.ps','',2004,6,27,2453184,2004,8,6,2453224),(4484,'Search for Randall-Sundrum Gravitons in the Dielectron Channel\r\nwith 200 pb^-1 of Data with the D0 Detector','Leslie Groer, Greg Landsberg, and Emmanuelle Perez','','Greg Landsberg','','CONF','D0_PRIVATE','OTHER','','',2004,6,27,2453184,NULL,NULL,NULL,NULL),(4485,'Search for resonant slepton production','Christian Autermann,\r\nArnd Meyer','','auterman','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4485/m_note4485_rpv_v1.0.pdf','',2004,6,28,2453185,2004,7,7,2453194),(4486,'Search for WH --> lvbb','P. Tamburello and D. Meder','','P. Tamburello','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4486/m_4486_wh_lnbb.ps','',2004,6,29,2453186,2006,5,28,2453884),(4487,'Photon Identification for D0 Run II Data','Andrew Alton, Andrew Askew, Oleksiy Atramentov, and Yurii Maravin','Photon ID certification document','Andrew Alton','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4487/m_photoncert_p14.ps','',2004,6,30,2453187,2005,6,17,2453539),(4488,'Study of Z+photon events in D0 Run II Data','Andrew Alton, Yurii Maravin','This note describes the measurement of the Z(gamma)->llgamma cross-section using p14 pre-shutdown data.','Yurii Maravin','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4488/m_zgamma.ps','',2004,6,30,2453187,2005,6,17,2453539),(4489,'Search for Quark Electron Compositeness in Dielectron channel using RunII Data','Subhendu Chakrabarti','','Subhendu Chakrabarti','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2004,6,30,2453187,NULL,NULL,NULL,NULL),(4490,'A Search for RPV--SUSY in the mu+mu+l (l=e,mu) Channel from Decays via the LLE--coupling lambda_122','Daniela Kaefer, Arnd Meyer','','Daniela Kaefer','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4490/m_rpv_mml_lambda_122_02.ps','',2004,7,1,2453188,2004,9,3,2453252),(4491,'Calculating Confidence Limits','J. Linnemann, M. Paterno and H.B. Prosper','An expanded version of D0note 3476 that discusses in greater depth the issue of confidence limit calculation in the Bayesian approach.','Harrison B. Prosper','ALGORITHMS','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4491/m_d0note4491.ps','',2004,7,1,2453188,2004,7,20,2453207),(4492,'Calculating CLs Limits','Harrison B. Prosper','Some brief comments on how to calculate CLs limits efficiently.','Harrison B. Prosper','TOP','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4492/m_d0note4492.ps','',2004,7,1,2453188,2004,7,20,2453207),(4493,'More Mathematical Comments on Feed-Forward Neural Networks','Harrison B. Prosper','This note considers the interpretation of neural networks that are trained using a pattern-weighted quadratic error function.','Harrison B. Prosper','TOP','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4493/m_d0note4493.pdf','',2004,7,1,2453188,2004,7,20,2453207),(4494,'Analysis of J/psi events in forward muon special runs','D. Denisov, A. Ferapontov, A. Shchukin','','Alexey Ferapontov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4494/m_4494.pdf','',2004,7,2,2453189,2004,7,2,2453189),(4495,'Saturation of the SVX Chip','P. Hasiakos and J. Estrada','','Juan Estrada','FIBER_TRACKER','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4495/m_saturation.doc','',2004,7,6,2453193,2004,7,6,2453193),(4496,'Luminosity Constant for Dzero Run II','Tamsin Eduards, Sahal Yacoob, Tim Andeen, Michael Begel, Brendan Casey, Rich Partridge, Heidi Schellman, Andre Sznajder','','Brendan Casey','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4496/m_4496_constant_note.pdf','',2004,7,6,2453193,2004,7,8,2453195),(4497,'Z-coordinate Measurement in CFT and the Track Search','G.Borissov','','G.Borissov','FIBER_TRACKER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4497/m_paper-1.0.ps','',2004,7,7,2453194,2004,7,7,2453194),(4498,'Modified Geometry for Silicon Tracker','Sudeshna Banerjee','','Sudeshna Banerjee','MC','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4498/m_4498_smt_geometry.ps','',2004,7,7,2453194,2004,7,7,2453194),(4499,'Study of CFT Occupancy dependence on Beam Luminosity','David W K Lam, Michael D Hildreth','','David W K Lam','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4499/m_4499.ps','',2004,7,8,2453195,2004,10,25,2453304),(4500,'Problems with the AFE operation at high rates ','A. Bross , J. Estrada , P. Hasiakos , and P. Rubinov','','Juan Estrada','','PUB','D0_PRIVATE','OTHER','$D0_PRI/4500/m_afei_issues.pdf','',2004,7,8,2453195,2004,7,8,2453195),(4501,'A study of noise in the D0 calorimeter (preliminary)','Robert Zitoun','','Robert Zitoun','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,7,12,2453199,NULL,NULL,NULL,NULL),(4502,'A Search for Charged Massive Stable Particles at D0','M. Eads','','M. Eads','NEW','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4502/m_d0note4502_cmspsearch_ichep2004_12july2004.pdf','',2004,7,12,2453199,2004,8,17,2453235),(4503,'A Proposal to build \"A-Layer Hole\" Scintillation Counters for the D0 Detector','J. Kohli, R. Shivpuri ','','J. Kohli','MUON','MEMO','D0_PRIVATE','OTHER','','',2004,7,13,2453200,NULL,NULL,NULL,NULL),(4504,'Measurement of the Run II Luminosity Monitor Efficiency','Tamsin Edwards','','Tamsin Edwards','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4504/m_LM_Efficiency_4504.ps','',2004,7,13,2453200,2005,5,25,2453516),(4505,'Flavor oscillations in Bd with SST','G.Borissov, S.Burdin, A.Nomerotski','','A.Nomerotski','','CONF','D0_PRIVATE','POSTSCRIPT','/RunII/home/burdin/pub/4505/m_d0note4505_v3_1.ps','',2004,7,13,2453200,2004,8,15,2453233),(4506,'A Method for Combining Results from the D0 Detector of Analyses from Eight Separate Channels of the top pair Production Cross Section','Raymond E. Hall, William Whitaker','','Raymond Hall','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',2004,7,15,2453202,NULL,NULL,NULL,NULL),(4507,'Study of Excited B-hadrons','I.Bertram, G.Borissov, M.Doidge, P.Ratoff','','Borissov','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4507/m_paper-1.0.ps','',2004,7,15,2453202,2004,7,15,2453202),(4508,'Top Trigger Selection and Application of Turn On Curves to the Monte Carlo','Reinhard Schwienhorst','','Reinhard Schwienhorst','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4508/m_4508_triggersMC.pdf','',2004,7,16,2453203,2004,7,16,2453203),(4509,'Measurement of the Bd mixing rate using three flavor tagging algorithms','Christos Leonidopoulos','','Christos Leonidopoulos','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4509/m_d0note4509_BdMixing.pdf','',2004,7,18,2453205,2004,8,30,2453248),(4510,'Search for Single Top Quark Production at DZero in Run II','Agelou, Andrieu, Baringer, Bean, Bloch, Boos, Bunichev, Busato, Christofek, Clement, Dudko, Gadfort, Garcia-Bellido, Gaudio, Gele, Gutierrez, Heinson, Jabeen, Jain, Juste, Kau, Kopal, Mitrevski, Parsons, Perea, Perez, Prosper, Quadt, Rud, Schwienhorst, Strauss, Vachon, Warsinsky, Watts','This is a short conference note that summarizes the analyses in DZero Note 4398.','Ann Heinson','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/4510/m_singletop_conference_4510.pdf','',2004,7,18,2453205,2004,9,8,2453257),(4511,'New Beampipe and Flanges in D0gstar for p14.08','Sahal Yacoob','The publication describes some of the changes made to the Geometry of the D0 Run II Detector in p14.08, In particular a change the the beampipe material and radius, and the addition of some flanges.','Sahal Yacoob','MC','DOC','D0_PRIVATE','TEXT','$D0_PRI/4511/m_4511','',2004,7,19,2453206,2004,7,19,2453206),(4512,'Top Trigger Efficiency Measurements and the top_trigger package','M.Angelou, S.Anderson, B.Andrieu, S.Banerjee, F.Blekman, E.Busato, L.Christofek, B.Clement, C.Clement, T.Golling, S.Jabeen, S.Jain, A.Juste, J.Kozminski, J.Leveque, P.Mal, E.Perez, A.Quadt, R.Schwienhorst, J.Stark, B.Vachon, G.Watts','','Brigitte Vachon','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4512/m_d0note4512_v1.0.pdf','',2004,7,19,2453206,2004,7,26,2453213),(4513,'Update on the sensitivity analysis Bs->mumu and opening the box','Ralf Bernhard and Frank Lehner','','Frank Lehner','B_PHYSICS','PHYS','D0_PRIVATE','','$D0_PRI/4513/m_bs_mumu_4513.pdf','',2004,7,19,2453206,2005,1,25,2453396),(4514,'Search for the Flavor-Changing Neutral Current Decay \r\nBs -> mu+mu- in ppbar collisions at sqrt(s)=1.96 TeV with the D0 detector','Ralf Bernhard and Frank Lehner','Conference Note','Frank Lehner','B_PHYSICS','CONF','D0_PRIVATE','','$D0_PRI/4514/m_bsmumuconf_4514.pdf','',2004,7,19,2453206,2005,1,25,2453396),(4515,'Measurement of Select L3 Electron Tool Trigger Turn-on Curves for Trigger List Versions 8-12','Leonard Christofek','','Leonard Christofek','TRIGGER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4515/m_l3_turn_on_v8_v12.pdf','',2004,7,19,2453206,2005,7,12,2453564),(4516,'Using NLOJET++ in D0','Markus Wobisch','NLOJET++ is a partonic event generator for next-to-leading predictions of multi-jet cross sections. This note describes the installation procedure and provides example programs.','Markus Wobisch','QCD','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,7,19,2453206,NULL,NULL,NULL,NULL),(4517,'Study of Excited B-hadrons','I.Bertram, G.Borissov, M.Doidge, P.Ratoff','','Borissov','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4517/m_conference-1.0.ps','',2004,7,20,2453207,2004,7,31,2453218),(4518,'Cluster finding Efficiency for Central Fiber Tracker','S. Jabeen, M. Zdrazil, S. Kulik, A. Kharchilava, A. Alton','','shabnam Jabeen','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,7,20,2453207,NULL,NULL,NULL,NULL),(4519,'Measurement of the $B^{0}_{s}$ lifetime in the exclusive decay channel $B^0_{s}\\rightarrow J/\\psi(\\mu^{+}\\mu^{-})\\phi(K^{+}K^{-})$\r\nat D\\O','P.L.M. Podesta-Lerma, \r\nA. S\\\'anchez-Hern\\\'andez, \r\nH. Castilla-Valdez','Results for Summer 2004 Conferences','Alberto Sanchez','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4519/m_4519_v20.ps','',2004,7,20,2453207,2004,8,6,2453224),(4520,'',' Borissov ','D0 note 4507','Marj Corcoran','B_PHYSICS','','D0_PRIVATE','POSTSCRIPT','','',2004,7,21,2453208,NULL,NULL,NULL,NULL),(4521,'Comparison of Limit Setting Methods using the GMSB Di-photon Analysis','Stefan Soldner-Rembold','','Stefan Soldner-Rembold','NEW','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4521/m_d0note4521.pdf','',2004,7,22,2453209,2004,7,22,2453209),(4522,'Search for RpV SUSY in the eel (l=e or muon) channel (lambda_121 coupling)',' Anne-Marie Magnan, Gerard Sajot','','Sajot','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4522/m_eel_rpv_july26.pdf','',2004,7,22,2453209,2004,7,26,2453213),(4523,'Studies of Upsilon(1S) bottomonium state production with the D0 detector at Fermilab\r\n','Daniela Bauer, Jundong Huang and Andrzej Zieminski','Conference Note for internal note 4264','Jundong Huang','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4523/m_ups_conf.ps','',2004,7,22,2453209,2004,8,3,2453221),(4524,'Selection of Semileptonic Lambda-b and Bd Decays','Guennadi Borissov, Marcus Lewin','','Marcus Lewin','B_PHYSICS','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4524/m_lambda-b_Bd_semileptonic-1.0.ps','',2004,7,22,2453209,2004,8,10,2453228),(4531,'A Search for RPV-SUSY in the mumul (l=mu,e) Channel from Decays via the LLE-coupling lambda_122','Daniela Kaefer, Arnd Meyer','','Daniela Kaefer','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4531/m_rpv_mml_lambda_122_confnote4531.ps','',2004,7,23,2453210,2004,7,24,2453211),(4526,'Measurement of $\\bm {\\sigma\\cdot}$Br($\\bm{p}\\bar{\\bm{p}}\\bm{\\rightarrow Z\\rightarrow\\tau\\tau}$) at ${\\bm {\\sqrt{s} = 1.96}}$ TeV at D\\O','C. Galea, S. Nelson, A. Patwa, S. Protopopescu','','Cristina Galea','WZ','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4526/m_d0note_4526_ztautau.pdf','',2004,7,22,2453209,2005,5,18,2453509),(4527,'Top Quark Production Cross-section in the emu Channel\r\nUsing Secondary Vertex b-tagging ','Christophe Clement, Sara Lager, Jonas Strandberg','','Sara Lager','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4527/m_emu_btagging_note_v05.pdf','',2004,7,22,2453209,2004,11,18,2453328),(4528,'Measurement of the ttbar Production Cross-section at \r\nsqrt(s) = 1.96 TeV in the emu Channel Using Secondary Vertex b-tagging','Cristophe Clement, Sara Lager, Jonas Strandberg','','Sara Lager','TOP','CONF','PUBLIC','POSTSCRIPT','$D0_PRI/4528/m_conf_emu_btagging_v0_3.pdf','',2004,7,22,2453209,2004,9,6,2453255),(4529,'Experimental Summary of the 39th Rencontres du Moriond on \"OCD and High Energy Interactions\"','Boaz Klima','A summary of 65 talks - 18 pages, 20 figures, 47 references','Boaz Klima','','CONF','PUBLIC','OTHER','/RunII/home/klima/moriond/m_Experimental_Summary_2004_hepx.pdf','',2004,7,23,2453210,2004,7,23,2453210),(4530,'A Study of Jet Energy Scale Dependence on Jet Shape Variables in the D0 Calorimeter','Elizabeth Carr\r\nBob Hirosky','','Bob Hirosky','ALGORITHMS','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4530/m_d0note_4530.pdf','',2004,7,23,2453210,2004,7,29,2453216),(4532,'','','','Greg','','','D0_PRIVATE','','','',2004,7,23,2453210,NULL,NULL,NULL,NULL),(4533,'Search for Randall-Sundrum Gravitons in the Dielectron and Diphoton Channel with 200 pb^-1 of Data with the DO Detector','Greg Landsberg and Emmanuelle Perez','','Greg Landsberg','NEW','CONF','D0_PRIVATE','OTHER','','',2004,7,23,2453210,NULL,NULL,NULL,NULL),(4534,'Angular correlations between b-jets in pp(bar) collisions at sqrt(s) = 1.96 TeV (internal version)','D.A. Wijngaarden','Internal review version of preliminary conference note for DPF. Most recent version: m_4534_v2.1.ps','D.A. Wijngaarden','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4534/m_4534_v2.1.ps','',2004,7,23,2453210,2004,8,5,2453223),(4535,'Search for Resonant Slepton Production','Christian Autermann, Arnd Meyer','','Christian Autermann','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4535/m_4535conf_rpv_v1.0.pdf','',2004,7,23,2453210,2004,8,10,2453228),(4536,'Measurement of mixing and the CP-violation parameter\r\nof the $(B^0, \\bar{B}^0)$ system','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4536/m_CPV4536.pdf','',2004,7,24,2453211,2004,7,31,2453218),(4537,'Search for Associated Production of Chargino and Neutralino in Final States with Two Electrons and an Additional Lepton','Ulla Blumenschein','','Ulla Blumenschein','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,7,24,2453211,NULL,NULL,NULL,NULL),(4538,'Search for Associated Production of Chargino and Neutralino in Final States with Two Electrons and an Additional Lepton','Ulla Blumenschein','','Ulla Blumenschein','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,7,24,2453211,NULL,NULL,NULL,NULL),(4539,'D0 Conference Note:\r\nObservation of the Bc Meson \r\nand a Study of its Properties \r\nin the J/psi+mu+X Final State\r\n','S.Towers','','Sherry Towers','','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4539/m_conf.ps','',2004,7,25,2453212,2004,8,13,2453231),(4540,'Measurement of the WW production cross section in ee, emu and mumu final states at D0 in Run II','Johannes Elmsheuser, Marc Hohlfeld','','Marc Hohlfeld','WZ','PHYS','D0_PRIVATE','','$D0_PRI/4540/m_wwxsec_4540.pdf','',2004,7,26,2453213,2004,10,8,2453287),(4541,'Search for associated production of charginos and neutralinos in the emu+l final state','Marc Hohlfeld','','Marc Hohlfeld','NEW','PHYS','D0_PRIVATE','','$D0_PRI/4541/m_trilepton_emul2004_4541.pdf','',2004,7,26,2453213,2004,10,8,2453287),(4542,'Measurement of the WW production cross section in ee, emu and mumu final states at D0 in Run II','Johannes Elmsheuser, Marc Hohlfeld','Preliminary Results for Summer 2004 Conferences','Marc Hohlfeld','WZ','CONF','D0_PRIVATE','','$D0_PRI/4542/m_wwxsec_4542.pdf','',2004,7,26,2453213,2004,10,8,2453287),(4543,'Search for Associated Chargino and Neutralino Production in emu+l Final States in D0 data from Run II','Marc Hohlfeld','Preliminary Results for Summer 2004 Conferences','Marc Hohlfeld','NEW','CONF','D0_PRIVATE','','$D0_PRI/4543/m_trilepton_emul2004_4543.pdf','',2004,7,26,2453213,2004,10,8,2453287),(4544,'Measurement of the W helicity in ttbar decays at sqrt(s)=1.96 TeV in the Lepton+jets Final States using a lifetime tag','Christian Schmitt','','Christian Schmitt','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4544/m_4544_summer04_whel_btag_note_v1_5.pdf','',2004,7,26,2453213,2005,3,16,2453446),(4545,'Measurement of the W helicity in ttbar decays at sqrt(s)=1.96 TeV in the Lepton+jets Final States using a lifetime tag','Christian Schmitt','','Christian Schmitt','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4545/m_4545_summer04_whel_btag_confnote_v0_7.pdf','',2004,7,26,2453213,2005,3,16,2453446),(4546,'Search for the Associated Production of Chargino and Neutralino in Final States with Three Leptons','Ulla Blumenschein, Volker Buescher, Meta Binder, Marc Hohlfeld, Rainer Hauser, Raimund Stroehmer','x','UIlla Blumenschein','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,7,26,2453213,NULL,NULL,NULL,NULL),(4547,'Luminosity Measurement with D0 Tracker','Prolay Mal, Andrei Nomerotski, Brendan Casey and Suyong Choi','D0 Internal document for cross-checking Luminosity measurement','Prolay Mal','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4547/m_d0note_4547.pdf','',2004,7,27,2453214,2004,7,27,2453214),(4548,'Comments on tracking at high luminosity','J. Estrada and B. Hoeneisen','','Bruce Hoeneisen','FIBER_TRACKER','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4548/m_track.pdf','',2004,7,27,2453214,2004,8,10,2453228),(4549,'Measurement of the W Helicity in Top Quark Decays','Bryan Gmyrek, Ken Johns, Erich Varnes','Conference note for ICHEP04','Erich Varnes','TOP','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,7,28,2453215,NULL,NULL,NULL,NULL),(4550,' Measurement of the production cross section times branching ratio of Z/gamma* -> tau tau in pbar p interactions at sqrt(s) = 1.96 TeV at DO ','C. Galea, S. Nelson, A. Patwa and S. Protopopescu','','Serban Protopopescu','WZ','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4550/m_ztautau_d0note_4550.pdf','',2004,7,29,2453216,2004,10,26,2453305),(4551,'Oversmearing of Missing Transverse Energy in Z->ee+X Monte Carlo Events','Ashish Kumar, Robert Kehoe, Kirti Ranjan and Brajesh C. Choudhary','','Ashish Kumar','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','/RunII/home/ashishk/public_html/m_metsmear.pdf','',2004,7,29,2453216,2004,8,9,2453227),(4552,'Search for Quark-Electron Compositeness in the Dielectron Channel using RunII Data','Subhendu Chakrabarti','ICHEP/DPF 2004 conference note','Subhendu Chakrabarti','NEW','CONF','D0_PRIVATE','','','',2004,7,29,2453216,NULL,NULL,NULL,NULL),(4553,'Understanding 1sigma Errors from a Parameterized Fit','Gordon Watts','','Gordon Watts','ALGORITHMS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4553/m_4553_note.pdf','',2004,7,29,2453216,2004,7,29,2453216),(4554,'Calorimeter Event Quality Using Level 1 Confirmation','Kirti Ranjan, Ashish Kumar, Brajesh C. Choudhary and Robert Kehoe.','','Kirti Ranjan','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4554/m_4554_evquality.ps','',2004,7,30,2453217,2004,9,29,2453278),(4555,'Top Quark Physics Results from D0','John Ellison','to appear in Proceedings of the Lake Louise Winter Institute, Lake Louise, Alberta, Canada, 15-21 February 2004.','John Ellison','TOP','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4555/m_d0note4555.ps','',2004,8,2,2453220,2004,8,2,2453220),(4556,'User\'s Guide to the Run 2a STT Simulation','Todd Adams, Norm Buchanan, Harrison Prosper, Wendy Taylor','','Norm Buchanan','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4556/m_sttsim_userguide_v1.pdf','',2004,8,3,2453221,2004,8,5,2453223),(4557,'Measurement of the Lifetime Difference in the B_s System','Avdhesh Chandra, Shashi Dugad, daria Zieminska','','Daria Zieminska','','CONF','D0_PRIVATE','','$D0_PRI/4557/m_bs3d_conf.ps','',2004,8,3,2453221,2004,8,12,2453230),(4558,'Measurement of the Lambda_b lifetime in the decay Lambda_b -> J/psi Lambda^0 with the D0 Detector','Eduard De La Cruz-Burelo, Heriberto Castilla-Valdez, Alberto Sanchez-Hernandez','Preliminary Results for Summer 2004 Conferences','Heriberto Castilla-Valdez','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,8,4,2453222,NULL,NULL,NULL,NULL),(4559,'Reconstruction of the B_s-->D_s mu X (D_s-->K*0 K) decay at D0','T. Bose, C. Leonidopoulos, H. Evans, V. Jain','','Tulika Bose','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4559/m_4559_Dsmu_kstark.ps','',2004,8,5,2453223,2004,8,24,2453242),(4560,'Discrepancy in the existing Monte Carlo description of the Silicon Tracker in D0 detector.','Piyali Banerjee, Sudeshna Banerjee','','Sudeshna Banerjee','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4560/m_4560_smt_geometry1.ps','',2004,8,6,2453224,2004,8,6,2453224),(4561,'Search for Technicolor Particles rhoT and omegaT in the Dielectron Channel with 200 pb^-1 of Data with the D0 Detector','Greg Landsberg and Meena Narain','','Greg Landsberg','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/4561/m_4561.pdf','',2004,8,6,2453224,2005,2,21,2453423),(4562,'Tracking at high luminosity with the Trip_t chip','J. Estrada and B. Hoeneisen','','Bruce Hoeneisen','FIBER_TRACKER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4562/m_Trip_t.pdf','',2004,8,7,2453225,2004,8,10,2453228),(4563,'Direct Measurement of the W Width','Junjie Zhu, Sarah Eno, Marco Verzocchi','','Junjie Zhu','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4563/m_4563.ps','',2004,8,8,2453226,2004,11,14,2453324),(4564,'The Matrix Method and its Error Calculation','Emanuela Barberis, Tobias Golling, Ia Iashvili, Aurelio Juste, Arnulf Quadt, Philipp Schieferdecker','','Arnulf Quadt','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4564/m_d0note_4564.pdf','',2004,8,8,2453226,2004,8,8,2453226),(4565,'Measurement of the Top pair Production Cross Section in \r\nproton-antiproton Collisions at the center-of-mass energy of 1.96 TeV Using b-tagged Lepton and Jets Events\r\n','D0 collaboration','','E.Shabalina','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4565/m_topxs_btag_conf.ps','',2004,8,9,2453227,2004,8,9,2453227),(4566,'Upgrade of Level 1 Muon Trigger Logic for the v13 Trigger List','Jeff Temple, Rob McCroskey, and Ken Johns','','Jeff Temple','MUON','','D0_PRIVATE','OTHER','$D0_PRI/4566/m_l1muonv13trigs.pdf','',2004,8,9,2453227,2006,8,24,2453972),(4567,'Search for the Associated Chargino-Neutralino Production in the Final States with Two Muons and Additional Lepton','Meta Binder\r\nRaimund Strohmer','','Meta Binder','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4567/m_d0conf_4567_trilepton_mumu.pdf','',2004,8,10,2453228,2005,5,6,2453497),(4568,'Looking for $WZ$ Diboson Events in Trilepton Final States with 2001-2003 D\\O\\ Data','Qichun Xu, Bing Zhou, James Degenhardt','','Qichun Xu','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4568/m_WZDibosonNote_4568.pdf','',2004,8,10,2453228,2005,4,11,2453472),(4569,'Search at D\\O\\ for Inclusive $WZ$ Diboson Events in Trilepton Final States at $\\sqrt{s}=1.96$ TeV','Qichun Xu, Bing Zhou, James Degenhardt','','Qichun Xu','WZ','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,8,10,2453228,NULL,NULL,NULL,NULL),(4570,'TrigSimCert: A New Package to Certify and Analyze Triggers','Camille Belanger-Champagne, Yann Coadou, Dugan O\'Neil, Steve Beale','','Camille Belanger-Champagne','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4570/m_D0Note4570_trigsimcert_v1.pdf','',2004,8,10,2453228,2005,6,24,2453546),(4571,'Measuring Jet Response Using the Missing Et Projection Fraction Method in photon+jet Events','Dag Gillberg, Dugan O\'Neil, Yann Coadou, Herve Choi, Brendan Pass, Mike Vetterli','','Dag Gillberg, dgillber@fnal.gov','CALORIMETER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4571/m_SFU-JES_D0Note4571.pdf','',2004,8,10,2453228,2005,2,3,2453405),(4572,'A Search for Anomalous Heavy-Flavor Quark Production in Association with W Bosons','Wade Fisher','','Wade Fisher','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4572/m_heavyFlavConf.pdf','',2004,8,11,2453229,2004,9,2,2453251),(4573,'Measurement of the Cross section for Inclusive {\\it Z} Production in Di-muon Final\r\nStates at $\\sqrt{s}=1.96$~TeV','Emily Nurse and Paul Telford','','Paul Telford','WZ','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4573/m_4573_Zmumu.ps','',2004,8,11,2453229,2004,8,11,2453229),(4574,'Measurement of the Top Quark Mass in the Lepton+Jets Channel using D0 Run II Data.\r\n','The Dzero Collaboration','To be presented at the 2004 summer conferences','Meenakshi Narain','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/4574/m_conf_4574.pdf','',2004,8,12,2453230,2005,2,21,2453423),(4575,'Angular correlations between b-jets in pp(bar) collisions at sqrt(s) = 1.96 TeV','D.A. Wijngaarden','Conference note for DPF','D.A. Wijngaarden','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4575/m_4575_v1.0.pdf','',2004,8,12,2453230,2005,1,17,2453388),(4576,'Search for Large Extra Dimensions in the Dimuon Channel with 250 pb^-1 of Run II Data.','Ryan Hooper and Greg Landsberg','','Ryan Hooper','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4576/m_EDMU04_conf_vfinal.ps','',2004,8,12,2453230,2004,8,12,2453230),(4577,'Search for Heavy Z\' Bosons in the Dimuon Channel with 250 pb^-1 of Data with the D0 Detector','Ryan Hooper and Greg Landsberg','','Ryan Hooper','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4577/m_Zprime04_conf_vfinal.ps','',2004,8,12,2453230,2004,8,12,2453230),(4578,'Measurement of the Bd mixing rate using three flavor tagging algorithms','Christos Leonidopoulos','','Christos Leonidopoulos','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/4578/m_d0note4578_BdMixing_v1.0.pdf','',2004,8,13,2453231,2004,8,30,2453248),(4579,'A search for Techniparticle production at D0RunII in the mode, rho_T -> W (->e nu) + pi_T (-> bb) with b-quark jet identification using Secondary Vertex ','Lorenzo Feligioni, Meenakshi Narain','','Lorenzo Feligioni','','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4579/m_4579.pdf','',2004,8,13,2453231,2005,2,21,2453423),(4580,'Search for Scalar Leptoquarks in the Acoplanar Jet Topology','A. Zabi, L. Duflot, J.-F. Grivaz and P. Verdier','','Jean-Francois Grivaz','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4580/m_LQ_CONF.ps','',2004,8,15,2453233,2004,8,25,2453243),(4581,'Reconstruction of the B_s-->D_s mu X (D_s-->K*0 K) decay at D0','T. Bose, C. Leonidopoulos, H. Evans, V. Jain','','Tulika Bose','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4581/m_4581_kstark_conf_note.ps','',2004,8,16,2453234,2004,8,24,2453242),(4582,'Search for Scalar Leptoquarks in the Acoplanar Jet Topology\r\n','A. Zabi, L. Duflot, J.-F. Grivaz and P. Verdier\r\n','','Jean-Francois Grivaz','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4582/m_LQ_PHYS.ps','',2004,8,16,2453234,2004,8,25,2453243),(4583,'Certification of the STT Simulation Clustering','Todd Adams and Norm Buchanan','','Todd Adams','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4583/m_4583_sttclust_v1.pdf','',2004,8,17,2453235,2004,8,17,2453235),(4584,'A search for Techniparticle production at D0RunII in the\r\nmode, rho_T -> W (->e nu) + pi_T (-> bb) with b-quark jet\r\nidentification using Secondary Vertex\r\n','Lorenzo Feligioni, Meenakshi Narain','','Meenakshi Narain','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2004,8,17,2453235,NULL,NULL,NULL,NULL),(4585,'Measurement of B(t -> Wb)/B(t -> Wq)','Christophe Clement, Regina Demina, Tobias Golling, \r\nAurelio Juste, Sebastien Greder, Alexander Khanov, \r\nSara Lager, Flera Rizatdinova, Elizaveta Shabalina, \r\nJonas Strandberg','','clement','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4585/m_twb_v0.5.ps','',2004,8,17,2453235,2004,8,29,2453247),(4586,'Measurement B(t -> Wb)/B(t -> Wq)','Christophe Clement, Regina Demina, Tobias Golling, \r\nAurelio Juste, Sebastien Greder, Alexander Khanov, \r\nSara Lager, Flera Rizatdinova, Elizaveta Shabalina, \r\nJonas Strandberg','','C.Clement','TOP','CONF','PUBLIC','POSTSCRIPT','$D0_PRI/4586/m_twb_conf_v0.3.ps','',2004,8,17,2453235,2004,8,29,2453247),(4587,'Topological Analysis Method and High Efficiency Event Selection for Z(mumu)+bbbar','YILDIRIM D. MUTAF','','YILDIRIM D. MUTAF','ALGORITHMS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4587/m_note4587.pdf','',2004,8,18,2453236,2004,8,24,2453242),(4588,'A Search for Microdischarge','David Hover, Alice Bean','','Alice Bean','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4588/m_hover-microdischarge.doc','',2004,8,23,2453241,2004,8,31,2453249),(4589,'Muon studies using J/psi','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4589/m_asym_Jpsi.pdf','',2004,8,24,2453242,2004,8,24,2453242),(4590,'b-jet Identification in the Dzero Detector. ','Daniel Bloch, Lisa Chabalina, Benoit Clement, Regina Demina, Lorenzo Feligioni, Denis Gele, Sebastien Greder, Alexander Khanov, Meenakshi Narain, Flera Rizatdinova, Isabelle Ripp-Baudot, Philipp Schieferdecker, Ariel Schwartzman\r\n\r\n','','Meenakshi Narain','','CONF','D0_PRIVATE','POSTSCRIPT','','',2004,8,26,2453244,NULL,NULL,NULL,NULL),(4591,'Using Multiple VMEbus Vertical Interconnect with a Motorola PowerPC MVME Processor Board','Geoff Savage \r\n\r\nSuharyo Sumowidagdo ','Unpublished','Suharyo Sumowidagdo','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4591/m_ppc-vic_4591.pdf','',2004,8,30,2453248,2004,8,30,2453248),(4592,'Using Multiple VMEbus Vertical Interconnect with a Motorola PowerPC MVME Processor Board','Geoff Savage \r\nSuharyo Sumowidagdo ','Unpublished','Suharyo Sumowidagdo','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,8,30,2453248,NULL,NULL,NULL,NULL),(4593,'Studies of Pedestal Distribution Signatures in the D0 SMT FWedges','Justace Clutter and Alice Bean','A study of the noisy behaviour of the D0 SMT FWedges.','Justace Clutter','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4593/m_d0note-4593.pdf','',2004,8,30,2453248,2005,1,20,2453391),(4594,'A Search for Anomalous Heavy-Flavor Quark Production in Association with W Bosons','Wade Fisher','','Wade Fisher','NEW','DOC','D0_PRIVATE','OTHER','$D0_PRI/4594/m_heavyFlav.pdf','',2004,9,2,2453251,2005,2,21,2453423),(4595,'Search for R-parity violated supersymmetry in the 2 electrons + taus final state\r\n','Francois Charles, Anne-Catherine Le Bihan','','Anne-Catherine Le Bihan','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4595/m_rpv_l133_conf_note_4595.ps','',2004,9,8,2453257,2004,11,15,2453325),(4596,'Study of Luminosity Dependence of Forward Muon Detector Efficiency','G.Alexeev, D.Denisov, Y.Yatsunenko','Study of forward muon detector efficiency vs Tevatron luminosity has been performed. Within 1% of measurement accuracy the efficiency is independed up to 90.e30 of luminosity.','Yuriy Yatsunenko','MUON','DOC','PUBLIC','OTHER','$D0_PRI/4596/m_fmevl.doc','',2004,9,8,2453257,2004,9,8,2453257),(4597,'Uncertainty Calculation for Combined W+jets and QCD Backgrounds in Analyses with W+jets Signatures','Reinhard Schwienhorst, Emmanuelle Perez','','Reinhard Schwienhorst','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4597/m_WQCDCombinedError_4597.pdf','',2004,9,8,2453257,2004,9,9,2453258),(4598,'Single Muon Yield Luminosity Dependence','D. Denisov, A. Ferapontov, A. Popov, A. Shchukin','Forward muon yields from two sets of special muon runs are analyzed.','Alexey Popov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4598/m_4598.pdf','',2004,9,13,2453262,2004,9,13,2453262),(4599,'Search for GMSB SUSY in Diphoton Events with Large Missing ET','Yann Coadou','Talk presented at the 12th International Conference on Suypersymmetry and Unification of Fundamental Interactions (SUSY04), June 17-23, 2004, in Tsukuba, Japan','Yann Coadou','NEW','PUB','D0_PRIVATE','OTHER','$D0_PRI/4599/m_susy04_d0note4599.pdf','',2004,9,13,2453262,2004,9,14,2453263),(4600,'A Measurement of the Proper Time Resolution of the DZero Detector for Semileptonic B0s Meson Decays','Christos Leonidopoulos, Ariel Schwartzman, Wendy Taylor','','Wendy Taylor','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4600/m_bstaures_4600.pdf','',2004,9,15,2453264,2005,6,27,2453549),(4601,'C-Hole Scintillation Counter Installation and Testing','Satyanarayana Bheesette, Steve Doulas, Robert Harrington, Al Ito, Juan Pable Negret, Darien Wood','','Robert Harrington','MUON','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,9,17,2453266,NULL,NULL,NULL,NULL),(4602,'CFT Light Yield Studies','O. Boeriu, M. Hildreth, S. Jabeen','D0 Note','Oana Boeriu','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4602/m_cft_studies4602.ps','',2004,9,21,2453270,2004,9,22,2453271),(4603,'','','','b-quark identification','TOP','','D0_PRIVATE','','','',2004,9,22,2453271,NULL,NULL,NULL,NULL),(4604,'','','','b identification','TOP','','D0_PRIVATE','','','',2004,9,22,2453271,NULL,NULL,NULL,NULL),(4605,'','','','b identification','B_PHYSICS','','D0_PRIVATE','','','',2004,9,22,2453271,NULL,NULL,NULL,NULL),(4606,'','','','b tagging','B_PHYSICS','','D0_PRIVATE','','','',2004,9,22,2453271,NULL,NULL,NULL,NULL),(4607,'','','','b tagging','B_PHYSICS','','D0_PRIVATE','','','',2004,9,22,2453271,NULL,NULL,NULL,NULL),(4608,'','','','tagging methods','B_PHYSICS','','D0_PRIVATE','','','',2004,9,22,2453271,NULL,NULL,NULL,NULL),(4609,'','','','tagging','B_PHYSICS','','D0_PRIVATE','','','',2004,9,22,2453271,NULL,NULL,NULL,NULL),(4610,'','','','tagging','TOP','','D0_PRIVATE','','','',2004,9,22,2453271,NULL,NULL,NULL,NULL),(4611,'The D-Zero Level 2 Magic Bus','D. Baden\r\nR. Hirosky\r\nR. Schwienhorst','','R. Hirosky','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4611/m_4611_d0_magicbus.pdf','',2004,9,22,2453271,2004,9,28,2453277),(4612,'Magic Bus Arbitration Revealed','Rick Kwarciany, Reinhard Schwienhorst, \r\nDrew Baden, Jim Linnemann, Bob Hirosky','','R. Hirosky','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4612/m_4612_MBUS_Arbitration.pdf','',2004,9,22,2453271,2004,9,22,2453271),(4613,'An Overview of the CFT Simulation Code','M. Hildreth, O. Boeriu, C. Schmitt','D0 Note','Oana Boeriu','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4613/m_cftsimulation_D0Note4613.pdf','',2004,9,22,2453271,2006,4,20,2453846),(4614,'cal_event_quality package','Laurent Duflot, Viatcheslav Shary, Ingo Torchiani, Robert Zitoun','This note describes the cal_event_quality package designed for detecting the calorimeter events with data quality problems.','Viatcheslav Shary','CALORIMETER','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4614/m_cal_event_quality_note4614.pdf','',2004,9,23,2453272,2004,10,6,2453285),(4615,'CALORIMETER DATA QUALITY MONITORING','Laurent Duflot and Viatcheslav Shary','This note includes user and expert guides as well as monitoring packages description.','Viatcheslav Shary','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,9,23,2453272,NULL,NULL,NULL,NULL),(4616,'D0 Computing and Software Operations and Plan - 2004','A. Boehnlein, J. Boyd, G. Brooijmans, G. Davies, M. Diesburg, L. Duflot, S. Fuess, R. Hauser, A. Lyon, W. Merritt, D. Oneil, J. Snow, T. Yasuda, D. Wicke','','Gustaaf Brooijmans','SOFTWARE_INFRA','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4616/m_d0note4616_comp_plan_2004.ps','',2004,9,26,2453275,2004,9,26,2453275),(4617,'L2 Beta Design Report','Bob Hirosky,\r\nDrew Baden,\r\nSergey Burdin, \r\nPhilippe Cros, \r\nBernard Lavigne, \r\nPierre Petroff, \r\nPatrice Verdier','','R. Hirosky','TRIGGER','','D0_PRIVATE','OTHER','$D0_PRI/4617/m_4617_l2b_tdr-v3_1_0.pdf','',2004,9,28,2453277,2004,9,28,2453277),(4618,'Conclusions of Mini-Workshop on PDF uncertainties and related topics','Volker Buescher, Jean-Francois Grivaz, Thomas Nunnemann, Markus Wobisch','','Volker Buescher','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4618/m_4618_pdf.pdf','',2004,9,28,2453277,2004,10,7,2453286),(4619,'The CPS Discriminator Calibration','Yuan Hu, Stefan Grunendahl, Paul Grannis','','Yuan Hu','PRESHOWER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4619/m_d0note4619-cps-disc-cali.ps','',2004,9,30,2453279,2004,10,3,2453282),(4620,'The ONETOP Matrix Element Generator at DZero','Reinhard Schwienhorst','','Reinhard Schwienhorst','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/4620/m_onetop_4620.pdf','',2004,10,1,2453280,2004,10,1,2453280),(4621,'Level 3 b-tagging Triggers for the MSSM Multi-jet Higgs Analysis','Tim Scanlon','','Tim Scanlon','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4621/m_4621_hbbl3trigs.ps','',2004,10,11,2453290,2007,2,21,2454153),(4622,'An improved neural network for tau id.','The D0 tau-ID group','','Arnaud GAY','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4622/m_newTauID.pdf','',2004,10,14,2453293,2004,10,15,2453294),(4623,'Measurement of the ttbar Production Cross-section at center of mass energy 1.96 TeV in Dilepton Final States','S. Anderson A. Juste, K. Johns, R. Kehoe, J. Kozminski, A. Kumar, S. Lager, J. Leveque, R. McCroskey, P. Mal, A. Quadt, K. Ranjan, E. Shabalina','','E. Shabalina','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4623/m_winter04_dilepton_note_4623.ps','',2004,10,15,2453294,2005,1,11,2453382),(4624,'Users Guide for the SDAQ Browser ','Simon Dean','','Simon Dean','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4624/m_4624_smt_ped_tools.ps','',2004,10,17,2453296,2004,10,19,2453298),(4625,'Measurement of the ttbar production cross-section at sqrt(s)=1.96 TeV using lifetime tagging','C. Clement, R. Demina, T. Golling, A. Juste, S. Greder, A. Khanov, S. Lager, F. Rizatdinova, E. Shabalina, J. Strandberg','','Golling','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4625/m_btag_4625.ps','',2004,10,18,2453297,2004,10,19,2453298),(4626,'A Study of the Tracking Efficiency of Finding Ks','J. Osta and M.D. Hildreth','','Mike Hildreth','ALGORITHMS','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4626/m_Ks_lifetime_d0note.pdf','',2004,10,20,2453299,2004,10,21,2453300),(4627,'Results for Top and Higgs at Tevatron','Dmitri Denisov for the D0 and CDF Collaborations','This Note is a copy of the Plenary talk at ICHEP 2004 Conference about results and prospects of t quark studies and Higgs searches by CDF and D0 experiments.','Dmitri Denisov','','CONF','D0_PRIVATE','OTHER','$D0_PRI/4627/m_4627.pdf','',2004,10,20,2453299,2004,10,21,2453300),(4628,'Tools of Trigger Meistery','Elizabeth Gallas, Terry Toole, Reinhard Schwienhorst','','Reinhard Schwienhorst','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4628/m_TMtools_4628_v1.pdf','',2004,10,21,2453300,2004,11,3,2453313),(4629,'Recommendation of the Ad-Hoc Committee on Limit-Setting Procedures to be Used by D0 in Run II','V. Buescher, J.-F. Grivaz, J. Hobbs, A. Kharchilava, \r\nG. Landsberg, J. Linnemann, H. Prosper, and\r\nS. Soldner-Rembold','','Greg Landsberg','ALGORITHMS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4629/m_4629.pdf','',2004,10,21,2453300,2004,10,21,2453300),(4630,'Search for Technicolor in the $W( \\rightarrow\\mu\\nu ) \\bb/\\bc$ Channel','Satish Desai, John Hobbs, Peter Tamburello','','Satish Desai','NEW','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4630/m_4630.pdf','',2004,10,22,2453301,2004,10,22,2453301),(4631,'Search for Single Top Production at the Tevatron','Reinhard Schwienhorst, on behalf of the D0 and CDF collaborations','conference proceedings for 5th Rencontres du Vietnam, 2004.','Reinhard Schwienhorst','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/4631/m_vietnamSingleTop_4631.pdf','',2004,10,25,2453304,2004,10,25,2453304),(4632,'Top Quark Production Cross Section at E^CM=1.96TeV','Reinhard Schwienhorst, on behalf of the D0 and CDF collaborations','Proceedings for the 5th Rencontres du Vietnam','Reinhard Schwienhorst','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/4632/m_vietnamttbarxs_4632.pdf','',2004,10,25,2453304,2004,10,25,2453304),(4633,'A Search for Wbb and WH production in ppbar collisions at 1.96 TeV','Stephanie Beauceron and Gregorio Bernardi','D0 note corresponding to the Wbb/WH PRL publication (Oct.2004)','Gregorio Bernardi','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4633/m_wbb_wh_4633.ps','',2004,10,25,2453304,2004,10,25,2453304),(4634,'Searches for Supersymmetry at the Tevatron','Arnd Meyer','ICHEP 2004 Proceedings','Arnd Meyer','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/4634/m_4634_ichep_2004_susy_proc.pdf','',2004,10,27,2453306,2004,10,27,2453306),(4635,'Overlap among Trigger Bits','J. Linnemann','','Terrence Toole','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4635/m_d0note4635_overlaps.pdf','',2004,10,27,2453306,2004,10,27,2453306),(4636,'Study of possible enhancements of the L3 global tracker','C. P. Buszello, Imperial College London','','Claus Buszello','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4636/m_Note4636_L3_tracker_enhancements.ps','',2004,10,28,2453307,2004,10,28,2453307),(4637,'Testing of the Layer 0 Hybrids and Full Readout Chain','Sowmya Kandula, Zeno D. Greenwood,Andrzej Zieminski,Dimitry Tsybechev, Andrei Nomerotski','A description of the Layer 0 readout chain and its testing is given. A discussion of tests performed on the hybrids consisting with SVX4 chips mounted also is included.','Z. D. Greenwood','SILICON','DOC','D0_PRIVATE','OTHER','','',2004,10,29,2453308,NULL,NULL,NULL,NULL),(4638,'The DZero Run II Trigger System','Reinhard Schwienhorst','proceedings for DPF 2004','Reinhard Schwienhorst','TRIGGER','CONF','D0_PRIVATE','OTHER','$D0_PRI/4638/m_dpf2004d0trigger_4638.pdf','',2004,10,29,2453308,2004,10,29,2453308),(4639,'Study of c\\bar{c} contribution to the semileptonic sample of B mesons','C.Ay, S. Burdin, G.Borissov, T. Kuhl, A.Nomerotski, S. Tapprogge, T. Trefzger, G. A. Weber, C. Zeitnitz','','A.Nomerotski','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4639/m_ccbar_note4639.pdf','',2004,11,1,2453311,2006,4,18,2453844),(4640,'The trigger_rate_tool package : a tool to estimate rates and overlaps for the development of physics trigger lists','Volker Buescher, Arnaud Duperrin, Rick Jesik, Per Jonsson, Abid Patwa, Kyle Stevenson, Andre S. Turcot, Brigitte Vachon, Marco Verzocchi','','Arnaud Duperrin','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4640/m_trigger_rate_tool_4640.ps','',2004,11,1,2453311,2004,11,12,2453322),(4641,'The v13 physics trigger list and New Phenomena triggers','Arnaud Duperrin, Ulla Blumenschein, Volker Buescher, Jean-Francois Grivaz, Abid Patwa, Raimund Strohmer','','Arnaud Duperrin','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4641/m_triggerNPv13_4641.ps','',2004,11,1,2453311,2004,12,6,2453346),(4642,'HDI Tracking Efficiency','O.Atramentov, S.Burdin, K.Harder, M.Shamim','','Oleksiy Atramentov','SILICON','','D0_PRIVATE','','','',2004,11,1,2453311,NULL,NULL,NULL,NULL),(4643,'Search for R-parity violated SUSY in the 2 electrons + taus final state (lambda 133 coupling)','Anne-Catherine Le Bihan, Fran?ois Charles','','Anne -Catherine Le Bihan','NEW','PHYS','D0_PRIVATE','','','',2004,11,2,2453312,NULL,NULL,NULL,NULL),(4644,'A Z->bbbar Trigger Proposal for D0','Amber Jenkins, Per Jonsson, Gavin Davies','','Amber Jenkins','','PHYS','D0_PRIVATE','POSTSCRIPT','','',2004,11,3,2453313,NULL,NULL,NULL,NULL),(4645,'Search for rare leptonic B decays at the Tevatron','Ralf Bernhard','Proceedings for a talk given at the DPF2004, Riverside, CA','Ralf Bernhard','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4645/m_procDPF2004RB.pdf','',2004,11,3,2453313,2004,11,3,2453313),(4646,'d0correct v8','E. Busato, F. Deliot, R. Hauser, J. Stark, R. Stroehmer, P. Verdier, M. Verzocchi','','Deliot','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4646/m_v8d0correct.pdf','',2004,11,10,2453320,2005,7,5,2453557),(4647,'','D0 Data Format Working Group','','H. Greenlee','SOFTWARE_INFRA','DOC','D0_PRIVATE','OTHER','$D0_PRI/4647/m_d0note4647_caf_content.pdf','',2004,11,10,2453320,2005,8,29,2453612),(4648,'Asymmetry Equations','Adam Lyon','','Adam Lyon','WZ','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4648/m_4648_asymmetryEquations.pdf','',2004,11,10,2453320,2004,11,10,2453320),(4649,'WWZ Anomalous Coupling Limits','James Degenhardt, Tom Diehl, Qichun Zhou, Bing Zhou','','James Degenhardt','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4649/m_wzprl_v314.ps','',2004,11,12,2453322,2005,4,11,2453472),(4650,'Direct Measurement of the W width in Proton-Antiproton Collisions at sqrt(s)=1.96 TeV (conference note for DPF 2004)','Junjie Zhu','','Junjie Zhu','WZ','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4650/m_4650.ps','',2004,11,14,2453324,2004,11,14,2453324),(4651,'Redressing the BLS Trigger Cables for the Run IIb L1 Calorimeter Trigger Upgrade','Alan Stone, Mario Camuyrano, Richard DeJonghe','','Alan Stone','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4651/m_l1cal_bls.pdf','',2004,11,15,2453325,2006,7,25,2453942),(4652,'Expected Bc meson yields per 100 pb-1 \r\nin J/psiX final states at D0','Sherry Towers','','Sherry Towers','','','D0_PRIVATE','','$D0_PRI/4652/m_yieldb.ps','',2004,11,15,2453325,2004,12,21,2453361),(4653,'Radiation dose history in the SMT','Sijbrand de Jong, Cristina Galea, Miruna Anastasoaie','Radiation dose estimate for the inner SMT layer until\r\nSeptember 2004','Sijbrand de Jong','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4653/m_4653_smtradhist.pdf','',2004,11,16,2453326,2004,11,16,2453326),(4654,'Template fit method to estimate the QCD background in e+jets analysis','Jean-Roch VLIMANT','','jean-roch vlimant','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4654/m_template_note.ps','',2004,11,17,2453327,2005,2,20,2453422),(4655,'Study of EM efficiencies in p14. for top analysis.','Cecilia E. Gerber, Elizaveta K. Shabalina, Gustavo J. Otero y Garzon','','Gustavo J. Otero y Garzon','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4655/m_EMEfficienciesNote.ps','',2004,11,19,2453329,2005,3,7,2453437),(4656,'Jet Physics at the Tevatron','Lee Sawyer\r\non behalf of the CDF and D0 collaborations','Talk presented at ISMD2004, to be published in Acta Polonica','Lee Sawyer','QCD','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4656/m_D0Note4656.pdf','',2004,11,22,2453332,2004,12,28,2453368),(4657,'Using PDT pads in muon segment reconstruction in p17','Paul de Jong\r\nPieter van den Berg','','Paul de Jong','MUON','DOC','D0_PRIVATE','POSTSCRIPT','','',2004,11,23,2453333,NULL,NULL,NULL,NULL),(4658,'Large Tiles for Z->bb in the L1 Calorimeter Trigger','Miruna Anastasoaie and Frank Filthaut','','Miruna Anastasoaie','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4658/m_4568_tiles.ps','',2004,11,23,2453333,2004,11,24,2453334),(4659,'','','','hongluo','NEW','','D0_PRIVATE','POSTSCRIPT','','',2004,11,29,2453339,NULL,NULL,NULL,NULL),(4660,'Measurement of the differential Z0-boson production cross-section as function of transverse momentum','Britta Tiller, Thomas Nunnemann','','Britta Tiller (Leonhardt)','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4660/m_note4660.pdf','',2004,12,2,2453342,2004,12,17,2453357),(4661,'Search for First Generation Leptoquarks in ppbar collisions at sqrt(s)=1.96TeV','Shaohua Fu, Alexis Cothenet, Marie-Claude Cousinou,Vishnu Zutshi','','M.C Cousinou','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4661/m_LQ1search_note4661.pdf','',2004,12,5,2453345,2004,12,5,2453345),(4662,'Measurement of the ttbar Production Cross-Section at sqrt{s}=1.96 TeV\r\nin the Electron+Jets Final State using a Topological Method\r\n','Clement, C. Gerber, G. Otero, M.-A. Pleier,\r\nE. Shabalina, J-R. Vlimant','To be published in PRL','E. Shabalina','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4662/m_ejets_topo_note_4662.pdf','',2004,12,6,2453346,2005,4,29,2453490),(4663,'Simulation of RunIIb L1 Cal Trigger and EM Algorithm Optimization','S. Lammers, G. Pawloski','n/a','Sabine Lammers','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4663/m_L1CalIIbSim4663.pdf','',2004,12,9,2453349,2005,4,8,2453469),(4664,'Track Isolation for Electromagnetic Objects at Level 3','Carsten Magass','','Carsten Magass','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4664/m_4664_iso.ps','',2004,12,9,2453349,2004,12,14,2453354),(4665,'Energy measurements with the central preshower detector','Drew Alton, Jens Konrath','We present a method to compensate the CPS saturation effect and use it for energy measurements.','Jens Konrath','PRESHOWER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4665/m_CPSSaturation2.ps','',2004,12,14,2453354,2005,3,14,2453444),(4666,'Amplitude Stability of the Forward Muon Scintillation Counters','D. Denisov, V. Evdokimov, I. Vasilyev','','Igor Vasilyev','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4666/m_4666.pdf','',2004,12,15,2453355,2004,12,15,2453355),(4667,'Measurement of the $\\rm t\\bar{t}$ Production Cross-Section at $\\sqrt{s}=1.96$~TeV \r\nin the Muon+Jets Final State using a Topological Method','Tobias Golling','to be published in PRL','Tobias Golling','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4667/m_mujets_topo_note_4667.pdf','',2004,12,16,2453356,2005,4,29,2453490),(4668,'Combination of CDF and DZero Limits on a Gauge Mediated SUSY Model Using Diphoton and Missing Transverse Energy Channel','V. Buescher, J. Conway, R. Culbertson, Y. Gershtein, J.-F. Grivaz, B. Heinemann, D.H. Kim, M.S. Kim, S. Lammel, G. Landsberg, S.W. Lee, S. Mrenna, D. Toback, S.M. Wang','','Yuri Gershtein','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4668/m_4668_ggMetCombo_0p15.ps','',2004,12,16,2453356,2005,4,1,2453462),(4669,'A model for Expected Event Size and Reconstruction Time for\r\nCertain B-physics Triggers at Any Luminosity in Run II','Burdin, Diehl, Nomerotski','','Tom Diehl','B_PHYSICS','','D0_PRIVATE','','$D0_PRI/4669/m_SpecRunResGreen.pdf','',2004,12,20,2453360,2005,2,2,2453404),(4670,'Improved Search for Single Top Quark Production','Agelou, Andrieu, Baringer, Bean, Bloch, Boos, Burnett,\r\nBusato, Christofek, B.Clement, Dudko, Gadfort,\r\nGarcia-Bellido, Gele, P.Gutierrez, Heinson, Jabeen,\r\nS.Jain, Juste, Kau, Mitrevski, Parsons, Perea, Perez,\r\nProsper, Rud, Schwienhorst, Strauss, Tully, Vachon, Watts','','Ann Heinson','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4670/m_d0note4670_singletop_v23.pdf','',2004,12,21,2453361,2005,5,24,2453515),(4671,'D0 Search for Neutral Higgs Bosons at High Tan\\beta in Multi-jet Events Using p14 Data','Andrew Haas, Avto Kharchilava, Marine Michaut, Jyothsna Rani, Tim Scanlon, Boris Tuchming','hbb analysis in Higgs Group','Jyothsna Rani','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4671/m_bbh_analysis_note_p14_v1.44.pdf','',2004,12,21,2453361,2005,9,27,2453641),(4672,'The Isolated Photon Cross Section in the Central Rapidity Region at 1.96 TeV','D.Bandurin ','','Dmitry Bandurin','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4672/m_note4672.ps','',2004,12,28,2453368,2005,8,3,2453586),(4673,'Heavy B-hadrons at the Tevatron','A.Nomerotski on behalf of the D0 collaboration','FPCP 2004 contribution','A.Nomerotski','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4673/m_fpcp04_AN_v10.ps','',2005,1,5,2453376,2005,1,10,2453381),(4674,'DFEB2 backplane specification','Jamieson Olsen','new backplane specification for the run2b CTT upgrade','Jamieson Olsen','TRIGGER','DOC','PUBLIC','OTHER','$D0_PUB/4674/m_dfeb2_spec_4674.pdf','',2005,1,6,2453377,2005,1,6,2453377),(4675,'DFEC2 Design Specification','Jamieson Olsen','new DFE crate controller specification for the run2b CTT upgrade','Jamieson Olsen','TRIGGER','DOC','PUBLIC','OTHER','$D0_PUB/4675/m_dfec2_spec_4675.pdf','',2005,1,6,2453377,2005,1,6,2453377),(4676,'DFEA2 Design Specification','Jamieson Olsen','A new central track trigger track finder board to replace the DFEA daughterboards','Jamieson Olsen','TRIGGER','DOC','PUBLIC','OTHER','$D0_PUB/4676/m_dfea2_spec_4676.pdf','',2005,1,6,2453377,2005,1,6,2453377),(4677,'Top Mass Measurement in the Dilepton Channel','Sarosh Fatakia, Ulrich Heintz, Lars Sonnenschein','','Ulrich Heintz','TOP','DOC','D0_PRIVATE','OTHER','','',2005,1,7,2453378,NULL,NULL,NULL,NULL),(4678,'Search for the Associated Production of Chargino and Neutralino in Final States\r\nwith Two Electrons and an Additional Lepton','Ulla Blumenschein','','Ulla Blumenschein','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4678/m_trilep_eeX_draft4.pdf','',2005,1,9,2453380,2005,6,10,2453532),(4679,'Search for Second-Generation Leptoquarks in di-muon+di-jet Events at sqrt{s}=1.96TeV','Tim Christiansen, Raimund Strohmer','D0 Note in preparation for publication','Tim Christiansen','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4679/m_AnalysisNote_LQ2LQ2-mujmuj_V1-0.pdf','',2005,1,11,2453382,2005,9,13,2453627),(4680,'Search for the Associated Production of Chargino and Neutralino in Final States with Three Leptons','Ulla Blumenschein, Volker Buescher, Meta Binder, Marc Hohlfeld, Rainer Hauser, Raimund Stroehmer','','Ulla Blumenschein','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4680/m_comb_trilep_draft2.pdf','',2005,1,11,2453382,2005,6,10,2453532),(4681,'Monitoring of MDT tubes radiation ageing during Run II','V.M. Abazov, G.D. Alexeev, D. Denisov\r\n','Analysis of the results of four measurements of counting rates of MDT tubes performed over 3 years of RunII demonstrates no MDT radiation ageing up to integrated luminosity of 0.6 fb-1.','Abazov','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4681/m_n4681.pdf','',2005,1,11,2453382,2005,1,13,2453384),(4682,'Measurement of the ttbar production cross section at sqrt(1.96) TeV using Lifetime tagging','C. Clement, R. Demina, T. Golling, A. Juste, A. Khanov, S. Lager, F. Rizatdinova, E. Shabalina, J. Strandberg','','E. Shabalina','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4682/m_ljets_btag_note_4682.pdf','',2005,1,11,2453382,2005,4,29,2453490),(4683,'Measurement of the $\\rm t\\bar{t}$ Production Cross-section at \r\n$\\sqrt{s}=1.96$~TeV in Dilepton Final States\r\n','S. Anderson, S. Burke, S. Banerjee, B. Choudhary, C.Clement,\r\nK. Johns, R. Kehoe, J. Kozminski, A. Kumar, J. Leveque, \r\nP. Mal, G. Otero, A. Quadt, K. Ranjan, E. Shabalina\r\n','to be published in PRL','E.Shabalina','TOP','PHYS','D0_PRIVATE','','$D0_PRI/4683/m_dilepton_topo_note_4683.pdf','',2005,1,11,2453382,2005,4,29,2453490),(4684,'Combination of b-tagged and Topological Measurements of the W Helicity in Top Quark Decays','Bryan Gmyrek, Christian Schmitt, Ken Johns, Erich Varnes','','Erich Varnes','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','','',2005,1,12,2453383,NULL,NULL,NULL,NULL),(4685,'Limits on Anomalous $WW\\gamma$ Couplings from $p\\overline{p} \\rightarrow\r\nW\\gamma + X$ Events at $\\sqrt{s} = 1.96$ TeV','Sean Mattingly and Andrew Askew','','Sean Mattingly','WZ','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4685/m_wgamma_conf_4685.ps','',2005,1,19,2453390,2005,2,1,2453403),(4686,'Measurement of Anomalous Coupling Limits in $W\\gamma$ Events','Sean Mattingly and Andrew Askew','','Sean Mattingly','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4686/m_wgamma_4686.ps','',2005,1,19,2453390,2005,2,1,2453403),(4687,'Measurement of the W Helicity in Top Quark Decays','Ken Johns, Bryan Gmyrek, Erich Varnes','','Erich Varnes','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','','',2005,1,20,2453391,NULL,NULL,NULL,NULL),(4688,'The Level 2 CPS Trigger','Yuan Hu','','Yuan Hu','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4688/m_d0note4688-l2cps-trigger.ps','',2005,1,20,2453391,2005,1,21,2453392),(4689,'Measurement of the Cross section for Inclusive {\\it Z} Production in Di-muon Final States at $\\sqrt{s}=1.96$~TeV','Emily Nurse and Paul Telford','','Emily Nurse','WZ','PHYS','D0_PRIVATE','','$D0_PRI/4689/m_zmumu_4689.ps','',2005,1,20,2453391,2005,1,24,2453395),(4690,'Measurement of the $B^0_s$ lifetime using the semiLeptonic decay channel $B^0_s \\rightarrow D^+_s \\mu^- X$','Alberto Sanchez-Hernandez','','Alberto Sanchez-Hernandez','B_PHYSICS','PHYS','D0_PRIVATE','TEXT','$D0_PRI/4690/m_4690_lifetime_bs_v16.pdf','',2005,1,21,2453392,2005,3,3,2453433),(4691,'Signal Test of the BLS-to-ADF Transition System for the Run IIb L1 Calorimeter Trigger Upgrade ','Mario Camuyrano, Alan Stone','','Alan Stone','TRIGGER','DOC','D0_PRIVATE','OTHER','','',2005,1,23,2453394,NULL,NULL,NULL,NULL),(4692,'Impedance Matching and Frequency Analysis of the BLS Trigger and Pleated Foil Cables for the Run IIb L1 Calorimeter Trigger Upgrade ','Mark Adams, Mario Camuyrano, Alan Stone','','Alan Stone','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4692/m_D0Note4692_L1CalUpgrade_SignalCables.pdf','',2005,1,25,2453396,2005,4,25,2453486),(4693,'Measurement of the Top Quark Transverse Momentum Distribution in $t\\bar{t}$ Decays in the Lepton+Jets Channel at $\\sqrt{s}=1.96$~TeV using the Secondary Vertex Tagger','Jiri Kvita','','Jiri Kvita','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4693/m_p14_top_pt_d0note4693_v0_4.ps','',2005,1,25,2453396,2008,5,19,2454606),(4694,'Measurement of Multijet Production','Lotte Wilke, Thomas Hebbeker','','Thomas Hebbeker','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4694/m_d0note4694.ps','',2005,1,27,2453398,2005,2,2,2453404),(4695,'Sensitivity Analysis of the rare decay Bs -> mu mu phi with the D0 detector','Ralf Bernhard and Frank Lehner','','Ralf Bernhard','B_PHYSICS','PHYS','D0_PRIVATE','','$D0_PRI/4695/m_bsmumuphi_4695_v1.3.pdf','',2005,1,31,2453402,2006,2,15,2453782),(4696,'Update on the upper limit for the rare decay Bs -> mu mu with the D0 detector','Ralf Bernhard and Frank Lehner','','Ralf Bernhard','B_PHYSICS','PHYS','D0_PRIVATE','','$D0_PRI/4696/m_bs_mumu_update_4696.pdf','',2005,1,31,2453402,2005,4,27,2453488),(4697,'Lifetime Difference in the B_s System from Untagged\r\nDecay B_s -> J/psi phi','A. Chandra, S.Dugad, D. Zieminska','Analysis based on ~450 pb^-1','Daria Zieminska','B_PHYSICS','PHYS','D0_PRIVATE','','$D0_PRI/4697/m_bs3d.ps','',2005,1,31,2453402,2005,5,4,2453495),(4698,'Observation of ${B}_{s} \\rightarrow {D}_{s1}^{\\pm}(2536) \\mu \\nu {X} \\:$','Andrei Nomerotski (Fermilab), Jason Rieger (Indiana University)','','Jason Rieger','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4698/m_Ds1_2536.ps','',2005,1,31,2453402,2005,2,20,2453422),(4699,'Top Quark Measurements at the Tevatron','Ivor Fleck on behalf of the CDF and D0 collaborations','Conference proceedings from Physics at LHC 2004','Ivor Fleck','TOP','CONF','D0_PRIVATE','POSTSCRIPT','','',2005,1,31,2453402,NULL,NULL,NULL,NULL),(4700,'Measurement of the top quark mass at sqrt(s)=1.96 TeV using lifetime tagging and the Matrix Element method','Emanuela Barberis, Jochen Cammin, Regina Demina, Frank Fiedler, Ivor Fleck, Robert Harrington, Pieter Houben, Aurelio Juste, Kevin Kroninger, Alan Magerkurth, Arnulf Quadt, Philipp Schieferdecker, Ariel Schwartzman, Chris Tully','','Robert Harrington','TOP','DOC','D0_PRIVATE','OTHER','','',2005,1,31,2453402,NULL,NULL,NULL,NULL),(4701,'Limits on Bs mixing at D0 using\r\nBs->DsMuNuX with opposite side tagging','Brad Abbott (OU), Guennadi Borissov (Lancaster), Tulika Bose (Columbia), Sergey Burdin (FNAL), Hal Evans (Columbia), Phillip Gutierrez (OU), Vivek Jain (BNL), Andrei Nomerotski (FNAL), Dmitri Tsybychev (SUNY), Kin Yip (BNL)','','Sergey Burdin','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4701/m_d0note4701v1_5.pdf','',2005,1,31,2453402,2005,6,5,2453527),(4702,'Search for Flavor Changing Neutral Current Charm Decays and Observation of Ds+ -> pi+ mu+ mu-','Brendan Casey','','Brendan Casey','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4702/m_pimumu_bcasey_4702.pdf','',2005,1,31,2453402,2005,3,9,2453439),(4703,'Review of Recent Top Quark Measurements','A.P. Heinson','To appear in the proceedings of the Recontres du Vietnam, Hanoi, August 2004.','Ann Heinson','TOP','PUB','D0_PRIVATE','OTHER','$D0_PRI/4703/m_d0note4703_vietnam04_topreview_heinson.pdf','',2005,2,1,2453403,2005,2,3,2453405),(4704,'Measurement of the W helicity in ttbar decays at sqrt(s)=1.96 TeV in the Lepton+jets Final States using a lifetime tag','Christian Schmitt','','Christian Schmitt','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4704/m_whelicity_btag_4704.pdf','',2005,2,2,2453404,2005,5,25,2453516),(4705,'Top Mass Measurement with b-tagging in the Lepton+Jets Channel using the Ideogram Method in Run II','Martijn Mulders, Michele Weber','','Martijn Mulders','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4705/m_TopIdeogram_winter05_4705.pdf','',2005,2,2,2453404,2005,5,2,2453493),(4706,'A Search for Wbb-bar and WH Production in pp-bar Collisions \r\nat sqrt{s}=1.96 TeV with Full Data Set of Pass2','Hyunwoo KIM, Jae YU','','Hyunwoo Kim','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4706/m_4706_whanote.ps','',2005,2,2,2453404,2005,7,28,2453580),(4707,'Measurement of the Top Quark Mass in the Lepton+Jets Channel \r\nusing Dzero Run II Data: The Low Bias Template Method. \r\nTo be presented at the 2005 winter conferences.\r\n','Kevin Black, Meenakshi Narain\r\nBoston University','To be presented at the 2005 winter conferences.\r\n','Meenakshi Narain','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',2005,2,3,2453405,NULL,NULL,NULL,NULL),(4708,'Parton Level Corrections for Jetcorr 5.3','Alan Magerkurth','','Alan Magerkurth','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4708/m_parton_corrections_jetcorr5.3.pdf','',2005,2,3,2453405,2005,2,3,2453405),(4709,'Search for Resonant Sneutrino Production via the e$\\mu$ Signal','Zhao Chen, Liang Han, Yi Jiang, Yanbin Sun','','Liang Han','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4709/m_emu4709_v1.ps','',2005,2,3,2453405,2005,2,22,2453424),(4710,'Corrections for Deadtime in the Luminosity Detector Electronics ','Tim Andeen, Brendan Casey, Rich Partridge, Hwidong Yoo','','Brendan Casey','','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4710/m_deadtime-note.pdf','',2005,2,5,2453407,2005,2,11,2453413),(4711,'','','','4487','','','D0_PRIVATE','','','',2005,2,11,2453413,NULL,NULL,NULL,NULL),(4712,'Measurement of Select L3 Electron Tool Trigger Turn-on Curves for Trigger List Version 13','Leonard Christofek','','Leonard Christofek','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4712/m_v13_turn_ons.pdf','',2005,2,11,2453413,2005,8,19,2453602),(4713,'B flavor tagging with soft electrons','Md Naimuddin, Brajesh Choudhary, Tania Moulik, Brad Abbott, Vivek Jain','','Md Naimuddin','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4713/m_setag.ps','',2005,2,14,2453416,2005,5,25,2453516),(4719,'Model Independent search for New Physics','Phulipp A. Biallass, Oliver Kraff, Thomas Hebbeker','','Thomas Hebbeker','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4719/m_d0note4719.ps','',2005,2,15,2453417,2005,2,18,2453420),(4718,'The D? Search for Neutral Supersymmetric Higgs Bosons in Multi-jet Events','A. Haas, A. Kharchilava, J. Rani','Conference Note','Jyothsna Rani','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4718/m_bbh_analysis_conf_p14_v1.11.pdf','',2005,2,15,2453417,2005,9,27,2453641),(4716,'Gain Variation Study of Central BC-layer Scintillation Counters in D0 Detector','Shashikant R. Dugad, Al Ito, Manuel Zanberia','','Shashikant R. Dugad','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4716/m_4716_muon_scint.ps','',2005,2,14,2453416,2005,2,15,2453417),(4717,'Measurement of the Top Quark Mass with the Matrix Element Method at D0 Run-II','Frank Fiedler, Alan Magerkurth, Philipp Schieferdecker','','Philipp Schieferdecker','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4717/m_topmass_me_320ipb_4717.ps.gz','',2005,2,14,2453416,2005,7,19,2453571),(4720,'Jet Energy Scale at D0 RunII','Jean-Laurent Agram, Subhendu Chakraborti, Pavel Demine,\r\nKazu Hanagaki, Ia Iashvili, Alexander Kupco, Jiri Kvita,\r\nVivian O\'Dell, Nirmalya Parua, Christophe Royon, Jyothsna\r\nRani, Markus Wobisch','','Ia Iashvili','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4720/m_jes5.3_note4720.pdf','',2005,2,15,2453417,2005,2,15,2453417),(4721,'Feasibility study for the search of\r\n~t1 ~t1-bar ---> b b-bar 2jets 2neutralinos\r\ndecays at D0','Pedrame Bargassa, Rice University','','Pedrame Bargassa','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','/d0mino/bargassa/m_4721_st1_m4j_feas-bis.ps','',2005,2,15,2453417,2005,5,19,2453510),(4722,'Improved Search for Single Top Quark Production at D0 in Run II','Agelou, Andrieu, Baringer, Bean, Bloch, Boos, Bunichev, Burnett, Busato, Christofek, B. Clement, Dudko, Gadfort, Garcia-Bellido, Gele, P.Gutierrez, Heinson, Jabeen, S.Jain, Juste, Kau, Mitrevski, Parsons, Perea, Perez, Prosper, Rud, Schwienhorst, Strauss, Tully, Vachon, Watts','Preliminary result for Winter 2005 Conferences. More details in D0 Note 4670','Aran Garcia-Bellido','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/4722/m_d0note4722_singletop_v13.pdf','',2005,2,16,2453418,2005,5,24,2453515),(4723,'Absolute jet trigger efficiency using muon triggers','Mikko Voutilainen, Christophe Royon','','C. Royon','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4723/m_d0note_jeteff.ps','',2005,2,17,2453419,2005,2,21,2453423),(4724,'Mixing in $B^0_{s}-/bar{B^0_s}$ system using\r\nsemileptonic decay modes and opposite side flavor tagging',' B.~Abbott~(OU), G.~Borissov~(Lancaster), T.~Bose~(Columbia), S.~Burdin~(Fermilab), \r\nP.~Gutierrez~(OU), H.~Evans~(Columbia), V.~Jain~(BNL), A.~Nomerotski~(Fermilab), \r\nD.~Tsybychev~(Stony~Brook), K.~Yip~(BNL)','conference note','A.Nomerotski','','CONF','D0_PRIVATE','','$D0_PRI/4724/m_d0note4724.pdf','',2005,2,18,2453420,2005,3,28,2453458),(4725,'Top Mass Measurement in the Dilepton Channel','Sarosh N. Fatakia, Ulrich Heintz, Lars Sonnenschein','','Ulrich Heintz','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4725/m_4725.ps','',2005,2,18,2453420,2005,2,19,2453421),(4726,'Muon-Track Matching at Level-2, and its Effect on Trigger Turn-on.','Arthur Maciel','','Arthur Maciel','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4726/m_l2muTrkMatch_v1.0.pdf','',2005,2,18,2453420,2005,2,18,2453420),(4727,' Observation of B_s -> Ds1(2536) \\mu \\nu','Andrei Nomerotski(Fermilab), Jason Rieger(Indiana University)','','Jason Rieger','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4727/m_Ds1_conf.ps','',2005,2,20,2453422,2005,3,4,2453434),(4728,'Measurement of the Top Quark Mass in the Lepton+Jets Channel \r\nusing Dzero Run II Data: The Low Bias Template Method\r\n\r\nTo be presented at the 2005 winter conferences','K. M. Black, M. Narain, \r\nBoston University','To be presented at the 2005 winter conferences','Meenakshi Narain','TOP','CONF','D0_PRIVATE','OTHER','','',2005,2,21,2453423,NULL,NULL,NULL,NULL),(4729,'A high statistical measurement of the $B^{0}_{s}$ lifetime','Alberto Sanchez-Hernandez\r\nCINVESTAV - Mexico City','Preliminary Results for Winter 2005 Conferences','Alberto Sanchez-Hernandez','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','','',2005,2,21,2453423,NULL,NULL,NULL,NULL),(4730,'AFEII Upgrade Review Committee Report','Marcel Demarteau, Ken Johns, Henry Lubatti, Andrei Nomerotski, \r\nRick Van Kooten (chair), Graham Wilson\r\n','Internal D0 Report','Rick Van Kooten','DAQ_ELECTRONICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4730/m_afeii_review_report.pdf','',2005,2,21,2453423,2005,3,2,2453432),(4731,'Search for Flavor Changing Neutral Current Charm Decays and Observation of Ds+ to pi+ mu+ mu- ','Brendan Casey','','Brendan Casey','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/4731/m_pimumu_conf_bcasey_4731_v1-0.pdf','',2005,2,23,2453425,2005,3,9,2453439),(4732,'Sensitivity analysis for the rare decay Bs->mu mu phi with the D0 detector','Ralf Bernhard and Frank Lehner','','Frank Lehner','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4732/m_bsmumuphi_conf_4732.pdf','',2005,2,24,2453426,2005,4,27,2453488),(4733,'Update of the upper limit for the rare decay Bs->mumu with the D0 detector','Ralf Bernhard and Frank Lehner','','Frank Lehner','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4733/m_bsmumu_update_conf_4733.pdf','',2005,2,24,2453426,2005,4,27,2453488),(4734,'Mini-Drift Tube Performance Study For Run II\r\n','V.M. Abazov, G.D. Alexeev, A.M. Kalinin, E.V. Komissarov, V.L. Malyshev, G.A. Erusalimtsev, V.V.Tokmenin, \r\nA.A. Shishkin, D. Denisov, L. Stutte',' A study of Mini-Drift Tube (MDT) performance conducted at the beginning of Run II D0 operations is described.','Vladimir Malyshev','MUON','PUB','D0_PRIVATE','','$D0_PRI/4734/m_mdtpf.pdf','',2005,2,24,2453426,2005,4,17,2453478),(4735,'Content of the p17 Muon Thumbnail','Gavin Hesketh for the Muon ID Group','','Gavin Hesketh','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4735/m_mutmb_doc.ps','',2005,2,26,2453428,2005,3,1,2453431),(4736,'Studies of backgrounds in the forward muon data samples','D. Denisov, V. Evdokimov, A. Ferapontov','','Alexey Ferapontov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4736/m_4736.pdf','',2005,2,28,2453430,2005,2,28,2453430),(4737,'Search for Squarks and Gluino in the Jets + Missing ET Topology with the D0 Detector','L. Duflot, J.F. Grivaz, P. Verdier','Note for Winter 2005 conferences','Patrice Verdier','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4737/m_4737_sqgl_Moriond2005_v1.6.ps.gz','',2005,2,28,2453430,2005,4,25,2453486),(4738,'Search for associated production of Charginos and Neutralinos in final states with three leptons','M. Binder, U. Blumenschein, V. Buescher, R. Hauser, \r\nM. Hohlfeld, J. Linneman, R. Stroehmer, A. Yurkewicz','','Volker Buescher','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4738/m_trileptons_moriond05.pdf','',2005,3,1,2453431,2005,3,2,2453432),(4739,'MDT Octant Construction','D. Denisov and L. Stutte','','Linda Stutte','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4739/m_MDTConst.pdf','',2005,3,1,2453431,2005,3,9,2453439),(4740,'Search for the Associated Production of Chargino and Neutralino in Final States with Three Leptons involving Tau Leptons ','U. Blumenschein, M. Binder, V. Buescher, R. Hauser, M. Hohlfeld, J. Linnemann, R. Moore, C. Noeding, R. Stroehmer, I. Torchiani, A. Yurkewicz','','Ingo Torchiani','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4740/m_comb_trilepton_w_taus_4740.pdf','',2005,3,1,2453431,2005,3,7,2453437),(4741,'Search for the Associated Production of Charginos and Neutralinos in the e + tau + lep Final State','Carsten Noeding','','Ingo Torchiani','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4741/m_trilepton_etau_CONF_4741.pdf','',2005,3,1,2453431,2005,3,18,2453448),(4742,'Search for the Associated Production of Charginos and Neutralinos in the muon + tau + lep Final State','Ingo Torchiani','','Ingo Torchiani','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4742/m_ingo_mutau_trilepton_4742.pdf','',2005,3,1,2453431,2005,3,7,2453437),(4743,'Search for The Associated Production of Charginos and Neutralinos in the muon+tau+lep Final State','Ingo Torchiani','','Ingo Torchiani','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4743/m_ingo_mutau_trilepton_4743.pdf','',2005,3,2,2453432,2005,3,7,2453437),(4744,'A Search for SM Higgs boson using the ZH -> nu nu b bbar channel in ppbar Collisions at sqrt(s) = 1.96 TeV','Makoto Tomoto','','Makoto Tomoto','','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4744/m_note_4744.pdf','',2005,3,2,2453432,2005,4,20,2453481),(4745,'Search for Large Extra Dimensions in the Dielectron and Diphoton Channels with 275 pb^-1 of Run II Data','Greg Landsberg','','Greg Landsberg','NEW','PHYS','D0_PRIVATE','OTHER','','',2005,3,2,2453432,NULL,NULL,NULL,NULL),(4746,'A Search for Charged Massive Stable Particles at D0','M. Eads, D. Hedin','','M. Eads','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/4746/m_d0note4746_cmsp_note_conf_v1.5.pdf','',2005,3,3,2453433,2005,3,3,2453433),(4747,'A Search for Charged Massive Stable Particles at D0','M.Eads, D. Hedin','','M. Eads','NEW','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4747/m_d0note4747_cmsp_note_analysis_v1.7.pdf','',2005,3,3,2453433,2005,3,3,2453433),(4748,'Search for Randall-Sundrum Gravitons in the Dielectron and Diphoton Channels with 275 pb^-1 of Run II Data','Greg Landsberg and Emmanuelle Perez','','Greg Landsberg','NEW','PHYS','D0_PRIVATE','OTHER','','',2005,3,3,2453433,NULL,NULL,NULL,NULL),(4749,'Measurement of \\sigma(ppbar->WX) ? Br(W->\\mu\\nu) at sqrt(s) = 1.96 TeV ','F Deliot, G Hesketh, P Telford, B Tuchming','','Paul Telford','WZ','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4749/m_Wmunu_tn351.pdf','',2005,3,4,2453434,2005,5,5,2453496),(4750,'Measurement of \\sigma(ppbar->WX) ? Br(W->\\mu\\nu) at sqrt(s) = 1.96 TeV (conf note)','F Deliot, G Hesketh, P Telford, B Tuchming','','Paul Telford','WZ','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4750/m_wmunu_conf_4750.pdf','',2005,3,4,2453434,2005,5,17,2453508),(4751,'Measurement of the Inclusive Jet Cross Section \r\nin p\\bar(p) Collisions at sqrt(s)=1.96 TeV','Alexander Kupco, Christophe Royon, Mikko Voutilainen, \r\nMarkus Wobisch\r\n','An updated preliminary measurement of the inclusive jet cross section is presented, based on a data sample corresponding to an integrated luminosity of 378pb-1','Markus Wobisch','QCD','CONF','D0_PRIVATE','OTHER','$D0_PRI/4751/m_jetincl_4751.pdf','',2005,3,4,2453434,2006,3,9,2453804),(4752,'Same side tagging for use in B physics analysis','Avdhesh Chandra, James Fast','This note describes the Same Side Tagging (SST)algorithm \r\ndeveloped for use in studies of CP asymmetry in B decays.','Avdhesh Chandra','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4752/m_SST.ps','',2005,3,6,2453436,2005,3,7,2453437),(4753,'Beam Width Measurement at D0','Avdhesh Chandra, Juan Estrada','Beam Width Measurement at D0','Avdhesh Chandra','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','','',2005,3,7,2453437,NULL,NULL,NULL,NULL),(4754,'High Pt Cross Section for mu-tagged Jets at sqrt(s) = 1960 GeV','Don Lincoln, Markus Wobisch, Neal Cason, Yevgeny Galyaev, Hong Luo','','Don Lincoln','QCD','CONF','D0_PRIVATE','POSTSCRIPT','','',2005,3,7,2453437,NULL,NULL,NULL,NULL),(4755,'Beam Position Monitoring in Real Time','Michiel Sanders','Description of beam position monitoring in the control room,\r\nduring data taking.','Michiel Sanders','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4755/m_beamspotmonitor_d0note_4755.pdf','',2005,3,9,2453439,2005,8,20,2453603),(4756,'The L2-Muon Trigger, Methods and Algorithms','Arthur Maciel, Sergey Uzunyan, Christos Leonidopoulos, Jim Kowalkowski','','Arthur Maciel','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4756/m_l2muNote4756_v1.0.pdf','',2005,3,9,2453439,2005,3,9,2453439),(4757,'Measurement of the Drell-Yan Differential Cross Section and Forward-Backward Asymmetry in $p \\bar{p} \\rightarrow e^+ e^-$ Events at $\\sqrt{s} = 1.96$~TeV using the \\d0\\ Detector\r\n','John Ellison, Raymond Gelhaus, and Ia Iashvili','Preliminary result for Winter 2005 Conferences.','John Ellison','WZ','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4757/m_4757.pdf','',2005,3,10,2453440,2005,5,16,2453507),(4758,'Radiation background studies during Tevatron shot setup period','D.Denisov, V.Evdokimov, V.Malyshev','Studies of correlations of beam losses with pixel and MDT VME crates power supplies failures.','Vladimir Malyshev','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4758/m_Tevbackgr.pdf','',2005,3,13,2453443,2005,5,3,2453494),(4759,'Search for the Higgs boson in H->WW->l nu l nu (l=e,mu) decays at D0 in Run II','Johannes Elmsheuser, Marc Hohlfeld','','Johannes Elmsheuser','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4759/m_note4759_v22.pdf','',2005,3,14,2453444,2006,2,15,2453782),(4760,'Search for the Higgs boson in H->WW->l nu l nu (l=e,mu) decays at D0 in Run II','Johannes Elmsheuser, Marc Hohlfeld','','Johannes Elmsheuser','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4760/m_note4760_hww.pdf','',2005,3,14,2453444,2005,6,10,2453532),(4761,'A Study of Highly Displaced, Detached Vertices with Kshort\'s Using D0Root','Todd Adams','','Todd Adams','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4761/m_4761_ksstudy_v1.pdf','',2005,3,14,2453444,2005,3,14,2453444),(4762,'Jet Energy Scale v6.0 for PASS2 Data','Jochen Cammin, Subhendu Chakrabarti, Yann Coadou, \r\nDag Gillberg, Kazu Hanagaki, Jeroen Hegeman, \r\nAlexander Kupco, Vivian O\'Dell, Dugan O\'Neil,\r\nNirmalya Parua, Jyothsna Rani, Christophe Royon,\r\n Mikko Voutilainen','We present measurement of Jet Energy Scale v6.0 for PASS2 data','Nirmalya Parua','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','','',2005,3,15,2453445,NULL,NULL,NULL,NULL),(4763,'L2 Trigger - Connections and Wiring','Miroslav Kopal, Reinhard Schwienhorst','','Reinhard Schwienhorst','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4763/m_L2Connections_4763.pdf','',2005,3,17,2453447,2005,3,29,2453459),(4764,'Search for the Associated Production of Charginos and Neutralinos in the e + tau + lep Final State','Carsten Noeding','Preliminary results for Winter 2005 conferences.','Carsten Noeding','NEW','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4764/m_trilepton_etau_4764.pdf','',2005,3,18,2453448,2005,3,18,2453448),(4765,'B physics at the D0 experiment at Fermilab','Vivek Jain','To appear in Modern Physics Letters A','Vivek Jain','B_PHYSICS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4765/m_Review_D0_Bphysics_v2.ps','',2005,3,19,2453449,2005,3,19,2453449),(4766,'D0 Central Fiber Tracker 1024 Channel VLPC Cassette Technical Design Report, Specifications and Fabrication Procedures','E. Haggard, A. Bross, V. Buescher, G. Davis, J. Estrada, T. Gasteyer, G. Ginther, K. Gray, S. Gruenendahl, C. Lindemeyer, M. Matulik, D. Olis, R. Rucinski, D. E. Smith','','G. Ginther','FIBER_TRACKER','DOC','D0_PRIVATE','POSTSCRIPT','','',2005,3,22,2453452,NULL,NULL,NULL,NULL),(4767,'A Novel Reconstruction Technique for Bs -> J/psi eta\'','Andre S. Turcot','Internal Use only','Andre Turcot','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4767/m_d0_note_4767.ps','',2005,3,23,2453453,2005,3,31,2453461),(4768,'Cable Labelling for the Run IIb L1 Calorimeter Trigger','Peter Renkel, Alan Stone, Rahmi Unalan','','Alan Stone','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4768/m_D0Note4768_L1CalRunIIb_labelling.ps','',2005,3,24,2453454,2005,11,30,2453705),(4769,'Electron Likelihood Study','Ashish Kumar, Brajesh Choudhary, Joseph Kozminski, Robert Kehoe, Jon Hays, Jan Stark','','Ashish Kumar','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4769/m_lhood_4769.pdf','',2005,3,30,2453460,2005,7,7,2453559),(4770,'A Strangely Beautiful Future:\r\nReflection on the D0 B physics Program','Andre Turcot','','Andre Turcot','B_PHYSICS','','D0_PRIVATE','','$D0_PRI/4770/m_d0_note_4770.ps','',2005,3,31,2453461,2005,5,6,2453497),(4771,'Long Term Forward Muon System Stability','D.Denisov, S.Efremov,A.Ferapontov','','Alexey Ferapontov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4771/m_4771.pdf','',2005,3,31,2453461,2005,4,5,2453466),(4772,'User\'s manual of the B_exclusive software package','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4772/m_USER_MANUAL_B_exclusive_4772.pdf','',2005,4,6,2453467,2005,4,7,2453468),(4773,'Tau identification with Neural Networks for p14 pass 2 data','M. Arov, C. Biscarat, D. Chakraborty, C. Galea, A. Gay, Y. Hu, \r\nY. Gerstein, A-C. Le Bihan, S. Nelson, C. Noeding, A. Patwa, \r\nY. Pogorelov, S. Protopopescu','','Serban Protopopescu','ALGORITHMS','DOC','D0_PRIVATE','','$D0_PRI/4773/m_tauid_pass2_d0note4773.pdf','',2005,4,8,2453469,2005,4,11,2453472),(4774,'A Search for SM Higgs boson using the ZH -> nu nu bbbar channel in ppbar collisions at sqrt(s)=1.96 GeV','D0 Collaboration','','Makoto Tomoto','','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4774/m_d0conf_4774.pdf','',2005,4,11,2453472,2005,4,20,2453481),(4775,'Jet Pt Resolution with jetcorr 5.3 ','M. Agelou, J.L. Agram, C. Royon','','Royon','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4775/m_resolution.ps','',2005,4,12,2453473,2005,5,4,2453495),(4776,'Obtention of the \\zll\\ Cross Section from a Measurement of the \\zgll\\ Cross section using the Drell Yan correction','Telford','','Telford','WZ','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4776/m_4776_drellyan.pdf','',2005,4,13,2453474,2005,4,13,2453474),(4777,'DFE Low Voltage Power Supplies','Jamieson Olsen','','Jamieson Olsen','DAQ_ELECTRONICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4777/m_dfe_lvps_4777.pdf','',2005,4,15,2453476,2005,4,15,2453476),(4778,'Electrical Properties of Carbon Fiber Support Systems','W. Cooper, C. Daly, M. Demarteau, J. Fast, K. Hanagaki, M. Johnson, W. Kuykendall, H. Lubatti, M. Matulik, A. Nomerotski, B. Quinn, J. Wang','','Marcel Demarteau','SILICON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4778/m_4778.pdf','',2005,4,16,2453477,2005,4,18,2453479),(4779,'','','','2169','','','D0_PRIVATE','','','',2005,4,17,2453478,NULL,NULL,NULL,NULL),(4780,'','','','002169','','','D0_PRIVATE','','','',2005,4,17,2453478,NULL,NULL,NULL,NULL),(4781,'','','','note number 2169','','','D0_PRIVATE','','','',2005,4,17,2453478,NULL,NULL,NULL,NULL),(4782,'The Program Package em_cert: \r\nVersion v00-01-35','J. Hays, J. Mitrevski, C. Schwanenberger','','Christian Schwanenberger','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4782/m_emid-cert-docu-4782.pdf','',2005,4,17,2453478,2005,6,1,2453523),(4783,'Electron Certification in p14','M. Gagliardi, J. Hays, J. Mitrevski, C. Schwanenberger, T. Toole','','Christian Schwanenberger','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2005,4,17,2453478,NULL,NULL,NULL,NULL),(4784,'The STSX and STOV Firmware Design','Thei Wijnen','','Jamieson Olsen','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4784/m_stov_stsx_4784.pdf','',2005,4,20,2453481,2005,4,20,2453481),(4785,'CTOC Technical Design Report','','','Jamieson Olsen','TRIGGER','DOC','D0_PRIVATE','','$D0_PRI/4785/m_ctoc_4785.pdf','',2005,4,20,2453481,2005,4,20,2453481),(4786,'CTTT Technical Design Report','Jamieson Olsen','','Jamieson Olsen','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4786/m_cttt_4786.pdf','',2005,4,20,2453481,2005,4,20,2453481),(4787,'The CTQD Board','Steve Linn','','Jamieson Olsen','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4787/m_ctqd_4787.pdf','',2005,4,20,2453481,2005,4,20,2453481),(4788,'DFEF Technical Design Report','Jamieson Olsen','','Jamieson Olsen','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4788/m_dfef_4788.pdf','',2005,4,20,2453481,2005,4,20,2453481),(4789,'FPSS Technical Design Report','Jamieson Olsen','','Jamieson Olsen','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4789/m_fpss_4789.pdf','',2005,4,20,2453481,2005,4,20,2453481),(4790,'FPTT Technical Design Report','Jamieson Olsen, Steve Linn','','Jamieson Olsen','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4790/m_fptt_4790.pdf','',2005,4,20,2453481,2005,4,20,2453481),(4791,'DFE Transiton Board Technical Design Report','Jamieson Olsen','','Jamieson Olsen','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4791/m_dfet_4791.pdf','',2005,4,20,2453481,2005,4,20,2453481),(4792,'Building of A-Layer Hole Scintillation Counter for the D0 Detector?','J. M. Kohli','','J.M. Kohli','','','D0_PRIVATE','','','',2005,4,21,2453482,NULL,NULL,NULL,NULL),(4793,'','J.M. Kohli','','J.M. Kohli','','','D0_PRIVATE','','','',2005,4,21,2453482,NULL,NULL,NULL,NULL),(4794,'Measurement of the Ratio of the Z/Gamma*(ee) + >=n Jet Production Cross Section to the Total Inclusive Z/Gamma*(ee) Cross Section in ppbar Collisions at sqrt(s) = 1.96 TeV','D0 Collaboration','','Marc Buehler','','CONF','D0_PRIVATE','OTHER','$D0_PRI/4794/m_zjets_4794.pdf','',2005,4,21,2453482,2005,7,15,2453567),(4795,'Measurement of the Z/Gamma*(ee) + >=n Jets Production Cross Section at sqrt(s) = 1.96 TeV with the D0 Detector at the Tevatron','Marc Buehler, James Heinmiller, Alan Stone, Nikos Varelas','','Marc Buehler','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4795/m_ZeeJets_v4.13.pdf','',2005,4,21,2453482,2007,10,25,2454399),(4796,'Update on $b$-quark jet identification with Secondary Vertex reconstruction using p14-Pass2 Samples','D. Boline, L. Feligioni, M.Narain\r\nBoston University','','Narain','ALGORITHMS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4796/m_4796_vertex_p14p2.pdf','',2005,4,23,2453484,2006,3,7,2453802),(4797,'Measurement of the ttbar to all-jets cross section on 162.5 pb-1 of Run 2 data, using (simplified) neural networks and secondary vertex tagging.','Freya Blekman','This note contains the analysis chapters of the Ph.D. thesis of Freya Blekman. For a copy of the thesis please visit SPIRES or the D0 theses page','Freya Blekman','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4797/m_d0note4797_ttbar_alljets_crosssec_thesis_fblekman.pdf','',2005,4,25,2453486,2005,4,25,2453486),(4798,'A report concerning the impact of the current level 3 trigger rate limitation of 50 Hz on the top quark physics program','Leonard Christofek and Miroslav Kopal','','Leonard Christofek','TRIGGER','PHYS','D0_PRIVATE','POSTSCRIPT','','',2005,4,28,2453489,NULL,NULL,NULL,NULL),(4799,'Modification in Silicon Microstrip Tracker Geometry in D0gstar','Piyali Banerjee, Sudeshna Banerjee','Details of modification of SMT geometry and resulting effects','Sudeshna Banerjee','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/4799/m_4799_smtgeom.pdf','',2005,4,28,2453489,2005,4,28,2453489),(4800,'Fast b-identification algorithms for the L2 Silicon Track Trigger','Sascha Caron','','Sascha Caron','TRIGGER','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4800/m_note_4800.ps','',2005,4,29,2453490,2005,7,12,2453564),(4801,'Influence of solenoid current variations on the magnetic field of the Run II D0 Detector','D. Denisov, V. Korablev, R.P. Smith','','V. Korablev','FIBER_TRACKER','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4801/m_4801.pdf','',2005,4,29,2453490,2005,4,29,2453490),(4802,'Top Mass Measurement with b-tagging and Jet Energy Scale Fit in the Lepton+Jets Channel using the Ideogram Method','Martijn Mulders, Michele Weber','','Martijn Mulders','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4802/m_TopIdeogram_winter06_4802.pdf','',2005,5,2,2453493,2006,2,6,2453773),(4803,'Describing the D0 Solenoid in D0GEANT','R. P. Smith','','R. P. Smith','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/4803/m_4803_Solenoid_in_D0GEANT.pdf','',2005,5,2,2453493,2005,5,2,2453493),(4804,'Present Status of the D0 Solenoid','Russ Rusincski, Richard P. Smith','','R.P. Smith','','DOC','D0_PRIVATE','OTHER','$D0_PRI/4804/m_Solenoid_Status_4804.pdf','',2005,5,2,2453493,2005,5,2,2453493),(4805,'Search for Direct Production of Scalar Bottom Quark','Arnaud Duperrin, Eric Kajfasz','Analysis Note','Arnaud Duperrin','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4805/m_Sbottom_Analys_4805.ps','',2005,5,4,2453495,2005,9,22,2453636),(4806,'Search for the Associated Chargino-Neutralino Production in the Final States with Two Muons and Additional Lepton','Meta Binder, Raimund Strohmer','','Meta Binder','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4806/m_d0note_4806_trilepton_mumu.pdf','',2005,5,6,2453497,2005,5,6,2453497),(4807,'The Relative Data - Monte Carlo Jet Energy Scale','Nikola Makovec and Jean-Francois Grivaz','','J.-F. Grivaz','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4807/m_jes.ps','',2005,5,6,2453497,2005,6,18,2453540),(4808,'','','','4453','','','D0_PRIVATE','','','',2005,5,9,2453500,NULL,NULL,NULL,NULL),(4809,'','','','4453','','','D0_PRIVATE','','','',2005,5,9,2453500,NULL,NULL,NULL,NULL),(4810,'Lifetime Difference and Polarization Amplitudes in the Decay\r\nBs->J/psi phi','A. Chandra, K. Yip, D. Zieminska','','daria','B_PHYSICS','','D0_PRIVATE','POSTSCRIPT','/RunII/home/daria/m_4810_dgamma.ps','',2005,5,9,2453500,2006,2,14,2453781),(4811,'Measurement of the W Boson Helicity in Dilepton Top Quark Decays ','Erich Varnes','','Erich Varnes','TOP','DOC','D0_PRIVATE','POSTSCRIPT','','',2005,5,9,2453500,NULL,NULL,NULL,NULL),(4812,'A report summary concerning the impact of the current level 3 trigger rate limitation of 50 Hz on the top quark physics program at DZero.','Len Christofek, Miroslav Kopal','','Miroslav Kopal','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4812/m_topTrigSum50Hz_4812.pdf','',2005,5,14,2453505,2005,5,14,2453505),(4813,'L2 trigger configuration and TCC2.','Miroslav Kopal, Reinhard Schwienhorst','This document describes the communication between L2 crates\r\nand L2 trigger control computer (TCC2) and L2 configuration\r\nfiles with the trigger framework.','Miroslav Kopal','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4813/m_L2tcc2_4813.pdf','',2005,5,15,2453506,2005,8,5,2453588),(4814,'Search for Second Generation Leptoquark in the Dimuon Channel','Xiaofei Song, Pushpalatha Bhat, Thomas Nunnemann','','Xiaofei Song','NEW','PHYS','D0_PRIVATE','','$D0_PRI/4814/m_lq2note_20050515.pdf','',2005,5,16,2453507,2005,5,16,2453507),(4815,'A Search for Excited Muons at sqrt s = 1.96 TeV','Jan. W. Coenen, Thomas Hebbeker, Arnd Meyer','','Thomas Hebbeker','NEW','PUB','D0_PRIVATE','OTHER','$D0_PRI/4815/m_d0note4815.pdf','',2005,5,16,2453507,2005,12,19,2453724),(4816,'Exclusive B hadron MC Samples','Iain Bertram','','Iain Bertram','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4816/m_D0Note4816_vers10.pdf','',2005,5,16,2453507,2005,5,18,2453509),(4817,'A Likelihood-Based Opposite Side Flavor Tagger','D. Krop, B. Casey','','Dan Krop','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4817/m_FlavTagPDF_4817.pdf','',2005,5,16,2453507,2005,5,16,2453507),(4818,'Determination of the Muon Transfer Function for Top Mass Measurements','Petra Haefner, Frank Fiedler','','Petra Haefner','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4818/m_4818_muon_tf.pdf','',2005,5,17,2453508,2005,6,9,2453531),(4819,'Observation of the Decay $B_s^0 \\rightarrow \\psi(2S)\\,\\phi$ and a Measurement of ${\\cal B}(B_s^0 \\rightarrow \\psi(2S)\\,\\phi)/{\\cal B}(B_s^0 \\rightarrow J/\\psi\\,\\phi )$ \r\n with the D\\O~detector.','Ralf Bernhard and Frank Lehner','','Ralf Bernhard','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4819/m_bs_psiphi_v1.3_4819.pdf','',2005,5,20,2453511,2006,2,15,2453782),(4820,'Study of Charmonium Production in Coincidence with Forward Rapidity Gaps in $p \\bar{p}$ Collisions at $\\sqrt{s} = 1.96$ TeV. ','Ana Carolina Assis Jesus\r\nBrendan Casey ','','Ana Carolina Assis Jesus','QCD','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4820/m_ana_note_4820.pdf','',2005,5,20,2453511,2005,7,5,2453557),(4821,'The Effect of Pulse Height on Timing in the Muon Scintillators','M. Eads','','M. Eads','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4821/m_d0note4821_pulseheight_v1.0.pdf','',2005,5,24,2453515,2005,5,31,2453522),(4822,'Bd mixing using opposite side electron tagging','Tania Moulik','','Tania Moulik','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4822/m_set_mix4822.ps','',2005,5,24,2453515,2005,6,16,2453538),(4823,'Simultaneous measurement of B(t->Wb)/B(t->Wq) and \r\nsigma(ppbar -> ttbar) x B(t->Wq)^2','Christophe Clement, \r\nAurelio Juste,\r\nFlera Rizatdinova,\r\nJonas Strandberg','To be submitted to PRL.\r\n\r\nThe version 0.3 of the note corresponds to the analysis\r\napproved for the Lepton Photon 2005 conference.\r\n\r\nLater version contains additional cross checks for publication.','C. Clement','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4823/m_note4823_v0.3.ps','',2005,5,24,2453515,2005,9,17,2453631),(4824,'Update of the JLIP b-tagger Performance in p14/pass2 with JES 5.3','Daniel Bloch, Benoit Clement (IReS IN2P3/CNRS Strasbourg, France)','','bloch','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4824/m_JLIP_p14pass2.ps','',2005,5,26,2453517,2005,7,11,2453563),(4825,'Search for Single Top Quark Production using Likelihood Discriminants ','Benoit Clement, Denis Gele','','Benoit Clement','TOP','PHYS','D0_PRIVATE','','$D0_PRI/4825/m_d0note4825_v1_2.pdf','',2005,5,26,2453517,2005,7,20,2453572),(4826,'Charged Higgs Results from Tevatron','Sudeshna Banerjee','Doubly Charged Higgs results presented at ICHEP04 in Beijing in August, 2004. To be published in the proceesings.','Sudeshna Banerjee','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/4826/m_4826_dchiggs_ichep04.pdf','',2005,5,27,2453518,2005,5,27,2453518),(4827,'Measurement of the ttbar Production Cross Section at sqrt(s)=1.96 TeV in ee and mumu Final States Using 370pb-1 of \r\nPass 2 Data ','S. Anderson, S. Burke., B. Choudhary, C. Clement, R. Kehoe,\r\nJ. Kozminski, A. Kumar, J. Leveque, K. Ranjan, E. Shabalina','for summer conferences 2005','C. Clement','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4827/m_4827.ps','',2005,5,28,2453519,2005,7,3,2453555),(4828,'Bd mixing measurement using semileptonic sample and combined opposite-side tagging technique','G. Borissov, S. Burdin, R. Jesik, D. Krop, Ph. Lewis, \r\nT. Moulik, Md. Naimuddin, A. Nomerotski, D. Tsybychev','','Sergey Burdin','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4828/m_note4828v1_0.ps','',2005,5,31,2453522,2005,7,16,2453568),(4829,'Search for Pair-production of Second-Generation Leptoquarks in ppbar Collisions with the D0 Run II Detector','Tim Christiansen, Raimund Strohmer','','Tim Christiansen','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4829/m_LQ2pairs_note4829.pdf','',2005,6,1,2453523,2005,6,17,2453539),(4830,'A ttbar cross section measurement in the all-jets channel','Freya Blekman','analysis information for the 2005 summer conferences','Freya Blekman','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4830/m_d0note_4830_ttbar_to_alljets_cross_section_on_350pb.pdf','',2005,6,1,2453523,2007,10,8,2454382),(4831,'Combined ttbar Production Cross Section at sqrt{s}=1.96 TeV\r\nin the Lepton+Jets and Dilepton Final States using Event Topology\r\n','Supplement to D0 notes 4662, 4667, 4683\r\nE. Shabalina','','E. Shabalina','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4831/m_comboxs_4831.pdf','',2005,6,1,2453523,2005,6,1,2453523),(4832,'Search for Direct Production of Scalar Bottom Quark','Arnaud Duperrin, Eric Kajfasz','','Arnaud Duperrin (duperrin@cppm.in2p3.fr)','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4832/m_sbottom_d0conf.ps','',2005,6,2,2453524,2005,6,29,2453551),(4833,'Simultaneous measurement of B(t->Wb)/B(t->Wq) and \r\nsigma(ppbar -> ttbar)','Christophe Clement, \r\nAurelio Juste,\r\nFlera Rizatdinova,\r\nJonas Strandberg','','Christophe Clement','TOP','CONF','PUBLIC','POSTSCRIPT','$D0_PRI/4833/m_btwb_4833.ps','',2005,6,6,2453528,2005,6,20,2453542),(4834,'Boosting: Or How to Make a Silk Purse Out of a Sow\'s Ear','Harrison B. Prosper','','Harrison B. Prosper','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4834/m_d0note4834boosting.pdf','',2005,6,7,2453529,2005,6,24,2453546),(4835,'Study of Charmonium Production in Coincidence with Forward\r\n Rapidity Gaps in p pbar Collisions at sqrt{s} = 1.96 TeV ','Ana Carolina Assis Jesus, Brendan Casey','','Brendan Casey','QCD','CONF','D0_PRIVATE','OTHER','$D0_PRI/4835/m_jpsi_gap_4835_conf_v1-0.pdf','',2005,6,8,2453530,2005,7,5,2453557),(4836,'resonant\r\n','','','petroff','','','D0_PRIVATE','','','',2005,6,9,2453531,NULL,NULL,NULL,NULL),(4837,'Jet Reconstruction Efficiency','James Heinmiller, Nikos Varelas','','James Heinmiller','NEW','DOC','D0_PRIVATE','POSTSCRIPT','','',2005,6,9,2453531,NULL,NULL,NULL,NULL),(4838,'Update on p14 Certification for the CSIP and SVT b-quark Jet Identification Algorithms','L. Feligioni, K. Hanagaki, A. Khanov, M. Narain,\r\nF. Rizatdinova, A. Schwartzman, J. Strandberg','','Meenakshi Narain','ALGORITHMS','DOC','D0_PRIVATE','OTHER','','',2005,6,9,2453531,NULL,NULL,NULL,NULL),(4839,'Measurement of the W Boson Helicity Using Dilepton Top Quark Pair Candidates','Erich W. Varnes','','Erich Varnes','TOP','CONF','D0_PRIVATE','POSTSCRIPT','','',2005,6,13,2453535,NULL,NULL,NULL,NULL),(4840,'Measurement of the Top Quark Mass in Dilepton Events Using Neutrino Constraints','Stefan Anderson, Bob Kehoe, Joe Kozminski, Joerg Meyer, Peter Renkel, Arnulf Quadt, Christian Schwanenberger, Jeff Temple','','Peter Renkel','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4840/m_llmtop.pdf','',2005,6,14,2453536,2005,7,1,2453553),(4841,'A Search for RPV SUSY via the LLE Coupling lambda_122 in the mumul (l=e,mu) Channel','Daniela K?fer, Arnd Meyer','','kaefer','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4841/m_mml_l122rpv_anal4841_18dec2005-v4.pdf','',2005,6,16,2453538,2006,1,4,2453740),(4842,'Bs mixing in semileptonic Bs decays using Ds to Phi Pi decay mode ','B.Abbott, C.Ay, D.Bauer, S.Beale, I.Bertram, G.Borissov, T.Bose, S.Burdin, H.Evans, R.Jesik, M.Kopal, D.Krop, T.Moulik, Md Naimuddin, A.Nomerotski, Ph.Lewis, J.Rieger, W. Taylor, D.Tsybychev, L. Welty','','Sergey Burdin','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4842/m_bsmixphipi_d0note4842v4_1.pdf','',2005,6,16,2453538,2005,8,16,2453599),(4843,'Top Charge measurement using Jet Charge Template','Per Hansson, Christophe Clement, David Milstead','','Per Hansson','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4843/m_topcharge_4843.pdf','',2005,6,16,2453538,2007,8,29,2454342),(4844,'Combining Prescaled Triggers','Axel Naumann, Frank Filthaut','We describe a general prescription for the combination of (prescaled) triggers in analysis, along with some technical limitations.','Frank Filthaut','TRIGGER','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4844/m_trigcomb.ps','',2005,6,16,2453538,2005,6,22,2453544),(4845,'Bench Test of First TRIP-t Prototype ','Leo Bellantoni, Paul Rubinov','','L. Bellantoni','FIBER_TRACKER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4845/m_TRIP-t_Report.pdf','',2005,6,16,2453538,2005,6,16,2453538),(4846,'Bayesian Neural Networks','Suman B. Beri, Rajwant Kaur, Harrison B. Prosper ','','Harrison B. Prosper','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4846/m_d0note4846bayesnet.pdf','',2005,6,16,2453538,2005,6,16,2453538),(4847,'Turnon curves for the various ttbar to all-jets triggers, as measured in multijet events in the pass-2 dataset','Freya Blekman','This note contains the turnon curves that are needed as input for the calculation of trigger efficiencies using the top_trigger package','Freya Blekman','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4847/m_d0note4847_alljets_triggers_for_pass2.pdf','',2005,6,16,2453538,2005,6,21,2453543),(4848,'B Flavor tagging with opposite-side soft electrons','Md. Naimuddin, Brajesh Choudhary, Tania Moulik, Brad Abbott, Vivek Jain','','Tania Moulik','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4848/m_set_conf.ps','',2005,6,16,2453538,2005,6,16,2453538),(4849,'Study of Trilepton Triggers','Md Naimuddin, Brajesh Choudhary, Jan Stark','','Md Naimuddin','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','','',2005,6,18,2453540,NULL,NULL,NULL,NULL),(4850,'Measurement of the ttbar Production Cross Section at sqrt(s)=1.96 TeV in Dilepton Final States with 370pb-1','S. Anderson, M. Besancon, S. Burke., B. Choudhary, C. Clement, F. Deliot, R. Kehoe, J. Kozminski, A. Kumar, J. Leveque, K. Ranjan, E. Shabalina, Slava Sharyy','summer 2005 conference note','Christophe Clement','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4850/m_4850.ps','',2005,6,19,2453541,2005,7,3,2453555),(4851,'Search of the lightest scalar top stop1 in stop1 stop1-bar ---> b b-bar 2 muons 2 sneutrinos decays at Dzero','Pedrame Bargassa','','Pedrame Bargassa','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4851/m_4851_st1-2m2j_ana-052004.ps','',2005,6,20,2453542,2005,7,15,2453567),(4852,'The Search for Single Top Quark Production\r\nin the Muon plus Jets Channel at D-Zero','Leonard Christofek','DPF 2004 Proceedings','Leonard Christofek','TOP','CONF','PUBLIC','OTHER','$D0_PRI/4852/m_christofek_dpf2004_proceed.pdf','',2005,6,21,2453543,2005,6,21,2453543),(4853,'Re-Thinking the Likelihood and Prior in Single Top Analyses','Harrison B. Prosper, Supriya Jain, Reinhard Schwienhorst and\r\nBrigitte Vachon','This note summarizes discussions between Brigitte Vachon, Supriya Jain,\r\nReinhard Schwienhorst and Harrison Prosper\r\nabout how the single top likelihood and\r\nprior could be improved.','Supriya Jain, Harrison Prosper','TOP','','D0_PRIVATE','','$D0_PRI/4853/m_D0Note4853_RethinkPrior.pdf','',2005,6,21,2453543,2005,6,21,2453543),(4854,'Non SUSY searches at the Tevatron','Laurent Duflot','proceedings of the XXXXth Rencontres de Moriond \"QCD and high energy hadronic interactions\"','duflot','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2005,6,22,2453544,NULL,NULL,NULL,NULL),(4855,'The W Boson Production Charge Asymmetry in the Muon Channel at \\sqrt{s} = 1.96 TeV.','Sinjini Sengupta and Susan Blessing','The publication probably contains small differences in the uncertainty calculation and (maybe) in the Z background. Both effects are negligible for the final result.','Sinjini Sengupta','WZ','ANAL','D0_PRIVATE','PDF','$D0_PRI/4855/m_Wasym_mu_run2a.pdf','',2005,6,22,2453544,2008,4,28,2454585),(4856,'A Combination of CDF and D0 Limits on the Branching Ratio of Bs->mu+mu- Decays','R. Bernhard, V. Buescher, D. Glenzinski, M. Herndon, T. Kamon, V. Krutelyov, G. Landsberg, F. Lehner, C.-J. Lin, S. Mrenna','','Frank Lehner','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4856/m_bs_mumu_comb_4856.pdf','',2005,6,23,2453545,2006,2,15,2453782),(4857,'D0 Run 2 Luminosity Monitor Vertex Board Specifications','Brendan Casey, Chyi Miao, Richard Partridge','','Brendan Casey','','DOC','D0_PRIVATE','OTHER','$D0_PRI/4857/m_VTX_specs_V109.pdf','',2005,6,23,2453545,2005,6,23,2453545),(4858,'Electroweak and QCD Results from DO','Michael Eads','Conference Proceedings for 2005 Lake Louise Winter Institute','Michael Eads','WZ','CONF','D0_PRIVATE','OTHER','$D0_PRI/4858/m_d0note4858_dzero_ew_qcd.pdf','',2005,6,23,2453545,2005,6,23,2453545),(4859,'The Isolated Photon Cross Section \r\nin the Central Rapidity Region at 1.96 TeV','Dmitry Bandurin','Conference note','Dmitry Bandurin','QCD','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4859/m_photon_conf.pdf','',2005,6,23,2453545,2005,6,23,2453545),(4860,'A Search for the Associated Higgs Boson Production\r\nppbar -> WH -> WWW* -> l+-nu l\'+-nu qqbar at sqrt(s)=1.96 TeV','Alexander Khanov','','Alexander Khanov','','PHYS','D0_PRIVATE','','$D0_PRI/4860/m_note4860.pdf','',2005,6,26,2453548,2005,7,12,2453564),(4861,'A Search for the Associated Higgs Boson Production\r\nppbar -> WH -> WWW* -> l+-nu l\'+-nu qqbar at sqrt(s)=1.96 TeV','Alexander Khanov','for summer 2005 conferences','Alexander Khanov','','CONF','D0_PRIVATE','','$D0_PRI/4861/m_note4861.pdf','',2005,6,26,2453548,2005,7,6,2453558),(4862,'Search for the Rare Decay Bs->mu+ mu- phi with the D0 Detector','Ralf Bernhard and Frank Lehner','','Frank Lehner','B_PHYSICS','CONF','D0_PRIVATE','','$D0_PRI/4862/m_bsmumuphi_4862-conf_v1.4.pdf','',2005,6,27,2453549,2006,3,10,2453805),(4863,'A search for B_s oscillations at D0 using B_s->D_s mu X (D_s->K*K)','B.Abbott, C.Ay, D.Bauer, S.Beale, I.Bertram, G.Borissov, T.Bose, S.Burdin, H.Evans, R.Jesik, M.Kopal, D.Krop, T.Moulik, Md Naimuddin, A.Nomerotski, Ph.Lewis, J.Rieger, D.Tsybychev','','Tulika Bose','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4863/m_4863_Dsmu_kstark_v3.1.ps','',2005,6,27,2453549,2005,9,8,2453622),(4864,'Combination of CDF and D0 Results on the Top-Quark Mass','The CDF Collaboration, the D-Zero Collaboration, and the TEVATRON Electroweak Working Group ','result for the Lepton-Photon conference 2005','Arnulf Quadt','','','D0_PRIVATE','','$D0_PRI/4864/m_d0note_4864.ps','',2005,6,29,2453551,2005,7,14,2453566),(4865,'Search for tt resonances','Maren Vaupel','','Maren Vaupel','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4865/m_ttbar_resonances_summer05_note.pdf','',2005,6,30,2453552,2005,12,13,2453718),(4866,'Search of the lightest scalar top stop1 in\r\nstop1 stop1-bar ---> b b-bar 2 muons 2 sneutrinos\r\ndecays at D0','Pedrame Bargassa','','Pedrame Bargassa','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4866/m_4866_d0conf_st1_dimu.ps','',2005,6,30,2453552,2005,7,15,2453567),(4867,'Identification of b-jet by Soft Muon','K. Hanagaki and J. Kasper','','K. Hanagaki','','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4867/m_d0note4867_slt.ps','',2005,6,30,2453552,2005,9,29,2453643),(4868,'The road method with the CPS','Florent CHEVALLIER, Sabine CREPE-RENAUDIN, Arnaud LUCOTTE','','Florent CHEVALLIER','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4868/m_RoadCPS_D0note4868.ps','',2005,7,1,2453553,2005,8,16,2453599),(4869,'Observation of the Decay $B_s^0 \\rightarrow \\psi(2S)\\,\\phi$ and a Measurement of ${\\cal B}(B_s^0 \\rightarrow \\psi(2S)\\,\\phi)/{\\cal B}(B_s^0 \\rightarrow J/\\psi\\,\\phi )$ with the D\\O~detector.','Ralf Bernhard and Frank Lehner','','Frank Lehner','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4869/m_bspsi2sphi_conf_v1.4_4869.pdf','',2005,7,1,2453553,2006,2,15,2453782),(4870,'Effects of e/h on the Relative b-to-light Jet Energy Scale Systematics','Ariel Schwartzman, Chris Tully','','Ariel Schwartzman','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4870/m_epi.ps','',2005,7,4,2453556,2005,7,4,2453556),(4871,'Search for Single Top Quark Production Using Likelihood Discriminants at D0 in Run II','The Dzero Collaboration','','Benoit Clement','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4871/m_d0note4871_v1_6.pdf','',2005,7,5,2453557,2005,7,20,2453572),(4872,'Measurement of dsigma(Z->ee)/dY at the Tevatron','A. Baden, C. Jarvis, J. Mans, T. Toole, M. Yan','','Terry Toole','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4872/m_d0note4872.ps','',2005,7,5,2453557,2005,7,5,2453557),(4873,'Measurement of dsigma(Z->ee)/dY at the Tevatron \r\n(Conference Note)','A. Baden, C. Jarvis, J. Mans, T. Toole, M. Yan','','Terry Toole','WZ','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4873/m_d0note4873.ps','',2005,7,5,2453557,2005,7,5,2453557),(4874,'Top Quark Measurement with the Matrix Element Method in the Lepton+Jets Final State at D0 RunII','F. Fiedler, A. Magerkurth, P. Schieferdecker','','Philipp Schieferdecker','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4874/m_topmass_me_320ipb_4874conf.ps.gz','',2005,7,6,2453558,2005,7,19,2453571),(4875,'Combined Opposite-side Flavor Tagging','G. Borissov, S. Burdin, R. Jesik, D. Krop, Ph. Lewis, T.Moulik, Md. Naimuddin, A. Nomerotski, D. Tsybychev','','Guennadi Borissov','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4875/m_note4875v1_0.ps','',2005,7,6,2453558,2005,7,18,2453570),(4876,'Top Charge measurement using Jet Charge Template','Per Hansson, Christophe Clement, David Milstead','Summer 2005 conference note','C. Clement','TOP','CONF','D0_PRIVATE','POSTSCRIPT','/RunII/home/perh/notes/m_topcharge_confnote_summer05_v0_5.ps','',2005,7,6,2453558,2005,7,16,2453568),(4877,'Measurement of the ttbar Production Cross-section at\r\nsqrt(s)=1.96 TeV in Electron Muon Final States','M. Besancon, F. Deliot, V. Shary','Analysis note','Viatcheslav Shary','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4877/m_ttemu_note4877_v1.9.pdf','',2005,7,7,2453559,2006,5,12,2453868),(4878,'Search for B_s oscillations at D0 using B_s->D_s mu X (D_s->K*K) decays','B.Abbott, C.Ay, D.Bauer, S.Beale, I.Bertram, G.Borissov, T.Bose, S.Burdin, H.Evans, R.Jesik, M.Kopal, D.Krop, T.Moulik, Md Naimuddin, A.Nomerotski, Ph.Lewis, J.Rieger, W. Taylor, D.Tsybychev, L. Welty','','Tulika Bose','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4878/m_4878_Dsmu_kstark.pdf','',2005,7,8,2453560,2005,7,16,2453568),(4879,'Measurement of the ttbar Production Cross Section in ppbar Collisions at sqrt(s)=1.96 TeC in all hadronic final states','The Dzero Collaboration','Results for the Summer Conferences 2005','Freya Blekman','TOP','CONF','D0_PRIVATE','OTHER','','',2005,7,8,2453560,NULL,NULL,NULL,NULL),(4880,'Search for a ttbar resonance in ppbar collisions ar sqrt(s)=1.96 TeV in the lepton + jets final state using a lifetime tag','Maren Vaupel, \r\nAurelio Juste','','Maren Vaupel','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/4880/m_ttbar_resonances_summer05_confnote.pdf','',2005,7,8,2453560,2005,12,13,2453718),(4881,'Mixing in the Bs System Using\r\nBs to Ds Mu X, Ds to Phi Pi Decay Mode And Opposite-Side Flavor Tagging','B.Abbott, C.Ay, D.Bauer, S.Beale, I.Bertram, G.Borissov, T.Bose, S.Burdin, H.Evans, R.Jesik, M.Kopal, D.Krop, T.Moulik, Md Naimuddin, A.Nomerotski, Ph.Lewis, J.Rieger, W. Taylor, D.Tsybychev, L. Welty','','Sergey Burdin','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/4881/m_d0note4881v2_0.pdf','',2005,7,10,2453562,2005,7,14,2453566),(4882,'Probability Calculation for Multi-object Trigger Configurations','Leonard Christofek, Reinhard Schwienhorst, Michael Begel, Miroslav Kopal','','Leonard Christofek','TRIGGER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4882/m_multiobject_prob.pdf','',2005,7,11,2453563,2005,8,16,2453599),(4883,'The Top Trigger Package: Including Version 13 Triggers and Other Improvements','Micheal Begel, Freya Blekman, Leonard Christofek, Thomas Gadfort, Nils Gollub, Miroslav Kopal, Reinhard Schwienhorst','','Leonard Christofek','TRIGGER','MEMO','D0_PRIVATE','POSTSCRIPT','','',2005,7,11,2453563,NULL,NULL,NULL,NULL),(4884,'TREFFY: A Trigger Efficiency Package','Leonard Christofek, Justace Clutter, Thomas Gadfort, Nils Gollub','','Leonard Christofek','TRIGGER','MEMO','D0_PRIVATE','POSTSCRIPT','','',2005,7,11,2453563,NULL,NULL,NULL,NULL),(4885,'Comparison of chi^2 refitting thresholds in STT track fits using Trigsim','K.R. Herner, J.D. Hobbs, H. Dong, J. Zhu','','Ken Herner','TRIGGER','DOC','D0_PRIVATE','','$D0_PRI/4885/m_4885_stt_chi2.pdf','',2005,7,11,2453563,2005,7,12,2453564),(4886,'Measurement of the ttbar Production Cross Section in ppbar Collisions at sqrt{s}=1.96 TeV Using b-tagged Lepton + Jets Events','The DO Collaboration','','Elizaveta Shabalina','TOP','CONF','D0_PRIVATE','POSTSCRIPT','','',2005,7,13,2453565,NULL,NULL,NULL,NULL),(4887,'Level 3 Muon Tools: p17 certification','Daniela Bauer','Certification plots and reference histograms of the performance of the Level 3 muon tools for the p17 release/v14 trigger list.','Daniela Bauer','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2005,7,14,2453566,NULL,NULL,NULL,NULL),(4888,'Measurement of the ttbar Production Cross Section in ppbar Collisions at sqrt(s)=1.96 TeV Using b-tagged Lepton+Jets Events','C. Clement, G. Otero, S. Lager, F. Ritzadinova, E. Shabalina, J. Strandberg ','','Aurelio Juste','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4888/m_LJetsBtagXS.ps','',2005,7,15,2453567,2006,4,13,2453839),(4889,'A Neural Network b-tagging Tool','Tim Scanlon','Development and optimisation on MC of a Neural Network tool to identify b-jets.','Tim Scanlon','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4889/m_4889_mcnote.pdf','',2005,7,16,2453568,2006,5,2,2453858),(4890,'Neural Network b-tagging Tool on Pass 2 Data','Tim Scanlon\r\nMiruna Anastasoaie','Certification of the NN b-tagging tool on pass 2 data.','Tim Scanlon','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4890/m_4890_datanote.ps','',2005,7,16,2453568,2006,5,2,2453858),(4891,'Reconstructing Bs->Dspi and prospects for measuring Delta Ms in the hadronic mode','Chris Barnes, Rick Jesik','','Chris Barnes','B_PHYSICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4891/m_hadronicB_4891.pdf','',2005,7,19,2453571,2005,9,20,2453634),(4892,'Combination of CDF and D0 Results on the Top-Quark Mass','The CDF Collaboration, the D0 Collaboration, and the Tevatron Electroweak Working Group','result for the EPS conference 2005','Arnulf Quadt','TOP','','D0_PRIVATE','POSTSCRIPT','','',2005,7,19,2453571,NULL,NULL,NULL,NULL),(4893,'Search for Heavy Resonances Decaying into Z+jet Final States\r\nin p-pbar Collisions at sqrt(s)=1.96 TeV using the D0 Detector','The D0 Collaboration','Conference Note','Elemer NAGY','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4893/m_ZjResNote4893Conf.ps','',2005,7,20,2453572,2005,7,20,2453572),(4894,'Search for squarks and gluinos in dimuon, jets and missing transverse energy final state.','Tuan Vu Anh and Michel Jaffr','','Jaffre','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4894/m_sqgl_4894.pdf','',2005,7,21,2453573,2005,7,21,2453573),(4895,'Search for Heavy Resonances Decaying into Z+jet Final States in p-pbar Collisions at sqrt(s)= 1.96 TeV using the D0 Detector','L. Berntzon, S. Kermiche, E. Nagy, E. Thomas','Analysis note','Elemer NAGY','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4895/m_ZjResNote4895Anal.ps','',2005,7,25,2453577,2005,7,25,2453577),(4896,'Search for Wbb and WH Production in ppbar Collisions at sqrt(s) = 1.96 TeV','Hyunwoo Kim, Jae Yu','2005 Winter conference preliminary result','Suyong Choi','','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4896/m_4896_whcnote.ps','',2005,7,28,2453580,2005,7,28,2453580),(4897,'Measurement of Z->ee and W->enu Production Cross Sections Using One Tight Central Electron','Doug Chapin, Harald Fox, John Gardner, Robert Illingworth,\r\nAdam Lyon, Junjie Zhu','','John Gardner','WZ','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4897/m_4897_wzelec.pdf','',2005,8,1,2453584,2006,3,1,2453796),(4898,'Verification of Physics Triggers Used by the\r\nTop Quark Physics Program in Trigger List\r\nVersion 14','Leonard Christofek, Dag Gillberg, J.-P. Konrath,\r\nMiroslav Kopal','','Len Christofek','TRIGGER','MEMO','D0_PRIVATE','POSTSCRIPT','','',2005,8,1,2453584,NULL,NULL,NULL,NULL),(4899,'ORing single muon triggers and one muon+jets trigger','Thomas Gadfort','','Thomas Gadfort','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4899/m_4899_ORingTriggers.pdf','',2005,8,1,2453584,2006,1,27,2453763),(4900,'Measurement of the $\\rm t\\bar{t}$ production cross section at $\\sqrt{s}=1.96$~TeV using lifetime tagging','Christophe Clement, Gustavo Otero y Garzon, Sara Lager, Flera Rizatdinova, Elizaveta Shabalina, Jonas Strandberg','','Gustavo Otero y Garzon','TOP','PUB','D0_PRIVATE','OTHER','$D0_PRI/4900/m_ljets_btag_note_v2_1.pdf','',2005,8,2,2453585,2006,4,13,2453839),(4901,'First Pass Measurement of the Top Quark Mass in the Dielectron Channel Using Neutrino Weighting and the Average Template Method','J. Kozminski, H. Weerts','','Joe Kozminski','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4901/m_4901_mtop.ps','',2005,8,4,2453587,2005,8,4,2453587),(4902,'Search for Technicolor in the $W( \\rightarrow\\mu\\nu ) \\bb/\\bc$ Channel','Satish Desai, John Hobbs, Peter Tamburello','note that main file contains errors in some tables and figures. Please use fix_4902_technicolor_wx-mnbq.pdf instead.','Satish Desai','NEW','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4902/m_4902_technicolor_wx-mnbq.pdf','',2005,8,12,2453595,2005,11,1,2453676),(4903,'A Jet-Shape Based Inter-phi Calorimeter Calibration','Amnon Harel','','Amnon Harel','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4903/m_jet_shape_based_inter_phi_calibration.pdf','',2005,8,17,2453600,2005,9,12,2453626),(4904,'The Upgraded Luminosity Detector Readout and Preliminary Effective Inelastic Cross-section.','Tim Andeen, Brendan Casey, Dan Krop, Rick Kwarciany, Rich\r\n Partridge, Michelle Reschke, Jeremy Werner, Sahal Yacoob, Hwidong Yoo','','Brendan Casey','','DOC','D0_PRIVATE','OTHER','$D0_PRI/4904/m_4904-new-system-v0.0.pdf','',2005,8,19,2453602,2005,9,22,2453636),(4905,'Long Term Single Muon Yield Studies','D. Denisov, S. Kulikov, A. Ferapontov','','S. Kulikov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4905/m_4905.pdf','',2005,8,19,2453602,2005,9,9,2453623),(4906,'Combined tbart Production Cross Section at sqrt{s}=1.96 TeV \r\nin the Lepton+Jets and Dilepton Final States using Event Topology\r\n','D0 collaboration','','E. Shabalina','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4906/m_comboxs_4906-conf.ps','',2005,8,24,2453607,2005,8,24,2453607),(4907,'STT Track Fitting Performance in Z->mumu and J/psi -> mumu Samples','K. R. Herner, J.D. Hobbs, J. Zhu','','Kenneth Herner','TRIGGER','ANAL','D0_PRIVATE','','$D0_PRI/4907/m_4907_stt_eff.pdf','',2005,8,24,2453607,2005,11,11,2453686),(4908,'Monte Carlo Generators for W Mass Analysis','Junjie Zhu','','Junjie Zhu','WZ','DOC','D0_PRIVATE','POSTSCRIPT','','',2005,8,25,2453608,NULL,NULL,NULL,NULL),(4909,'TrigCertCaf, TrigSimCert\'s Tools Ported to CAF','Philippe Vachon-Rivard, Brigitte Vachon, Camille B?langer-Champagne, Steve Beale, Yann Coadou','','Philippe Vachon-Rivard','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4909/m_trigcertcaf_4909.pdf','',2005,8,25,2453608,2005,9,15,2453629),(4910,'Bs->2mu search. New cuts. Sensitivity analysis on 300 pb^{-1}','Yuri Scheglov','The new cuts to suppress combinatoric dimuon background in the region of B_{s} mass were proposed. An origination of the background had discussed. Results of the sensitivity analysis presented.','Yuri Scheglov','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','','',2005,8,26,2453609,NULL,NULL,NULL,NULL),(4911,'LMExamine Charge Information','Chonlagarn Iamsumang','','Chonlagarn Iamsumang','','DOC','D0_PRIVATE','OTHER','$D0_PRI/4911/m_LMExamine_Document.pdf','',2005,8,26,2453609,2005,10,24,2453668),(4912,'L2 Trigger Monitoring GUIs.','Miroslav Kopal, Reinhard Schwienhorst, Isaac Hall','This document describes the L2 monitoring GUIs.','Miroslav Kopal','TRIGGER','DOC','D0_PRIVATE','OTHER','','',2005,8,29,2453612,NULL,NULL,NULL,NULL),(4913,'Recommendations Regarding Common Analysis Format Infrastructure.','D0 Data Format Working Group','','Herbert Greenlee','SOFTWARE_INFRA','DOC','D0_PRIVATE','OTHER','$D0_PRI/4913/m_d0note4913_caf_infrastructure.pdf','',2005,8,29,2453612,2005,8,29,2453612),(4914,'Shifting, Smearing and Removing Simulated Jets','Nikola Makovec and Jean-Francois Grivaz','','J.-F. Grivaz','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4914/m_Jet-SSR.ps','',2005,8,31,2453614,2005,11,10,2453685),(4915,'The D0 Luminosity Database','Elizabeth Gallas for the D0 Luminosity and D0 Database Groups','','Elizabeth Gallas','SOFTWARE_INFRA','DOC','PUBLIC','OTHER','m_LumDB.html','',2005,9,8,2453622,2006,1,2,2453738),(4916,'Depletion Voltage Determination for the D0 Silicon Microstrip Tracker using the Charge Collection Efficiency','Sergey Burdin','','Sergey Burdin','SILICON','DOC','D0_PRIVATE','OTHER','','',2005,9,8,2453622,NULL,NULL,NULL,NULL),(4917,'Depletion Voltage for the D0 Silicon Microstrip Tracker from the n-side Noise Study','Sergey Burdin, Sara Lager','','Sergey Burdin','SILICON','DOC','D0_PRIVATE','OTHER','$D0_PRI/4917/m_d0note4917_depvolt_noise.pdf','',2005,9,8,2453622,2005,9,12,2453626),(4918,'Primary Vertex Reconstruction by Means of Adaptive Vertex Fitting','Ariel Schwartzman, Chris Tully','','Ariel Schwartzman','ALGORITHMS','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4918/m_adaptiveVertex.ps','',2005,9,9,2453623,2005,9,9,2453623),(4919,'jet ID optimization','Amnon Harel','','Amnon Harel','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4919/m_p17jetID.pdf','',2005,9,13,2453627,2006,2,21,2453788),(4920,'Central Preshower validation and Soft Electron Identification','Phil Baringer, Don Coppage, Tania Moulik','','Tania Moulik','PRESHOWER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4920/m_seleid_d0note4920.ps','',2005,9,14,2453628,2005,9,14,2453628),(4922,'Search for Quark-Lepton Compositeness in the Dimuon Channel with 400 pb−1 D? Run II Data','Lucas Xuan Nguyen, Neal Cason, Don Lincoln','','Gregorio Bernardi','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4922/m_compositeness_dimuon_1.ps','',2005,9,15,2453629,2005,9,19,2453633),(4921,'trigcertcaf','','','trigcertcaf','','','D0_PRIVATE','','','',2005,9,15,2453629,NULL,NULL,NULL,NULL),(4923,'The Pmcs\\_chprt Package','Paul telford','','Paul Telford','MC','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4923/m_pmcs_chprt_4923.ps','',2005,9,19,2453633,2005,9,19,2453633),(4924,'p17 Single tau Monte Carlo sample generation\r\n','Catherine Biscarat, Serban Protopopescu','','Catherine Biscarat','MC','DOC','D0_PRIVATE','','','',2005,9,22,2453636,NULL,NULL,NULL,NULL),(4925,'Measurement of the Top Quark Mass with the Matrix Element Method in the Dilepton Channel -- a Feasibility Study','Frank Fiedler','','Frank Fiedler','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4925/m_mtopMEdilepton.pdf','',2005,9,23,2453637,2005,9,23,2453637),(4926,'Level 2 Vertex Corrections','R. Hirosky and S. Zelitch','','R. Hirosky','TRIGGER','MEMO','D0_PRIVATE','OTHER','$D0_PRI/4926/m_d0note4926_l2vertexing.pdf','',2005,9,24,2453638,2005,11,8,2453683),(4927,'Towards MissingET Certification and Unclustered Energy Studies','Samuel Calvet, Patrice Verdier, Eric Kajfasz','','Samuel Calvet','ALGORITHMS','DOC','D0_PRIVATE','','$D0_PRI/4927/m_d0note.ps','',2005,9,25,2453639,2005,10,5,2453649),(4928,'Combination of the Measurements of the Top Quark Mass with the\r\nIdeogram and Matrix Element Methods at D0 Run-II\r\n','Frank Fiedler','','Frank Fiedler','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4928/m_mtopcombination.pdf','',2005,9,26,2453640,2005,9,26,2453640),(4929,'Study of Silicon Track Trigger (STT) in p17 Data','DooKee Cho, Amitabha Das, Meenakshi Narain, Ulrich Heintz','','DooKee Cho','TRIGGER','DOC','D0_PRIVATE','OTHER','','',2005,9,26,2453640,NULL,NULL,NULL,NULL),(4930,'A precise measurement of the B_s lifetime','Alberto Sanchez-Hernandez\r\nMarco A. Carrasco Lizarraga','','Alberto Sanchez-Hernandez','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4930/m_4930_precise_lifetime_bs_v10.pdf','',2005,9,26,2453640,2005,12,8,2453713),(4931,'Changes to the Luminosity Readout Electronics and PMT HV, Fall 2005 ',' Tim Andeen, Brendan Casey, Dan Krop, Rick Kwarciany, Rich\r\n Partridge, Michelle Reschke, Jeremy Werner, Sahal Yacoob, Hwidong Yoo ','','Brendan Casey','','DOC','D0_PRIVATE','OTHER','$D0_PRI/4931/m_4931-changes-fall-05-v1.0.pdf','',2005,9,27,2453641,2005,9,27,2453641),(4932,'Improved L1 Confirmation','Amnon Harel\r\nRobert Wagner','','Amnon Harel','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4932/m_L1Confirmation.pdf','',2005,9,27,2453641,2005,11,16,2453691),(4933,'Search For Associated Single Top Quark Production','Laura Bodine, Thomas Gadfort, Gordon Watts','','Thomas Gadfort','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4933/m_4933_tWSingleTop.pdf','',2005,9,27,2453641,2006,4,7,2453833),(4934,'Forward muon yields obtained from 2002 to 2005.','D.Denisov,S.Kulikov,A.Ferapontov','','Kulikov','MUON','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4934/m_4934.pdf','',2005,9,29,2453643,2005,9,30,2453644),(4935,'The Pmcs_muon packaage','P Telford','','Telford','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/4935/m_pmcs_muon_4935.pdf','',2005,9,29,2453643,2005,9,29,2453643),(4936,'D? Computing and Software Operations and Plan - 2005','The D? Collaboration','','Gavin Davies','SOFTWARE_INFRA','DOC','D0_PRIVATE','','$D0_PRI/4936/m_D0Note4936_computing_review.pdf','',2005,9,29,2453643,2006,1,27,2453763),(4937,'Development of a new Leve 3 b-tagging filter using soft muons','Mayukh Das, Per Jonsson, Neeti Parashar','','Neeti Parashar','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2005,10,4,2453648,NULL,NULL,NULL,NULL),(4938,'Halo Calibration for Lower Luminosity HV Settings','Brendan Casey','','Brendan Casey','','DOC','D0_PRIVATE','','$D0_PRI/4938/m_4938-halo-cal-v1.0.pdf','',2005,10,7,2453651,2005,10,7,2453651),(4939,'A package for ALPGEN MC event generation','Catherine Biscarat','','Catherine Biscarat','MC','DOC','D0_PRIVATE','','$D0_PRI/4939/m_mc_alpgen_p14.pdf','',2005,10,8,2453652,2006,8,27,2453975),(4940,'Measurement of the B^0_s Lifetime and a Measurement\r\nof the Lifetime Difference in the B^0_s System\r\nat D0','Leonard Christofek','ICFP 2005 Proceedings','Leonard Christofek','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4940/m_christofek_icfp2005_b0_4940.pdf','',2005,10,10,2453654,2005,10,17,2453661),(4941,'Top Quark Physics at D0','Leonard Christofek','ICFP 2005 Proceedings','Leonard Christofek','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4941/m_christofek_icfp2005_top_4941.pdf','',2005,10,10,2453654,2005,10,17,2453661),(4942,'Recent Results from EW and Top Quark Physics at D0','Leonard Christofek','TeV Connection Proceedings 2005','Leonard Christofek','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4942/m_christofek_tev_connection2005_4942.pdf','',2005,10,10,2453654,2005,10,17,2453661),(4943,'Determination of jet pT resolution (JetCorr 6.1)','M. Voutilainen, C. Royon','','C. Royon','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','','',2005,10,11,2453655,NULL,NULL,NULL,NULL),(4944,'Combination of CDF and D0 Results on the W-Boson Width','TEVEWWG','','Martin Grunewald','WZ','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4944/m_gw4944.ps','',2005,10,12,2453656,2005,10,30,2453674),(4945,'Energy Scale studies and calibration of the D0 electromagnetic calorimeter using Z0 and J/Psi -> e+e- Run II events','Sma?n Kermiche, Aur?lien Mend?s, Marie-Claude Cousinou, Alexis Cothenet','','Smain Kermiche','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4945/m_CalibEmD0note4945.ps','',2005,10,13,2453657,2005,10,14,2453658),(4946,'An Update of Wbb and WH Searches in electron channel\r\nwith Full Data Set of Pass2','Hyunwoo Kim, Jae Yu of UTA','','Hyunwoo Kim','','PHYS','D0_PRIVATE','POSTSCRIPT','','',2005,10,13,2453657,NULL,NULL,NULL,NULL),(4947,'Test Results from the SVX4','Leonard Christofek','FEE 2003 Proceedings','Leonard Christofek','SILICON','CONF','D0_PRIVATE','OTHER','$D0_PRI/4947/m_christofek_fee2003_4947.pdf','',2005,10,17,2453661,2005,10,17,2453661),(4948,'The D0 Run II Silicon Upgrade','Leonard Christofek','DPF 2002 Proceedings','Leonard Christofek','SILICON','CONF','D0_PRIVATE','OTHER','$D0_PRI/4948/m_christofek_dpf2002_talk.pdf','',2005,10,17,2453661,2005,11,19,2453694),(4949,'CPS Variables for Photon Identification','A. Askew, D. Duggan','Proposed base CPS cuts for photon ID','Andrew Askew','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4949/m_CPSrevised.ps','',2005,10,19,2453663,2005,10,19,2453663),(4950,'Central Muon System\r\nMuon Yield Studies.\r\n','D. Denisov, A.S. Ito\r\nFermi National Accelerator Laboratory, Batavia, USA\r\n\r\nG. Safronov,\r\nInstitute for Theoretical and Experimental Physics, Moscow, Russia\r\n\r\nL. Mikhalev\r\nInstitute for High Energy Physics, Protvino, Russia.\r\n','The Note describes the procedure as well as results obtained while measuring muon yields over two months in luminosity range 15-105E30cm^-2s^-1.','Mikhalev','MUON','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4950/m_4950.pdf','',2005,10,21,2453665,2005,11,27,2453702),(4951,'Measurement of the CP-violation parameter of the (B^0, \\bar{B}^0) system using 610pb^-1 of data.','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4951/m_bana_CPV_D0note4951.ps','',2005,10,27,2453671,2005,11,1,2453676),(4952,'Search for Neutral Higgs Bosons Decaying to Tau Pairs','Volker Buescher, Carsten Noeding, Maxim Titov, Ingo Torchiani','','Carsten Noeding','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4952/m_htautau_p14_v06.pdf','',2005,10,28,2453672,2006,3,8,2453803),(4953,'Search for Technicolor in the $W( \\rightarrow\\mu\\nu ) \\bb/\\bc$ Channel: 2','Satish Desai, John Hobbs, Peter Tamburello','','Satish Desai','NEW','ANAL','D0_PRIVATE','OTHER','','',2005,10,28,2453672,NULL,NULL,NULL,NULL),(4954,'Measurement of the ttbar Production Cross Section at sqrt(s)=1.96 TeV in the Muon+Jets Final State using a Topological Method on 363/pb of PASS2 data.','N. Gollub, E. Shabalina','','Nils Gollub','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',2005,10,31,2453675,NULL,NULL,NULL,NULL),(4955,'Measurement of the W boson helicity in top quark decays using 370 pb-1 of RunII data','K. Johns, B. Gmyrek, J. Leveque, E. W. Varnes','','Erich Varnes','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4955/m_wpol_note4955.pdf','',2005,11,1,2453676,2007,1,2,2454103),(4956,'Solenoid Magnet Field in the D0 Reconstruction Version p17','Dmitri Denisov','Summary of changes for the solenoid magnetic field in the D0 reconstruction version p17 in comparison with previous D0 Run II reconstruction versions is given.','Dmitri Denisov','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4956/m_4956.pdf','',2005,11,2,2453677,2005,11,2,2453677),(4957,'Integration of Probabilities for Matrix Element Method (ttbar->lepton+jets)','Robert Harrington','','Robert Harrington','TOP','ANAL','D0_PRIVATE','OTHER','/RunII/home/harringt/d0note4957/m_D0Note4957_MEMethodIntegration_Lepton+jets_v2.1.pdf','',2005,11,8,2453683,2006,10,31,2454040),(4958,'Determination of the Effective Inelastic p pbar\r\nCross-Section for the DO Luminosity Measurement Using Upgraded Readout Electronics','Brendan Casey, Yuji Enari, Thorsten Kuhl, Thomas Nunnemann, Rich Partridge, Pavel Polozov, Heidi Schellman, Markus Wobisch','','Brendan Casey','','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4958/m_4958-new-constant-v1.0.pdf','',2005,11,15,2453690,2006,9,10,2453989),(4959,'STT data studies ','S. Caron','','Sascha Caron','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2005,11,21,2453696,NULL,NULL,NULL,NULL),(4960,'The B-identification algorithm for Level 2','S. Caron, J. Piper with help from M. Kopal','','Sascha Caron','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4960/m_note_4960.pdf','',2005,11,21,2453696,2005,12,9,2453714),(4961,'D0 Silicon Microstrip Tracker','S.Burdin on behalf of the D0 collaboration','IEEE NSS 2005 proceedings','S.Burdin','SILICON','CONF','D0_PRIVATE','OTHER','$D0_PRI/4961/m_d0note4961_smt_ieee2005.pdf','',2005,11,25,2453700,2005,11,25,2453700),(4962,'Bs Mixing, Lifetime Difference and Rare Decays at the Tevatron','S.Burdin on behalf of the CDF and D0 collaborations','Proceedings of Moriond 2005, QCD and Hadronic Interactions section','S.Burdin','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/4962/m_d0note4962_moriond2005_bs.pdf','',2005,11,25,2453700,2005,11,25,2453700),(4963,'Measurement of the CP-violation parameter of the (B^0, Bbar^0) system using 910pb^-1 of data.','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4963/m_bana_CPV_4963.ps','',2005,12,2,2453707,2005,12,8,2453713),(4964,'Routing of Pleated Foil and LVDS Cables for the Run IIb L1 Calorimeter Trigger Upgrade','Alan Stone, John Fogelsong','','Alan Stone','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/4964/m_d0note4964.pdf','',2005,12,6,2453711,2005,12,15,2453720),(4965,'A Search for Charged Massive Stable Particles at D0','M. Eads, D. Hedin','','M. Eads','NEW','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4965/m_d0note4965_cmsp_analysis_v1.0.pdf','',2005,12,8,2453713,2006,3,22,2453817),(4966,'Calibration of PMCS using fully simulated Technicolor signal in the \r\n$\\rho_T\\rightarrow W(\\rightarrow e\\nu) +\\pi_T(\\rightarrow b \\; \\overline{b}(\\overline{c}) )$ \r\nproduction channel for version p14 of D\\O\\ software. ','Lorenzo Feligioni, Meenakshi Narain','','Lorenzo Feligioni','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4966/m_4966_note.pdf','',2005,12,14,2453719,2006,1,12,2453748),(4967,'A search for Techniparticle production at D\\O\\ Run II in the mode\r\n$\\rho_T\\rightarrow W(\\rightarrow e\\nu) +\\pi_T(\\rightarrow b \\; \\overline{b}(\\overline{c}) )$\r\nwith $b$-quark jet identification using Secondary Vertex reconstruction.','Lorenzo Feligioni, DooKee Cho, Meenakshi Narain','','Lorenzo Feligioni','NEW','PHYS','D0_PRIVATE','OTHER','','',2005,12,14,2453719,NULL,NULL,NULL,NULL),(4968,'Improving the Tuning of b-Fragemntation in the D? Monte-Carlo','Yvonne Peters, Klaus Hamacher, Daniel Wicke','','Daniel Wicke','MC','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4968/m_TuneBFrag.pdf','',2005,12,14,2453719,2006,1,30,2453766),(4969,'New preamp board for Luminosity monitor','B. Caesy, Y.Enari, R. Partridge','','Yuji Enari','DAQ_ELECTRONICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/4969/m_d0note4969.pdf','',2005,12,15,2453720,2005,12,15,2453720),(4970,'Updated Study of Flavor Changing Neutral Current Charm Decays','Brendan Casey','','Brendan Casey','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4970/m_4970-pimumu-update-v1.0.pdf','',2005,12,18,2453723,2006,2,27,2453794),(4971,'Test of D0 Notes with mysql on d0www','G. Cooper','Some pub. info','Glenn Cooper','TOP','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4971/m_note4971_metopmassupdate.pdf','',2006,10,13,2454022,2005,12,22,2453727),(4972,'Update of the Combination of the Measurements of the Top Quark Mass with the Ideogram and Matrix Element Methods at D0 Run-II','Frank Fiedler','','Frank Fiedler','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4972/m_note4972_idmetopmasscombinationupdate.pdf','',2005,12,22,2453727,2005,12,22,2453727),(4973,'Single Muon Yields Time and Luminosity Dependence','D. Denisov, A. Ferapontov, A. Popov, A. Shchukin, I.Vasilyev','Forward muon yields from a set of 7 special muon runs taken in a single high luminosity store are analyzed and demonstrate high stability of the forward muon system performance.\r\n','A. Popov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4973/m_4973.pdf','',2005,12,22,2453727,2005,12,22,2453727),(4974,'Photon energy scale for jet energy scale setting.','O.Atramentov, D.Bandurin, Y.Maravin','','Bandurin','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4974/m_pes_jes.pdf','',2005,12,29,2453734,2006,3,21,2453816),(4975,'Calculating Limits for Combined Analyses','Wade Fisher','','Wade Fisher','NEW','PUB','D0_PRIVATE','OTHER','$D0_PRI/4975/m_4975.pdf','',2005,12,29,2453734,2006,1,23,2453759),(4976,'Photon Identification in P17 Data','Oleksiy Atramentov, Andrew Askew, Dmitri Bandurin, Dan Duggan, Alexei Ferapontov, Yuri Gershtein, Yurii Maravin, Greg Pawloski ','The latest version of the note can be dowloaded from:\r\n\r\nwww-d0.fnal.gov/~oleksiy/phoid_draft.pdf\r\n','Oleksiy Atramentov','ALGORITHMS','','D0_PRIVATE','POSTSCRIPT','/RunII/home/oleksiy/m_photon_id_v2.pdf','',2005,12,31,2453736,2006,3,1,2453796),(4977,'Constraining the Absolute Luminosity Measurement at a Hadron Collider using a Drell-Yan Process','Jeremy Werner','N/A','Jeremy Werner','NEW','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4977/m_Zmm_lumi_v1.pdf','',2006,1,5,2453741,2006,1,6,2453742),(4978,'Text and Trigger Tables for Publications\r\nfor the Top Quark Physics Group','Leonard Christofek','','Leonard Christofek','TOP','DOC','D0_PRIVATE','OTHER','$D0_PRI/4978/m_publication_tables_4978.pdf','',2006,1,6,2453742,2006,1,12,2453748),(4979,'Search for R-parity violated Supersymmetry : lambda 133 Coupling','Anne-Catherine Le Bihan, Fran?ois Charles','','Anne-Catherine Le Bihan','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2006,1,11,2453747,NULL,NULL,NULL,NULL),(4980,'D0 Tracking Performance at High Luminosity','Kenneth Bloom and Aaron Dominguez','','Aaron Dominguez','ALGORITHMS','DOC','D0_PRIVATE','OTHER','','',2006,1,11,2453747,NULL,NULL,NULL,NULL),(4981,'Search of the lightest scalar top stop1 in stop1 stop1-bar ---> b b-bar elecron muon 2 sneutrinos decays at Dzero','Pedrame Bargassa, Aurelien Mendes, Elemer Nagy, Mossadek Talby','','Pedrame Bargassa','NEW','','D0_PRIVATE','','$D0_PRI/4981/m_4981_st1-emu2j_ana.ps','',2006,1,11,2453747,2006,4,5,2453831),(4982,'Search for R-parity violating Supersymmetry via the LLE Coupling lambda_121 in Final States with eel (l=e ou mu)','Anne-Marie Magnan, Gerard Sajot','','Gerard Sajot','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4982/m_eel_rpv_december15_2005.pdf','',2006,1,12,2453748,2006,3,15,2453810),(4983,'Measurement of mtop in Dilepton Events with Neutrino Weighting','S. Anderson, R. Kehoe, J. Kozminski, J. Meyer, A. Quadt, P. Renkel, C. Schwanenberger, J. Temple','','Jeff Temple','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4983/m_llmtop_v3_d0note4983.pdf','',2006,1,18,2453754,2006,1,19,2453755),(4984,'Search for Resonant Slepton Production with 375 pb^-1','Christian Autermann, Thomas Hebbeker, Arnd Meyer','Analysis Note','Christian Autermann','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4984/m_rpvslepton_v4.8.ps','',2006,1,20,2453756,2006,1,20,2453756),(4985,'First Direct Observation of Bs2 meson','I.Bertram, G.Borissov','','Borissov','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4985/m_note-1.0.ps','',2006,1,24,2453760,2006,2,21,2453788),(4986,'Hard Diffractive Results and Prospects at the Tevatron','Krisztian Peters','Presented at the XXXV International Symposium on Multiparticle Dynamics 2005, August 9-15, 2005, Kromeriz, Czech Republic','Krisztian Peters','QCD','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4986/m_diffr_4986.ps','',2006,1,24,2453760,2006,1,24,2453760),(4987,'Long Term LED Calibration Studies for the Forward Muon Scintillation Counters','V. Bezzubov, I. Churin, D. Denisov, V. Evdokimov, V. Lipaev, V. Podstavkov, A. Shchukin, I. Vasilyev','The procedure of LED calibration for the forward muon scintillation counters is described. The results for the year 2005 LED calibration are presented.','Igor Vasilyev','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/4987/m_4987.pdf','',2006,1,26,2453762,2006,1,26,2453762),(4988,'Muon isolation tool at L3','Vincent LESNE','Study of the isolation tool for muons at L3. Performance of the tool for various isolation criteria is summarized and a comparison of two muon tools, MUON_CM and Muon, has been performed.','Vincent LESNE','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4988/m_4988_lesne_l3isolationmuon.ps','',2006,1,27,2453763,2006,1,27,2453763),(4989,'Form Factor in the $\\Lambda_b$ Semileptonic Decay $\\Lambda_b \\rightarrow \\Lambda_c \\mu \\tilde{\\nu}$',' Abaz Kryemadhi, Robert J. Hirosky, Kenneth S. Nelson, Craig Dukes','','Abaz Kryemadhi','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/4989/m_lb_form_factor_note_4989.pdf','',2006,1,27,2453763,2006,2,7,2453774),(4990,'Study of excited B-mesons','I. Bertram, G. Borissov, M. Williams and P. Ratoff','Preliminary Results for 2006 Winter Conferences','Mark Williams','B_PHYSICS','','D0_PRIVATE','OTHER','$D0_PRI/4990/m_bstarstar_note-v0.pdf','',2006,1,27,2453763,2006,2,23,2453790),(4991,'Bd mixing measurement using Opposite-side Flavor Tagging','G.Borissov, S. Burdin, B. Casey, R. Jesik, D. Krop, Ph. Lewis, T. Moulik, A. Nomerotski, D. Tsybychev','','Tania Moulik','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4991/m_note4991_v1.0.pdf','',2006,1,27,2453763,2006,2,18,2453785),(4992,'Stt Examine','S.Sengupta, H.B.Prosper','','Sinjini Sengupta','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4992/m_SttExamine.ps','',2006,1,27,2453763,2006,1,27,2453763),(4993,'Observation of the Orbitally Excited D_s** State Ds1(2536) and a Measurement of the Branching Ratio Br(B_s -> Ds1(2536) \\mu \\nu)','Jason Rieger, Rick Van Kooten','','Rick Van Kooten','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4993/m_note4993_v1p0.pdf','',2006,1,29,2453765,2006,2,27,2453794),(4994,'Charm tagging efficiency measurement using exclusively reconstructed D* mesons','F. Filthaut, M. Shamim','','F. Filthaut','ALGORITHMS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/4994/m_dstar_4994.pdf','',2006,1,31,2453767,2006,3,9,2453804),(4995,'Taggability in Pass2 p14 Data.','Cecilia Gerber, Elizaveta Chabalina, Gustavo Otero y Garzon','','Gustavo Otero y Garzon','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4995/m_taggabilityNote4995.ps','',2006,1,31,2453767,2006,2,7,2453774),(4996,'Measurement of the CP-violation parameter of the (B^0, \\bar{B}^0) system using 970pb^{-1} of data.','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4996/m_bana_CPV_4996.ps','',2006,1,31,2453767,2006,2,7,2453774),(4997,'Measurement of the Top Quark Mass in the Dilepton Channel','Daniel Boline, Ulrich Heintz','','Ulrich Heintz','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4997/m_4997.pdf','',2006,2,1,2453768,2006,5,23,2453879),(4998,'Search for R-parity violating Supersymmetry via the LLE Couplings lambda_121, lambda_122 and lambda_133 in Final States with Three Leptons','F. Charles, D. K\\\"afer, A.-C. Le Bihan, A.-M. Magnan, A. Meyer, G. Sajot','','Daniela Kaefer','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4998/m_combnote_rpv-multileptons-letter.pdf','',2006,2,3,2453770,2006,2,3,2453770),(4999,'A simulation method of the Electroweak Top Quark Production Events in the NLO Approximation.\r\nMonte-Carlo Generator - SingleTop.','E.E.Boos, V.E.Bunichev, L.V.Dudko, V.I.Savrin, A.V.Sherstnev','In this note we describe a method to simulate the electroweak top quark production processes.','Lev Dudko','TOP','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/4999/m_d0note4999_singletop_generator.pdf','',2006,2,3,2453770,2006,2,3,2453770),(5000,'\"Best Variables\" Method and Implementation of Neural Networks in Physics Analysis','A.A.Berezina, E.E.Boos, V.E.Bunichev, L.V.Dudko','An optimal choice of proper kinematical variables for the physics analysis is discussed in the note.','Lev Dudko','TOP','PUB','D0_PRIVATE','','$D0_PRI/5000/m_d0note5000_best_variables.pdf','',2006,2,3,2453770,2006,4,10,2453836),(5001,'Level 3 Time Monitoring','Elliott Cheu','Description of online monitoring for Level 3 filter time.','Elliott Cheu','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5001/m_l3time_5001.pdf','',2006,2,3,2453770,2006,3,9,2453804),(5002,'Search for W\' boson production in single top quark events at D0 in RunII','R. Schwienhorst, M. Perfilov, V. Bunichev, E. Boos, L. Dudko','','Reinhard Schwienhorst','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5002/m_wprime_singletop_5002.pdf','',2006,2,5,2453772,2006,3,14,2453809),(5003,'Measurement of the Lambda-b Lifetime Using Semileptonic Decays','M. Lewin, G. Borissov','','M. Lewin','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5003/m_lambdaB_lifetime_semileptonic.ps','',2006,2,9,2453776,2006,2,10,2453777),(5004,'Gain Calibration for the EM Calorimeter in Run II','Matthew Wetstein, Jan Stark, Marco Verzocchi','','Jan Stark','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2006,2,9,2453776,NULL,NULL,NULL,NULL),(5005,'Run II Phi-Intercalibration of the Fine Hadronic Calorimeter ','Jiri Kvita, Krisztian Peters ','','Krisztian Peters','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5005/m_HadPhiInterCalib_5005.pdf','',2006,2,9,2453776,2006,5,24,2453880),(5006,'Run II Eta-Intercalibration of the Hadronic Calorimeter','Mikolaj Cwiok, Andrew Haas','','Mikolaj Cwiok','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2006,2,9,2453776,NULL,NULL,NULL,NULL),(5007,'Search for scalar leptoquarks in the acoplanar jet topology','N. Makovec, L. Duflot, J.-F. Grivaz and P. Verdier','The version of the note approved for publication is v1.7','J.-F. Grivaz','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5007/m_LQ-06_note.ps','',2006,2,10,2453777,2006,4,24,2453850),(5008,'Using PMCS in trilepton RpV SUSY searches (lambda_121 coupling)','Chunxu YU','','Chunxu YU','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5008/m_lambda121_pmcs.pdf','',2006,2,10,2453777,2006,2,13,2453780),(5009,'A new expected upper limit for the rare decay Bs->mu+mu- with the D0 experiment','Ralf Bernhard and Frank Lehner','','Frank Lehner','B_PHYSICS','CONF','D0_PRIVATE','','$D0_PRI/5009/m_bs_mumu_5009.pdf','',2006,2,10,2453777,2006,3,30,2453825),(5010,'Measurement of the Top Quark Mass in Lepton + Track Events Using Neutrino Weighting Method','Bob Kehoe, Joseph Kozminski, Sara Lager, Joerg Meyer, Arnulf Quadt, Peter Renkel, Chrisitan Schwanenberger, Jeff Temple, Erich Varnes','','renkel','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5010/m_leptontrack.pdf','',2006,2,10,2453777,2006,8,11,2453959),(5011,'Top Quark Production Cross Section in the lepton+track Channel Using Secondary Vertex b-tagging.','Christophe Clement, Sara Lager, Kirti Ranjan, Elizaveta Shabalina','','Sara Lager','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5011/m_conf_ltrack_v1_5.pdf','',2006,2,10,2453777,2006,4,7,2453833),(5012,'Update to the Summer 2005 Conference Measurement of the ttbar Production Cross-section at root(s)=1.96 TeV in the Dimuon Final State Using 370 pb-1 of Data','Stefan Anderson, Susan Burke, Jessica Leveque','','Stefan Anderson','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5012/m_topprod_mumu_2006.pdf','',2006,2,10,2453777,2007,2,1,2454133),(5013,'Study of Diffractive Charmonium Production in p p bar Collisions at sqrt(s) = 1.96 TeV','Ana Carolina Assis Jesus, Brendan Cameron Kieran Casey','','Ana Carolina Assis Jesus','QCD','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5013/m_5013-diffractive-jpsi-v1.0.pdf','',2006,2,10,2453777,2006,3,21,2453816),(5014,'Branching Measurement of Br( Bs -> Ds(*) Ds(*) )','J. Walder, I. Bertram, G. Borissov','','James Walder','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5014/m_Br_DsDs_5014.pdf','',2006,2,11,2453778,2007,1,18,2454119),(5015,'Bs mixing measurement in semileptonic channel Bs->Ds mu X (Ds->K*K)','B.Abbott, C.Ay, G.Borissov, T.Bose, S.Burdin, B.Casey, B.C.Choudhary, D.Krop, Md. Naimuddin','','Md Naimuddin','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5015/m_kstark_5015.ps','',2006,2,11,2453778,2006,2,21,2453788),(5016,'Determination of Weighting Factors for ALPGEN Monte Carlo\r\nSignal and Background Samples','M. Begel, L. Christofek, E. Shabalina','','Len Christofek','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5016/m_alpgen_mc_weights_5016.pdf','',2006,2,12,2453779,2006,4,13,2453839),(5017,'Bs Mixing in Semileptonic Bs Decays Using the Ds to Phi Pi Decay Mode and Unbinned Fit','C.Ay (Mainz), G.Borissov (Lancaster), S.Burdin (Fermilab), H.Evans (IU), R.Jesik (IC), \r\nT.Moulik (KU), A.Nomerotski (Fermilab), Ph.Lewis (IC), W.Taylor (York U.), \r\nD.Tsybychev (Stony Brook)','','Sergey Burdin','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5017/m_bsmixphipi_d0note5017v5_1.pdf','',2006,2,12,2453779,2006,3,6,2453801),(5018,'Search for Third Generation Leptoquarks in the b-Jets plus \r\nmEt Channel','Arthur Maciel, Sergey Uzunyan, Andriy Zatserklyaniy, David Hedin','','Sergey Uzunyan','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5018/m_LQ3_5018.pdf','',2006,2,12,2453779,2007,6,20,2454272),(5019,'Search for GMSB SUSY in Diphoton Events','Yuri Gershtein and Yurii Maravin','','Yuri Gershtein','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','','',2006,2,12,2453779,NULL,NULL,NULL,NULL),(5020,'Search for GMSB SUSY in Diphoton Events','Yuri Gershtein and Yurii Maravin','','Yuri Gershtein','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,2,12,2453779,NULL,NULL,NULL,NULL),(5021,'A Search for Associated Higgs Boson Production WH -> WWW* -> l+-nu l\'+-nu\' + X in ppbar collisions at sqrt(s)=1.96 TeV','Alexander Khanov','','Alexander Khanov','','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5021/m_note5021.pdf','',2006,2,14,2453781,2006,3,30,2453825),(5022,'Search for Neutral, Long-Lived Particles in the Dimuon Channel with 383 pb-1 of Run II Data','Todd Adams','','Todd Adams','NEW','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5022/m_5022_nllp_prelim_v1.6.3.pdf','',2006,2,15,2453782,2006,3,9,2453804),(5023,'Search for Neutral, Long-Lived Particles in the Dimuon Channel with 383 pb-1 of Run II Data','Todd Adams','','Todd Adams','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5023/m_5023_conf_nllp2005.pdf','',2006,2,15,2453782,2006,3,9,2453804),(5024,'Search for W\' Boson Production in the Single Top Quark Channel at Dzero in RunII','R. Schwienhorst, M. Perfilov, V. Bunichev, E. Boos, L. Dudko','Conference Note','Reinhard Schwienhorst','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5024/m_wprime_singletop_5024_conf.pdf','',2006,2,16,2453783,2006,3,14,2453809),(5025,'Single Electron Efficiencies in p17 Data and Monte-Carlo','J. Hays, J. Mitrevski, C. Schwanenberger, T. Toole','The purpose of the note is to document a measurement of single electron selection efficiencies in data and Monte Carlo in p17 (with p18 d0correct)','Jovan Mitrevski','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5025/m_emid-p17-eff_note5025.pdf','',2006,2,21,2453788,2006,4,26,2453852),(5026,'Study of Excited B-mesons','M.Williams, I.Bertram, G. Borissov, P.Ratoff','','Mark Williams','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5026/m_Bstst_Confnote_v1.pdf','',2006,2,22,2453789,2006,3,6,2453801),(5027,'First Direct Observation of Bs2* meson','I.Bertram, G.Borissov','','borissov','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5027/m_confnote-2.0.ps','',2006,2,22,2453789,2006,3,3,2453798),(5028,'Search for Neutral Higgs Bosons Decaying to Tau Pairs','Volker Buescher, Carsten Noeding, Maxim Titov, Ingo Torchiani','Conf note for Spring 2006 Conferences for the p14 H->tautau analysis','Ingo Torchiani','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5028/m_conf_5028-H-tautau_p14_v1_2.pdf','',2006,2,23,2453790,2006,3,14,2453809),(5029,'Bd mixing measurement using Opposite-side Flavor Tagging','G. Borissov, S. Burdin, B. Casey, R. Jesik, D. Krop, Ph. Lewis, T. Moulik, A. Nomerotski, D. Tsybychev','','Tania Moulik','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5029/m_note5029_v1.0.pdf','',2006,2,23,2453790,2006,3,4,2453799),(5030,'Search for the Higgs boson \r\nin $H \\rightarrow W W^* \\rightarrow l^+ l^- (ee, e \\mu)$\r\ndecays with 950 $pb^{-1}$ at DO in Run II','Maxim Titov','','Maxim Titov','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5030/m_D0note5030.pdf','',2006,2,23,2453790,2007,2,26,2454158),(5031,'Measurement of the ttbar Production Cross Section at sqrt{s} = 1.96 TeV in the Combined Lepton+Track and emu Channel','M. Besancon, C. Clement, F. Deliot, S. Lager, K. Ranjan, E. Shabalina, Slava Sharyy','winter 2006 conference note','Sara Lager','TOP','CONF','PUBLIC','POSTSCRIPT','$D0_PRI/5031/m_conf_ltrack_v1_5.pdf','',2006,2,23,2453790,2006,4,6,2453832),(5032,'Measurement of the Top Quark Mass in the Dilepton Channel','Daniel Boline, Ulrich Heintz','','Ulrich Heintz','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5032/m_5032.pdf','',2006,2,24,2453791,2006,5,23,2453879),(5033,'Impact of a Feature in PYTHIA version 6.319 in the D0 Monte Carlo Samples','Su-Jung Park, Michael Begel, Jan Stark, Jochen Cammin','','Su-Jung Park','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/5033/m_5033_pythiafeature.pdf','',2006,2,24,2453791,2006,3,13,2453808),(5034,'First Measurement of the $B^0_s$ Semileptonic Branching Ratio to an Orbitally Excited $D_s^{**}$ State, $Br(B^0_s -> D_{s1|(2536) \\mu \\nu X)$','Jason Rieger, Rick Van Kooten','','Rick Van Kooten','B_PHYSICS','CONF','D0_PRIVATE','OTHER','','',2006,2,26,2453793,NULL,NULL,NULL,NULL),(5035,'Layer Zero extension of CAL_ID number convention','Sergey Burdin, Kristian Harder, Alex Melnitchouk, Dmitry Onoprienko, Timour Ten','','Alex Melnitchouk','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5035/m_d0note5035.layer_zero_calid.ps','',2006,2,27,2453794,2006,2,27,2453794),(5036,'L1Cal Pulser for run2b upgrade.','Peter Renkel, Rahmi Unalan, Selcuk Cihangir, Sabine Lammers, Robert Kehoe, Harry Weerts','','Peter Renkel','CALORIMETER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5036/m_PulserTool.pdf','',2006,2,27,2453794,2006,8,11,2453959),(5037,'Muon PDT HV counting curves','penny kasper, Al Ito','','penny kasper','MUON','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5037/m_pdt_hv.ps','',2006,2,28,2453795,2006,2,28,2453795),(5038,' Study of Flavor Changing Neutral Current Charm Decays D to pi+ mu+ mu- ','Brendan Casey','','Brendan Casey','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5038/m_5038-pimumu-update-conf-v1.0.pdf','',2006,2,28,2453795,2006,3,8,2453803),(5039,'Search for light scalar top squark pair production in the \r\n$b\\bar{b} e^{\\pm}\\mu^{\\mp} \\tilde{\\nu}\\bar{\\tilde{\\nu}}$ \r\ndecay channel in $p\\bar{p}$ Collisions at $\\sqrt{s}=1.96$ TeV \r\nwith the D0 Detector ','P. Bargassa, A. Mendes, E. Nagy and M. Talby ','Preliminary Results for Winter 2006 Conferences','Mossadek Talby','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,3,2,2453797,NULL,NULL,NULL,NULL),(5040,'Search for Scalar Leptoquarks in the Acoplanar Jet Topology','N. Makovec, L. Duflot, J.-F. Grivaz and P. Verdier','Conference-note version of D0-Note 5007','J.-F. Grivaz','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5040/m_LQ-06_conf.ps','',2006,3,2,2453797,2006,3,27,2453822),(5041,'Search for light scalar top quark pair production in the \r\n$b\\bar{b} e^{\\pm}\\mu^{\\mp} \\tilde{\\nu}\\bar{\\tilde{\\nu}}$ decay channel in $p\\bar{p}$ Collisions at $\\sqrt{s}=1.96$ TeV unsing the D0 Detector','P. Bargassa, A. Mendes, E. Nagy, M.Talby','','Mossadek Talby','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2006,3,2,2453797,NULL,NULL,NULL,NULL),(5042,'Measurement of the CP-violation parameter of $B^0$ mixing and decay with 970 pb$^{-1}$ of $p \\bar{p}$ data.','D0 Collaboration','','Bruce Hoeneisen','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5042/m_BH_CPV_V1.4.pdf','',2006,3,2,2453797,2006,3,2,2453797),(5043,'Cross Section Errors Used in the Higgs Searches','G. Bernardi, S. Choi, and K. Hanagaki','','Kazu Hanagaki','','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5043/m_5043_xsection.ps','',2006,3,2,2453797,2006,4,25,2453851),(5044,'Search for Excited Muons in ppbar Collisions at sqrt(s)=1.96 TeV','Jan W. Coenen, Thomas Hebbeker, Arnd Meyer','Conference Note','Arnd Meyer','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5044/m_confnote_mar2_2006.pdf','',2006,3,2,2453797,2006,3,2,2453797),(5045,'A Study of Mixing in the Bs\r\nSystem Using the\r\nBs to DsMuX, Ds to PhiPi Decay Mode, \r\nOpposite-Side Flavor Tagging and Unbinned Fit','M.S.Anzelc, C.Ay, G.Borissov, S.Burdin, H.Evans, R.Jesik, T.Moulik, A.Nomerotski, Ph.Lewis, D.Strom, W.Taylor, D.Tsybychev, R. Van Kooten','','Sergey Burdin','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5045/m_bsmixphipi_conf5045v3_2.pdf','',2006,3,3,2453798,2006,4,25,2453851),(5046,'Measurement of the W Boson Helicity in Top Quark Decay','B. Gmyrek, K. Johns, J. Leveque, E. Varnes','','E. Varnes','','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,3,3,2453798,NULL,NULL,NULL,NULL),(5047,'Measurement of m_top in Dilepton Events with Neutrino Weighting','S. Anderson, R. Kehoe, J. Kozminski, J. Meyer, A. Quadt, P. Renkel, C. Schwanenberger, J. Temple','','Jeff Temple','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5047/m_mtop_nuwt_dilep_5047.pdf','',2006,3,3,2453798,2006,3,3,2453798),(5048,'Search for Anomalous $3\\gamma+X$ and $2\\gamma+e+X$ Events ','Oleksiy Atramentov','','Oleksiy Atramentov','NEW','PHYS','D0_PRIVATE','','','',2006,3,5,2453800,NULL,NULL,NULL,NULL),(5049,'An inclusive b-jet trigger strategy for Run2b','Sascha Caron','','S. Caron','TRIGGER','PHYS','D0_PRIVATE','POSTSCRIPT','','',2006,3,6,2453801,NULL,NULL,NULL,NULL),(5050,'Search for pair production of the supersymmetric partner of the top quark in stop1 stop1-bar ---> b b-bar elecron muon 2 sneutrinos, b b-bar muon muon 2 sneutrinos decay channels at D0','Pedrame Bargassa, Aurelien Mendes, Elemer Nagy, Mossadel Talby','','Pedrame Bargassa','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5050/m_5050_d0conf_st1_dimu-emu.ps','',2006,3,6,2453801,2006,4,5,2453831),(5051,'Search for Wbbbar and WH in the Muon channel using Pass2 Data','Lars Sonnenschein, Sophie Trincaz-Duvoid, Gregorio Bernardi','Analysis note','Gregorio Bernardi','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5051/m_5051_wh-mu_Moriond.pdf','',2006,3,8,2453803,2006,6,28,2453915),(5052,'Lifetime Difference in the B_s system','A.Chandra, K. Yip, D. Zieminska','','Daria Zieminska','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,3,8,2453803,NULL,NULL,NULL,NULL),(5053,'Top Quark Mass Measurement with the Matrix Element Method in the Lepton+Jets Final State at D0 Run II','Probabilities and topological analysis: Frank Fiedler, Philipp Schieferdecker; b-tagging analysis: Ariel Schwartzman; Regina Demina, Gaston Gutierrez, Petra Haefner, Alan Magerkurth, Christopher Tully','','Frank Fiedler','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5053/m_note5053_ljetsMEtopmassMoriond2006_lettersize.pdf','',2006,3,8,2453803,2006,3,21,2453816),(5054,'Search for WH Production at sqrt(s)=1.96 TeV','Gregorio Bernardi, Hyunwoo Kim, Lars Sonnenschein, Jae Yu','d0-conference note Winter 2006','Gregorio Bernardi','','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,3,9,2453804,NULL,NULL,NULL,NULL),(5055,'Limits on Standard Model Higgs Boson Production','Gregorio Bernardi, Suyong Choi, Johannes Elmsheuser, Wade Fisher, Kazu Hanagaki, Marc Hohlfeld, Alexander Khanov, Hyunwoo Kim, Lars Sonnenschein, Maxim Titov, Makoto Tomoto','','Wade Fisher','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5055/m_5055.pdf','',2006,3,10,2453805,2006,5,11,2453867),(5056,'Limits on Standard Model Higgs Boson Production','Gregorio Bernardi, Suyong Choi, Johannes Elmsheuser, Wade Fisher, Kazu Hanagaki, Marc Hohlfeld, Alexander Khanov, Hyunwoo Kim, Lars Sonnenschein, Maxim Titov, Makoto Tomoto','','Wade Fisher','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5056/m_5056.pdf','',2006,3,10,2453805,2006,5,11,2453867),(5057,'Meaurement of the ttbar production cross section in ppbar collisions at sqrt{s}=1.96 TeV in the multi-jet final state','Michael Begel','','Michael Begel','TOP','CONF','D0_PRIVATE','','','',2006,3,12,2453807,NULL,NULL,NULL,NULL),(5058,'Search for Stopped Gluinos (using p14 data)','Andy Haas','','Andy Haas','','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,3,13,2453808,NULL,NULL,NULL,NULL),(5059,'Search for Stopped Gluinos (using p14 data)','Andy Haas','','Andy Haas','','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5059/m_gluino_analysis_note_p14.pdf','',2006,3,13,2453808,2007,2,8,2454140),(5060,'A Search for the Standard Mondel Higgs boson using the ZH -> nu nubar b bbar channel in ppbar Collisions at sqrt(s)=1.96 TeV ','Makoto Tomoto','','Makoto Tomoto','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,3,15,2453810,NULL,NULL,NULL,NULL),(5061,'A measurement of the W->munu Charge Asymmetry with the D0 detector at sqrt(s) = 1.96 TeV','Sinjini Sengupta','','Sinjini Sengupta','WZ','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5061/m_Wasym_conf.ps','',2006,3,16,2453811,2006,3,16,2453811),(5062,'b-Jet Identification in the D0 Experiment','b-ID group (to be specified in detail)','NIM','Frank Filthaut','ALGORITHMS','PUB','D0_PRIVATE','POSTSCRIPT','','',2006,3,16,2453811,NULL,NULL,NULL,NULL),(5063,'Search for the Higgs boson in $H \\rightarrow W W^* \\rightarrow l^+ l^- (ee, e \\mu)$ decays with 950 $pb^{-1}$ at DO in Run II','Maxim Titov','','Maxim Titov','NEW','CONF','D0_PRIVATE','','$D0_PRI/5063/m_D0note5063.pdf','',2006,3,16,2453811,2007,2,26,2454158),(5064,'Combination of CDF and D0 Results on the Top-Quark Mass','The Tevatron Electroweak Working Group','','Martin.Grunewald','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',2006,3,17,2453812,NULL,NULL,NULL,NULL),(5065,'Search for particles decaying into a $Z$ boson and photon in $p\\overline{p}$ collisions at $\\sqrt{s} = 1.96$ TeV','Alton, Atramentov, and Maravin','','Drew Alton','WZ','CONF','D0_PRIVATE','OTHER','$D0_PRI/5065/m_note5065_scalar_Zg_v2.0.pdf','',2006,3,17,2453812,2006,3,17,2453812),(5066,'Z + jet production in the DO experiment:\r\nA comparison between data and the PYTHIA and SHERPA Monte Carlos','Volker Buescher, Harald Fox, Karl Jakobs, Henrik Nilsen','For Moriond QCD 2006','Henrik Nilsen','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5066/m_sherpa_conf_note.ps','',2006,3,18,2453813,2006,3,24,2453819),(5067,'Search for Fermiophobic Higgs Boson in $3\\gamma+X$ Events','Oleksiy Atramentov','','Oleksiy Atramentov','NEW','PHYS','D0_PRIVATE','','$D0_PRI/5067/m_DONote_5067_atramentov_3g-search.pdf','',2006,3,21,2453816,2007,1,25,2454126),(5068,'Branching Measurement of Br( Bs -> Ds(*) Ds(*) )','J. Walder, I. Bertram, G. Borissov','','James Walder','B_PHYSICS','CONF','D0_PRIVATE','OTHER','','',2006,3,21,2453816,NULL,NULL,NULL,NULL),(5069,'Single Electron Trigger Efficiencies in p17 Data','J.Hays, J.Mitrevski, O.Mundal, C.Schwanenberger','The purpose of the note is to document a measurement of single electron trigger efficiencies in p17 data','Christian Schwanenberger','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5069/m_emid-p17-trig_note5069.pdf','',2006,3,24,2453819,2006,3,24,2453819),(5070,'The Program Package em_cert: Version p18-br-20','J.Hays, J.Mitrevski, C.Schwanenberger','A description of the Program Package em_cert is given','Christian Schwanenberger','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5070/m_emid-cert-docu_note5070.pdf','',2006,3,24,2453819,2006,3,24,2453819),(5071,'Z + jet production in the DO experiment: A comparison between data and the PYTHIA and SHERPA Monte Carlos','Volker Buescher, Harald Fox, Karl Jakobs, Henrik Nilsen','','Henrik Nilsen','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5071/m_sherpa_analysis_note.ps','',2006,3,24,2453819,2006,3,24,2453819),(5072,'Improvement of the tau decay model and polarisation in the D0\r\nimplementation of TAUOLA','Catherine Biscarat','','Catherine Biscarat','MC','DOC','D0_PRIVATE','','$D0_PRI/5072/m_mc_tauola_p17.pdf','',2006,3,24,2453819,2006,8,21,2453969),(5073,'Muon-Track Matching at Level-2','A.Maciel, J.G.Lima','','Arthur Maciel','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5073/m_5073_tmatch_v1.0.pdf','',2006,3,26,2453821,2006,3,26,2453821),(5074,'Search for Pair Production of Scalar Bottom Quarks \r\nwith the DO Detector in p\\bar{p} Collisions at \\sqrt{s}=1.96~TeV','Arnaud Duperrin, Eric Kajfasz, Samuel Calvet','Analysis note describing the p14 pass2 analysis published in Phys. Rev. Letters','Arnaud Duperrin','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5074/m_sbottom-prl.pdf','',2006,3,27,2453822,2006,10,30,2454039),(5075,'Comparison of em_cert H-Matrix Cuts and Efficiencies in Data and Monte Carlo','M.S. Anzelc, J. Hays','The purpose of this note is to document a measurement of single electron H-Matrix efficiencies in data and Monte Carlo in p14, p17, and p17 with new tuning.','Meghan Anzelc','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5075/m_d0note5075_EMID_HMxStudies.pdf','',2006,3,28,2453823,2006,10,20,2454029),(5076,'A study of the D0 muon detector response and an update to the loose identification and tracking efficiencies for PMCS.','Chad Jarvis','','Chad Jarvis','MC','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5076/m_note5076.pdf','',2006,3,28,2453823,2006,5,16,2453872),(5077,'Studies of the 6% Increase in the Single Muon Yields','V. Abazov, D. Denisov, V. Evdokimov, A. Ferapontov, Y. Sinkin','Before December 2005 the yield was stable on 1% level. In December 2005 the first special run collected after mini-shutdown demonstrated 6% increase in single muon yield.','Y. Sinkin','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/5077/m_5077.pdf','',2006,3,30,2453825,2006,3,30,2453825),(5078,'PDF Uncertainty for W mass Measurement','Jun Guo, Junjie Zhu, John Hobbs, Robert Mccarthy','','Jun Guo','WZ','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5078/m_5078.ps','',2006,4,3,2453829,2006,4,3,2453829),(5079,'Available Luminosity for Winter Conferences','A. Askew, M. Titov, M. Voutilainen','','A. Askew','','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5079/m_d0note5079.ps','',2006,4,3,2453829,2006,4,3,2453829),(5080,'Search for Warm Regions in the EM Calorimeter in 2003-2006 p17 Data','Oleksiy Atramentov','','Oleksiy Atramentov','CALORIMETER','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5080/m_hot_em_cells.pdf','',2006,3,31,2453826,2007,1,25,2454126),(5081,'A search for Z boson pair production decaying into the\r\n$\\mu\\mu\\mu\\mu$, $e e e e$, $\\mu\\mu e e$ final states\r\nwith 1~fb$^{-1}$ of data.','Chad Jarvis, Nick Hadley, Michiel Sanders','','Chad Jarvis','WZ','','D0_PRIVATE','','$D0_PRI/5081/m_ZZ_d0note5081.pdf','',2006,4,5,2453831,2007,7,5,2454287),(5082,'A generator level study of muons from QCD','Chad Jarvis','','Chad Jarvis','','','D0_PRIVATE','','$D0_PRI/5082/m_note5082.pdf','',2006,4,5,2453831,2006,4,13,2453839),(5083,'Occurrence of High Muon Multiplicity Events after April 2005','Chad Jarvis, Michiel Sanders, Taka Yasuda','A description is given of the appearance of and cause for\r\nhigh muon multiplicity events in D0 data recorded after April 2005.\r\nThe auxillary files contains event listings.','Michiel Sanders','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5083/m_highmuonmult_5083.pdf','',2006,4,6,2453832,2006,4,13,2453839),(5084,'Measurement of the CP-violation parameter of $B^0$ mixing and decay with 970 pb$^{-1}$ of $p \\bar{p}$ data.','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5084/m_BH_CPV_analysis_note_V1.6.pdf','',2006,4,7,2453833,2006,4,7,2453833),(5085,'Alignment of the Central D-Zero Detector','Andre Sopczak','TIME\'05 conference proceedings','Andre Sopczak','ALGORITHMS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5085/m_5085_time05_proceedings_sopczak.pdf','',2006,4,12,2453838,2006,5,2,2453858),(5086,'Search for ZH-> nunubbbar at DZero Using the v13 p14 pass 2 Data Set','M. Petteni, L. Lobo, G. Davies','','M. Petteni','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2006,4,14,2453840,NULL,NULL,NULL,NULL),(5087,'Measurement of the Inclusive Jet Cross Section in p\\bar(p) Collisions at sqrt(s)=1.96 TeV','Alexander Kupco, Christophe Royon, Mikko Voutilainen','An updated preliminary measurement of the inclusive jet cross section is presented, based on a p17 data sample corresponding to an integrated luminosity of 0.8fb-1','Mikko Voutilainen','QCD','CONF','D0_PRIVATE','OTHER','$D0_PRI/5087/m_jetincl_conf06_5087.pdf','',2006,4,17,2453843,2006,9,25,2454004),(5088,'The D0 Speakers Bureau Database','Elizabeth Gallas','','Elizabeth Gallas','SOFTWARE_INFRA','DOC','PUBLIC','OTHER','','',2006,4,17,2453843,NULL,NULL,NULL,NULL),(5089,'Polarization in Upsilon System','Valentin Kuzmin','','Valentin Kuzmin','B_PHYSICS','DOC','D0_PRIVATE','PDF','$D0_PRI/5089/m_upsilon_polarization_v3.4.pdf','',2006,4,17,2453843,2008,2,1,2454498),(5090,'Measurement of the Lambda_b lifetime in the decay channel Lambda_b->J/psi+Lambdab at the D0 experiment','Eduard De La Cruz Burelo and Natalia Panikashvili','Update of the Lambda_b lifetime, B^0 lifetime, and their lifetime ratio, using around 1 fb^{-1} of data.','Eduard De La Cruz Burelo','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5090/m_Lambdab_lifetime_update.pdf','',2006,4,18,2453844,2007,3,14,2454174),(5091,'Reconstructing Top Events with p14 Multi-Jet Samples','Michael Begel','','Michael Begel','TOP','ANAL','D0_PRIVATE','','','',2006,4,20,2453846,NULL,NULL,NULL,NULL),(5092,'The Rejection of Spurious Low ET Level 3 Jets Found in RunIIa','Chris Potter and Brigitte Vachon','','Chris Potter','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5092/m_l3jetspike_5092.pdf','',2006,4,20,2453846,2006,4,25,2453851),(5093,'trigeff_cafe: Single Object Efficiency Calculation in the CAFe Environment','Camille Belanger-Champagne','','Camille Belanger-Champagne','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5093/m_5093_trigeff_cafe_doc.pdf','',2006,4,20,2453846,2006,5,22,2453878),(5094,'Tau identification with neural networks for p17 data','Serban Protopopescu and Peter Svoisky','','Serban Protopopescu','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5094/m_taunnp17_d0note5094_v2.0.pdf','',2006,4,20,2453846,2006,5,3,2453859),(5095,'Measurement of W+charm cross section using D0 detector','Mahsana Ahsan','','Mahsana Ahsan','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5095/m_W-charm.pdf','',2006,4,21,2453847,2006,4,21,2453847),(5096,'Charged Higgs Boson Search','Andre Sopczak (Lancaster University) and Arnold Pompos (Oklahoma University)','','Andre Sopczak','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5096/m_phys_5096_tbh.pdf','',2006,4,25,2453851,2006,5,27,2453883),(5097,'Trigger Studies of Charged Higgs Boson Production','Andre Sopczak (Lancaster University)','','Andre Sopczak','TRIGGER','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5097/m_phys_5097_tbh_trigger.pdf','',2006,4,25,2453851,2006,5,27,2453883),(5098,'Combination of CDF and D0 Results on the Top-Quark Mass','The CDF Collaboration, the D0 Collaboration, and the Tevatron Electroweak Working Group','result for the PDG 2006 printed review','Arnulf Quadt','TOP','PUB','D0_PRIVATE','POSTSCRIPT','','',2006,4,26,2453852,NULL,NULL,NULL,NULL),(5099,'Top Mass Measurement in the Lepton+Jets Channel using the Ideogram Method','Marcel Demarteau, Pieter Houben, Martijn Mulders, Marcel Vreeswijk, Michele Weber ','','Martijn Mulders','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5099/m_note5099conf_ljetsIdeogramTopmassSpring06.pdf','',2006,4,26,2453852,2006,5,28,2453884),(5100,'A Trigger Study for Electroweak Single Top Quark Production','P. Bryant and L. Christofek','','Len Christofek','TRIGGER','MEMO','D0_PRIVATE','OTHER','$D0_PRI/5100/m_electron_oring_5100.pdf','',2006,4,27,2453853,2006,4,29,2453855),(5101,'Limits on anomalous trilinear gauge couplings from WW->ee, WW->emu, and WW->mumu decays','M. Cooke and R. Illingworth','','M. Cooke','WZ','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5101/m_wwacnote_5101_v4.0.pdf','',2006,4,28,2453854,2006,10,10,2454019),(5102,'Time stability test of Amplifier-Discriminator Board parameters.\r\n','V.M.Abazov, I.N.Churin, D.S.Denisov, V.L.Malyshev, V.V.Tokmenin.','Time stability study of parameters of the Mini-Drift Tube electronics ? Amplifier-Discriminator Board ? is performed.','Vladimir Malyshev','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/5102/m_5102.pdf','',2006,4,29,2453855,2006,5,1,2453857),(5103,'Measurement of the Top Quark Charge at DZero','Leonard Christofek','APS Proceedings April Meeting 2006','Leonard Christofek','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5103/m_christofek_aps2006_talk_5103.pdf','',2006,4,30,2453856,2006,4,30,2453856),(5104,'Electron Level Energy Correction in D0 Reconstruction p14 pass 2 ','Tim Andeen, Jon Hays, Heidi Schellman','','Tim Andeen','WZ','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5104/m_5104_p14ecorr_v1.ps','',2006,5,2,2453858,2006,8,31,2453979),(5105,'Single Electron Efficiencies in p17 Data and Monte-Carlo Using p18.05.00 d0correct','J. Hays, J. Mitrevski, C. Schwanenberger, T. Toole','The purpose of the note is to document a measurement of single electron selection efficiencies in data and Monte Carlo in p17 (with p18.05.00 d0correct).','Jovan Mitrevski','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5105/m_emid-p17-eff_note5105.pdf','',2006,5,5,2453861,2006,5,9,2453865),(5106,'Studies of W+Jets Monte Carlo for p14','Ioana Maria Anghel, Cecilia Gerber','','Ioana Maria Anghel','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5106/m_W+jetsStudies_Note5106.pdf','',2006,5,8,2453864,2006,5,16,2453872),(5107,'Search for SM Higgs Boson in $ZH\\rightarrow\\mu\\bar{\\mu}+b\\bar{b}$ Channel in $p\\bar{p}$ Collisions at $\\sqrt{s}=1.96\\ $TeV','Huishi Dong, John Hobbs','','Huishi Dong','NEW','PHYS','D0_PRIVATE','OTHER','','',2006,5,9,2453865,NULL,NULL,NULL,NULL),(5108,'Non SUSY Searches at the TeVatron','Ph.Gris','Proceedings of the 41st Rencontres de Moriond - QCD and high energy hadronic interactions - La Thuile 18 - 25 march 2006','Philippe Gris','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,5,10,2453866,NULL,NULL,NULL,NULL),(5109,'Monte Carlo CAF Trees: A Beginner\'s Guide to CAFing MC and Finding CAFed MC','Leonard Christofek and Reiner Hauser','','Leonard Christofek','MC','MEMO','D0_PRIVATE','OTHER','$D0_PRI/5109/m_caf_tree_production_5109.pdf','',2006,5,12,2453868,2007,8,6,2454319),(5110,'Observation of WZ Diboson Production in Trilepton Final States from pbarp Collisions with 2001-2006 DZero Data','J. Degenhardt, A. Alton, B. Zhou, A. Askew','','James Degenhardt','WZ','DOC','D0_PRIVATE','OTHER','','',2006,5,14,2453870,NULL,NULL,NULL,NULL),(5111,'B_s MIXING STUDIES AT THE TEVATRON','Md. Naimuddin (on Behalf of CDF and D0 collaborations)','Contribution to the Moriond QCD 2006 proceedings','Md. Naimuddin','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5111/m_moriond_5111.ps','',2006,5,15,2453871,2006,5,15,2453871),(5112,'Tagging of Bremsstrahlung Muons that Depostit Energy in the Electromagnetic Calorimeter Faking a Photon Signal','Jose Lazoflores','','Jose Lazoflores','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5112/m_cosmicBremNote.ps','',2006,5,15,2453871,2006,5,17,2453873),(5113,'Measurement of the ttbar Production Cross Section in ppbar Collisions at sqrt(s)=1.96TeV using Secondary Vertex b-Tagging','Gustavo J. Otero y Garzon, Cecilia E. Gerber, Elizaveta Shabalina','','Gustavo Otero y Garzon','TOP','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5113/m_ttbarSVT-5113.ps','',2006,5,16,2453872,2006,11,1,2454041),(5114,'Electron Likelihood Efficiency in p17','L. Wang, J. Hays, J. Mitrevski, C. Schwanenberger','Three new electron likelihood discriminants are studied in p17 data and are compared to p14 Pass2 data','Christian Schwanenberger','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5114/m_electron_likelihood_p17_note5114.pdf','',2006,5,17,2453873,2006,9,14,2453993),(5115,'Measurement of the ttbar Production Cross Section at sqrt(s)=1.96 TeV in the Lepton+Jets Final State using Soft Muon Tagging on the first 360/pb of d0 Run II data','F. Chevallier, S. Crepe-Renaudin.','','Sabine Cr?p?-Renaudin','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5115/m_topxsec_ljets_SMT_5115_v0.4.ps','',2006,5,19,2453875,2006,10,16,2454025),(5116,'New Physics Searches at the Tevatron and the LHC','Andre Sopczak','PHENO\'05 and Aspen Collider Physics Workshop 2005','Andre Sopczak','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5116/m_conf_5116_searches.pdf','',2006,5,21,2453877,2006,5,27,2453883),(5117,'Search for single top quarks via flavor-changing neutral-current interactions at D0 in Run II','Supriya Jain','','Supriya Jain','TOP','PHYS','D0_PRIVATE','','$D0_PRI/5117/m_d0note5117.pdf','',2006,5,22,2453878,2006,9,22,2454001),(5118,'Measurement of the Top Quark Mass in the Dilepton Channel','Daniel Boline, Ulrich Heintz','','Ulrich Heintz','TOP','PUB','D0_PRIVATE','OTHER','$D0_PRI/5118/m_5118.pdf','',2006,5,23,2453879,2006,8,31,2453979),(5119,'Combination of Top Quark Mass Measurements in the Dilepton Channel','Daniel Boline, Ulrich Heintz, Robert Kehoe, Peter Renkel, Jeffrey Temple','','Ulrich Heintz','TOP','PUB','D0_PRIVATE','OTHER','','',2006,5,23,2453879,NULL,NULL,NULL,NULL),(5120,'Jets and MET triggers for the New Phenomena group in the V14 and V15 trigger lists','Thomas Millet, Arnaud Duperrin, Patrice Verdier, Steve Muanza','','Millet Thomas','TRIGGER','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5120/m_d0note5120_JetMetTriggers.pdf','',2006,5,23,2453879,2006,5,23,2453879),(5121,'Comparing and Debugging the RunIIb Level 2 Trigger with caf_tsimcomp','K. Murphy and R. W. Moore','','Roger Moore','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5121/m_D0Note5121.pdf','',2006,5,23,2453879,2006,5,23,2453879),(5122,'empty','empty','','Trang Hoang','WZ','','D0_PRIVATE','OTHER','','',2006,5,25,2453881,NULL,NULL,NULL,NULL),(5123,'Computing limits using a Bayesian approach in the package \"top_statistics\"','Supriya Jain, Harrison B. Prosper, Brigitte Vachon, Reinhard Schwienhorst, and Daekwang Kau ','','Supriya Jain','NEW','PUB','D0_PRIVATE','','$D0_PRI/5123/m_5123_top_statistics.ps','',2006,5,25,2453881,2006,9,21,2454000),(5124,'Results of Spring 2006 Pixels LED Calibration','S. Efremov, D. Denisov, V. Evdokimov,\r\nN. Prokopenko, V. Podstavkov, Y. Sinkin','','Efremov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/5124/m_5124.pdf','',2006,5,26,2453882,2006,5,26,2453882),(5125,'A Search for Techniparticle Production at $\\sqrt{s}=$ 1.96 TeV in $\\rho_{T}\\rightarrow W(\\rightarrow e\\nu) + \\pi_{T}(\\rightarrow b\\bbar(\\cbar)$ using Neural Network','DooKee Cho, Lorenzo Feligioni, Meenakshi Narain, Suyong Choi','','DooKee Cho','NEW','PHYS','D0_PRIVATE','OTHER','','',2006,5,26,2453882,NULL,NULL,NULL,NULL),(5126,'Search for the associated production of charginos and neutralinos in like sign dimuon channel','Vincent LESNE','preliminary results for summer 2006 conferences with 0.9 fb-1','Vincent LESNE','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5126/m_5126_lesne_trilepton_lsmumu_v1.ps','',2006,5,28,2453884,2006,6,30,2453917),(5127,'Search for the Associated Production of Charginos and Neutralino in Final States with Two Electrons and an Additional Lepton','DO collaboration','','Olav Mundal','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5127/m_5127_trilepton_eel.pdf','',2006,5,28,2453884,2006,10,19,2454028),(5128,'Top Quark Production Cross Section in the Lepton+Track Channel Using Secondary Vertex b-tagging.','Christophe Clement, Sara Lager, Kirti Ranjan, Elizaveta Shabalina','','Sara Lager','TOP','ANAL','D0_PRIVATE','OTHER','','',2006,5,29,2453885,NULL,NULL,NULL,NULL),(5129,'Heavy Flavour Removal and Determination of Weighting Factors for ALPGEN W+jet Monte Carlo','Dag Gillberg','','dgillber','TOP','DOC','D0_PRIVATE','OTHER','$D0_PRI/5129/m_alpgen_hf_skimming.pdf','',2006,5,29,2453885,2006,11,21,2454061),(5130,'Certification of Level 3 Jets for RunIIb','Camille Belanger-Champagne, Chris Potter and Brigitte Vachon','','Chris Potter','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5130/m_p19l3jet_5130.pdf','',2006,5,30,2453886,2007,4,8,2454199),(5131,'Search for the Associated Production of Chargino and Neutralino in Trilepton Final States','V.Buescher, H.Fox, M.Titov, O.Mundal','','Olav Mundal','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5131/m_5131_trilepton_eel_physics_v2.pdf','',2006,5,30,2453886,2006,6,7,2453894),(5132,'Search for the associated production of charginos and neutralinos in like sign dimuon channel','Vincent LESNE','','vincent LESNE','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5132/m_5132_lesne_trilepton_lsmumu_v2.ps','',2006,5,31,2453887,2006,6,9,2453896),(5133,'Search for scalar top pair production in the acoplanar jet topology','N. Makovec, J.-F. Grivaz, P. Verdier, A. Duperrin and E. Kajfasz','','J.-F. Grivaz','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5133/m_stop_v1.22.ps','',2006,6,1,2453888,2006,9,8,2453987),(5134,'Search for scalar top pair production in the acoplanar jet topology with the D0 detector','N. Makovec, J.-F. Grivaz, P. Verdier, A. Duperrin and E. Kajfasz','','J.-F. Grivaz','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5134/m_stop_conf_v1.3.ps','',2006,6,1,2453888,2006,6,22,2453909),(5135,'Search for Bs --> mu+ mu- Using a Multivariable Discriminant','Elliott Cheu and Peter Tamburello','','Peter Tamburello','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5135/m_d0note5135_Bs_mumu.pdf','',2006,6,1,2453888,2007,3,1,2454161),(5136,'Jet Transfer Functions derived from p17 ttbar Monte Carlo','P. Schieferdecker, M. Wang','','Philipp Schieferdecker','TOP','DOC','D0_PRIVATE','POSTSCRIPT','','',2006,6,3,2453890,NULL,NULL,NULL,NULL),(5137,'Software for PDT Control Board','P.Casper, I.Churin, D.Denisov, S.Hansen, A.Ito, H.Mao ','','Igor Churin','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/5137/m_D0Note5137CoBoSoft.pdf','',2006,6,5,2453892,2006,6,5,2453892),(5138,'Electron Trigger Efficiencies using Calorimeter Information in p17 Data','J. Hays, V. Kaushik, J. Mitrevski, O. Mundal, C. Schwanenberger','Efficiencies for single electron triggers using only calorimeter information and for the OR of those are presented (Versions v8-v11, v12, v13, v13.20 and v14).\r\n','Christian Schwanenberger','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5138/m_emid-p17-trig_calo_note5138.pdf','',2006,6,5,2453892,2006,10,16,2454025),(5139,'Adjustments to the Measured Integrated Luminosity in Run IIa','Gregory Snow, for the Luminosity Working Group','','Gregory Snow','','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5139/m_back_propagation_note_5139_v3.pdf','',2006,6,5,2453892,2007,5,4,2454225),(5140,'Improved Determination of the D0 Luminosity','Brendan Casey and Greg Snow for the D0 Luminosity group','','Brendan Casey','','DOC','D0_PRIVATE','OTHER','$D0_PRI/5140/m_lum-one-pager-summer2006-v1.0.pdf','',2006,6,9,2453896,2006,6,9,2453896),(5141,'Global Monitoring at D0','E. Cheu, M. Ford, Md. Naimuddin','','Md Naimuddin','ONLINE','DOC','D0_PRIVATE','','','',2006,6,9,2453896,NULL,NULL,NULL,NULL),(5142,'The longitudinal shape of the luminous region at D\\0','Heidi Schellman','','Heidi Schellman','WZ','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5142/m_beamshape_v1.pdf','',2006,6,12,2453899,2006,6,25,2453912),(5143,'Measurement of time-integrated untagged decay rate asymmetry in semileptonic $B_s$ decays','K.Holubyev, G.Borissov','','K. Holubyev','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5143/m_asl-bstods.ps','',2006,6,14,2453901,2006,7,23,2453940),(5144,'Lifetime Difference and Mixing Phase in the $B_s$ System','Avdhesh Chandra, Kin Yip, and Daria Zieminska','','Avdhesh Chandra','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5144/m_bsdgcp_conf.ps','',2006,6,15,2453902,2006,7,26,2453943),(5145,'A new expected upper limit for the rare decay $B_s^0 \\rightarrow \\mu^+ \\mu^-$ using the complete Run IIa dataset','Ralf Bernhard and Frank Lehner','','Ralf Bernhard','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5145/m_bsmumu_update_note_5145.pdf','',2006,6,19,2453906,2006,11,1,2454041),(5146,'LO/SMT Chip and Crate Status Informaion in SmtChipStatusChunk','Sergey Burdin \r\nKristian Harder \r\nMike Kirby \r\nAlex Melnitchouk \r\nDmitri Tsybychev ','','Alex Melnitchouk','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5146/m_d0note5146.smtchipstatus.ps','',2006,6,20,2453907,2006,6,20,2453907),(5147,'Measurement of the ttbar Production Cross Section at sqrt(s)=1.96 TeV in the Lepton+Jets Final State using a Topological Method on the Run IIa data','John Brunelle, Alan Magerkurth, Su-Jung Park, Marc-Andre Pleier','','Alan Magerkurth','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','','',2006,6,20,2453907,NULL,NULL,NULL,NULL),(5148,'Integration of ALPGEN in the D0 software environment.','Gerald Grenier','','Gerald Grenier','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/5148/m_alpgen_note.pdf','',2006,6,21,2453908,2006,7,10,2453927),(5149,'Bs Mixing studies in Semileptonic Bs decays with Ds->K*K and unbinned fit','B.Abbott, G. Borissov, S. Burdin, B. Casey, B. Choudhary, H.E.Fisk, D. Krop, Md. Naimuddin','','Md. Naimuddin','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5149/m_kstark_unbinned_5149.ps','',2006,6,21,2453908,2006,7,11,2453928),(5150,'Bs mixing in Bs -> Ds e n X, Ds -> phi pi decay mode','C. Ay, A. Bean, S. Burdin, D. J. Hover, T. Moulik','','Tania Moulik','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5150/m_note5150_bsemix_v1.pdf','',2006,6,21,2453908,2006,7,3,2453920),(5151,'Plan for Migration of D0 MC Farms to SAM v7','Adam Lyon, Todd Adams, Gavin Davies','','Adam Lyon','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/5151/m_5151.pdf','',2006,6,21,2453908,2006,6,26,2453913),(5152,'Measurement of the Top Quark Mass in the Dilepton Channel','Daniel Boline, Ulrich Heintz, Robert Kehoe, Peter Renkel, Jeffrey Temple','summer 2006 conference note','Ulrich Heintz','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5152/m_note5152_smtnoise.pdf','',2006,6,22,2453909,2006,8,1,2453949),(5153,'Search for Randall-Sundrum Gravitons in dilepton and diphoton final states.','Amitabha Das, Ulrich Heintz','','Amitabha Das','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5153/m_5153.pdf','',2006,6,22,2453909,2008,2,28,2454525),(5154,'Search for Techniparticles at D0','Lorenzo Feligioni, DooKee Cho, Meenakshi Narain','','Lorenzo Feligioni','','CONF','D0_PRIVATE','OTHER','','',2006,6,22,2453909,NULL,NULL,NULL,NULL),(5155,'Dilution and Tagging Power $\\epslion D^2$ for Same-Side\r\nTagging for $B_s$ Mesons','Alexander Rakitin','Preliminary Results for Summer 2006 Conferences','Alexander Rakitin','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5155/m_sst_Bs_5155.pdf','',2006,6,22,2453909,2006,6,22,2453909),(5156,'Study of Zgamma events in D0 Run II p17 data','Alexey Ferapontov, Yurii Maravin','','Yurii Maravin, Alexey Ferapontov','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5156/m_zgamma_p17_v1.0.ps','',2006,6,22,2453909,2007,5,3,2454224),(5157,'Muon Identification Certification for p17 data\r\n','Philippe Calfayan, Thomas Gadfort, Gavin Hesketh, Vincent Lesne, Mark Owen, Raimund Stroehmer, Viatcheslav Sharyy, Boris Tuchming','draft is linked from the muonid web page','tuchming','MUON','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5157/m_muonid_certification_p17_5157.pdf','',2006,6,22,2453909,2007,4,18,2454209),(5158,'Measurement of top pair production cross section from the tau+jets final state.','Mikhail Arov, Dhiman Chakraborty','','Mikhail Arov, Dhiman Chakraborty','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5158/m_d0note5158_ttbtaujets.ps','',2006,6,24,2453911,2006,6,24,2453911),(5159,'Data selection for the Run IIa blinded W Z cross section measurement','Heidi Schellman, Jon Hays, Kristian Harder','','Heidi Schellman','WZ','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5159/m_5159_dataselection.pdf','',2006,6,25,2453912,2006,7,13,2453930),(5160,'Limits on anomalous trilinear gauge couplings from WW->ee, WW->emu, and WW->mumu decays','M. Cooke and R. Illingworth','','R Illingworth','WZ','CONF','D0_PRIVATE','','','',2006,6,27,2453914,NULL,NULL,NULL,NULL),(5161,'','Cano Ay, Catrin Bernius, Thorsten Kuhl, Stefan Tapprogge, Gernot Weber','','Thorsten Kuhl, Catrin Bernius','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5161/m_HadronicBdReconstruction.pdf','',2006,6,28,2453915,2006,6,28,2453915),(5162,'Measurement of m_top in e-mu Events with Neutrino Weighting','O. Brandt, R. Kehoe, J. Meyer, A. Quadt, P. Renkel, C. Schwanenberger, J. Temple','','Bob Kehoe','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5162/m_emumtop5162.pdf','',2006,6,29,2453916,2006,8,17,2453965),(5163,'Level 2 EM Trigger Upgrade for Run2b: L2 EM Likelihood','Joseph Haley, Reinhard Schwienhorst','','Joseph Haley','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5163/m_L2EMLikelihood_1.pdf','',2006,6,30,2453917,2006,6,30,2453917),(5164,'Selection of Bs to Dspi events','Cano Ay, Catrin Bernius, Thorsten Kuhl, Stefan Tapprogge, Gernot Weber','','Thorsten Kuhl','B_PHYSICS','MEMO','D0_PRIVATE','','$D0_PRI/5164/m_note5164.pdf','',2006,6,30,2453917,2006,6,30,2453917),(5165,'Overview of Changes in L1 Muon Logic for Run IIB','Jeff Temple','','Jeff Temple','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5165/m_l1mu2b_note5165.pdf','',2006,7,4,2453921,2006,7,14,2453931),(5166,'L0 Software Reference Information','Shaohua Fu, Alex Melnitchouk, Timour Ten','','Alex Melnitchouk','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5166/m_d0note5166.address_geometry_coordinate_systems.ps','',2006,7,5,2453922,2006,7,5,2453922),(5167,'The D{\\O} Forward Proton Detector (FPD) dipole spectrometer alignment','H. Malbouisson','technical note','H. Malbouisson','QCD','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5167/m_alignment_5167.pdf','',2006,7,6,2453923,2006,7,9,2453926),(5168,'Jet Finding Algorithms at Tevatron','Bernard Andrieu','','Bernard Andrieu','ALGORITHMS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5168/m_D0-note_5168.pdf','',2006,7,6,2453923,2006,9,21,2454000),(5169,'Jet Efficiency Measurement and Monte Carlo Correction - Lessons and Options','Bernard Andrieu, Amnon Harel','','Bernard Andrieu','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5169/m_D0-note_5169.pdf','',2006,7,6,2453923,2006,9,21,2454000),(5170,'Jet-ID Certification for Run IIa Data in p17','B. Andrieu, Y. Coadou, A. Harel, J. Konrath, R. Luna-Garcia, B. Martin, H. Nogima, M. Rangel, M. Voutilainen','','Bernard Andrieu','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','','',2006,7,6,2453923,NULL,NULL,NULL,NULL),(5171,'Measurement of m_top in emu Events with Neutrino Weighting in Run II at D0','DZero Collaboration','Conference note for the p17 analysis','renkel','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5171/m_llmtop_conf_5171_ver_1.0.pdf','',2006,7,10,2453927,2006,8,17,2453965),(5172,'Bs Mixing studies with Bs->Ds mu X(Ds->K*K) Decay using unbinned Fit','B.Abbott, G.Borissov, S. Burdin, B. Casey, B. Choudhary, H.E.Fisk, D.Krop, Md. Naimuddin ','','Md. Naimuddin','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5172/m_kstark_conf_5172.pdf','',2006,7,10,2453927,2006,7,14,2453931),(5173,'Form Factor in the $\\Lambda_b$ Semileptonic Decay $\\Lambda_b \\rightarrow \\Lambda_c \\mu \\tilde{\\nu}$','Abaz Kryemadhi, Robert J. Hirosky, Craig Dukes, Andrew Norman','','Abaz Kryemadhi','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,7,10,2453927,NULL,NULL,NULL,NULL),(5174,'Bs mixing in Bs -> Ds e n X, Ds -> phi pi decay mode','C.~Ay~(Mainz), A. ~Bean~(KU), S.~Burdin~(Fermilab), \r\nD. ~James ~Hover~(KU), T.~Moulik~(KU)','','Tania Moulik','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5174/m_note5174_bsemix_conf_v1.pdf','',2006,7,11,2453928,2006,7,21,2453938),(5175,'Results of May 2006 Pixels Sr90 Source Calibration','V. Evdokimov, S. Efremov, L. Mikhalev, A. Schukin, I. Vasilyev, N. Prokopenko, D. Denisov','','Nikolay Prokopenko','MUON','DOC','D0_PRIVATE','POSTSCRIPT','/RunII/home/aferapon/m_5175.pdf','',2006,7,12,2453929,2006,7,13,2453930),(5176,'Search for Third Generation Leptoquarks in p\\bar{p} Collisions at \\sqrt{s}=1.96~TeV\r\n','Arthur Maciel, Sergey Uzunyan, Andriy Zatserklyaniy, David Hedin','','Sergey Uzunyan','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5176/m_LQ3_5176_conf.pdf','',2006,7,12,2453929,2006,7,12,2453929),(5177,'Muon Isolation and QCD Backgrounds for W and Z','Gavin Hesketh','','G. Hesketh','MUON','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5177/m_wz_iso_5177.pdf','',2006,7,13,2453930,2006,8,15,2453963),(5178,'Update of the Lambda_b lifetime, B^0 lifetime, and their lifetime ratio, using around 1 fb^{-1} of data.\r\n','Eduard de la Cruz Burelo and Natalia Panikashvili','','Natalia Panikashvili','B_PHYSICS','CONF','D0_PRIVATE','OTHER','','',2006,7,13,2453930,NULL,NULL,NULL,NULL),(5179,'Measurement of the Lambda b lufetime in the decay channel Lambda b to J/psi Lambda at the Dzero experiment','Eduard de la Cruz-Burelo, Natalia Panikashvili','','Brendan Casey','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5179/m_5179_LbLifetimeConf_v1.0.pdf','',2006,7,13,2453930,2006,8,18,2453966),(5180,'Some comments on angles in LQ and stop analysis','Jim Linnemann','','Jim Linnemann','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5180/m_5180_Angles_in_LQ_and_stop_analysis.pdf','',2006,7,13,2453930,2006,7,13,2453930),(5181,'Measurement of the tbart Production Cross-Section at sqrt{s}=1.96 TeV in the Electron+Jets Final State using a Topological Methodwith 425 pb of PASS2 data','E.Shabalina, M-A. Pleier, J-R. Vlimant','To be published in PRD','E.Shabalina','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5181/m_5181a.pdf','',2006,7,14,2453931,2007,5,27,2454248),(5182,'Measurement of the tbart Production Cross-Section at sqrt{s}=1.96 TeV \r\nin the Muon+Jets Final State using a Topological Method with PASS2 data','N.Gollub, E.Shabalina','to be published in PRD','E.Shabalina','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5182/m_5182.pdf','',2006,7,14,2453931,2006,9,29,2454008),(5183,'J/Psi Signal Selection and Backgrounds Estimates ','D. Denisov, V. Korablev','Procedure for J/Psi events selection in p14 data sample and estimation of backgrounds is presented.','Vladimir Korablev','MUON','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5183/m_5183.ps','',2006,7,15,2453932,2006,10,17,2454026),(5184,'Forward Muon Special Runs in Run IIa','D. Denisov, A. Popov, L. Mikhalev','During Run IIa of the Tevatron we measure single muon yield to monitor forward muon system stability. Information about all Run IIa special forward muon runs is summarized in this note.','Mikhalev','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/5184/m_D0Note5184.pdf','',2006,7,17,2453934,2006,7,17,2453934),(5185,'A Search for ZH Production in ppbar Collisions at sqrt(s) = 1.96 TeV with the Full Pass2 Data Set','James Heinmiller\r\nAlan Stone\r\nNikos Varelas','','James Heinmiller','','DOC','D0_PRIVATE','POSTSCRIPT','','',2006,7,17,2453934,NULL,NULL,NULL,NULL),(5186,'A Search for ZH(->llbb) Production at Dzero in ppbar collision at sqrt(s) = 1.96 TeV','H. Dong, K. Hanagaki, J. Heinmiller, J.D. Hobbs, A. Stone, and N. Varelas','','Kazu Hanagaki','','CONF','D0_PRIVATE','','','',2006,7,17,2453934,NULL,NULL,NULL,NULL),(5187,'Measurement of Z boson transverse momentum at $\\sqrt{s}$=1.96 TeV','Lei Wang, Sarah Eno, Michiel Sanders, Junjie Zhu','','Lei Wang','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5187/m_zpT_5187.ps','',2006,7,17,2453934,2007,12,9,2454444),(5188,'L1CalExamine2b - An Examine for the DZero Run IIB Level 1 Calorimeter Trigger','Steven Beale, Wendy Taylor, Todd Adams','','Steven Beale','ONLINE','DOC','D0_PRIVATE','OTHER','$D0_PRI/5188/m_l1cal2b_examine.pdf','',2006,7,19,2453936,2007,4,12,2454203),(5189,'Combination of Dzero results on CP violation phase in Bs system','G.Borissov, A.Chandra, D.Zieminska','','G.Borissov','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5189/m_cp.ps','',2006,7,19,2453936,2007,9,18,2454362),(5190,'Search for New Heavy Charged Gauge Bosons Decaying in the Electron Channel','Carsten Magass','','Carsten Magass','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5190/m_wprime_ana_5190.ps','',2006,7,20,2453937,2006,9,11,2453990),(5191,'Search for New Heavy Charged Gauge Bosons Decaying in the Electron Channel','Carsten Magass','','Carsten Magass','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5191/m_wprime_conf_5191.ps','',2006,7,20,2453937,2006,7,28,2453945),(5192,'Adaptive Primary Vertex Certification in p17\r\n','Ariel Schwartzman, Yvonne Peters, Herb Greenlee','Adaptive Primary Vertex Certification for p17.','Yvonne Peters','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5192/m_APVCertNote.pdf','',2006,7,20,2453937,2007,2,15,2454147),(5193,'Search for the Higgs boson in H->WW*->mumu decays in 930pb-1 at D0 in RunII','H. Fox','','Harald Fox','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5193/m_5193_hww_mumu_v12.pdf','',2006,7,21,2453938,2006,7,21,2453938),(5194,'Search for the Higgs boson in H->WW*->mumu decays in 930pb-1 at D0 in RunII','H. Fox','','Harald Fox','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5194/m_5194_conf_hww_mumu_v11.pdf','',2006,7,21,2453938,2006,7,21,2453938),(5195,'Search for Randall-Sundrum Gravitons in Dilepton and Diphoton Final States with 1 fb-1 of Data','Amitabha Das, Ulrich Heintz','prliminary result for summer 2006','Ulrich Heintz','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5195/m_5195.pdf','',2006,7,21,2453938,2008,2,28,2454525),(5196,'Combination of CDF and D0 Results on the Mass of the Top Quark','Tevatron Electroweak Working Group','','Martin Grunewald','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',2006,7,21,2453938,NULL,NULL,NULL,NULL),(5197,'A Simulation of the DZero RunII Level 1 Calorimeter Trigger','E. Aguilo, S. Lammers, G. Pawloski, W. Taylor','','Wendy Taylor','TRIGGER','DOC','D0_PRIVATE','OTHER','','',2006,7,24,2453941,NULL,NULL,NULL,NULL),(5198,'l1cal2b_met_cert package and Level 1 missingEt triggers certification in Run IIb','S. Calvet, J. Stark, A. Duperrin, P. Verdier, T. Millet, B. Martin, E. Kajfasz','','Samuel Calvet','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5198/m_l1cal2bmet_v1.0.ps','',2006,7,24,2453941,2006,10,16,2454025),(5199,'Calibration of the D0 Level 1 Calorimeter Trigger for RunIIb','Thomas Millet, Jan Stark, Patrice Verdier, Arnaud Duperrin, Samuel Calvet, Bertrand Martin, Steve Muanza','','Thomas Millet','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5199/m_d0note5199_l1CalCalibration.pdf','',2006,7,24,2453941,2006,9,25,2454004),(5200,'Measurement of the Top Quark Mass in the e? Channel Using the Matrix Weighting Method at D?\r\n','DZero Collaboration','Conference Note for p17 analysis, ICHEP 2006','Dan Boline','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5200/m_5200_mwt_conf_note_v1.0.pdf','',2006,7,24,2453941,2006,7,24,2453941),(5201,'Validation of L1 jet and electron triggers in early RunIIb data and software tools for regular checks in the future','Bertrand Martin, Gerard Sajot, Jan Stark, Patrice Verdier, Arnaud Duperrin, Thomas Millet, Samuel Calvet','','Bertrand Martin','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5201/m_5201_L1jet_runIIb.pdf','',2006,7,24,2453941,2006,11,17,2454057),(5202,'D0 Search for Neutral Higgs Bosons at High tan(beta) in Multi-jet Events Using p17 Data','Fabrice Couderc, Per Jonsson, Marine Michaut, Stephen Robinson, Tim Scanlon, Boris Tuchming ','','tuchming','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5202/m_hb_multijet_5202.pdf','',2006,7,24,2453941,2007,1,26,2454127),(5203,'Search for Neutral Higgs Bosons at High tan(beta) in Multi-jet Events.','Fabrice Couderc, Per Jonsson, Marine Michaut, Stephen Robinson, Tim Scanlon, Boris Tuchming ','','tuchming','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5203/m_hb_multijet_conf_ICHEP06_5203.pdf','',2006,7,24,2453941,2007,1,26,2454127),(5204,'Evidence for Z->bbbar Decays at D0','Andy Haas, Amber Jenkins, Per Jonsson, Gavin Davies','','Andy Haas','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',2006,7,25,2453942,NULL,NULL,NULL,NULL),(5205,'Evidence for Z->bbbar Decays at D0','Andy Haas, Per Jonsson','','Andy Haas','TOP','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,7,25,2453942,NULL,NULL,NULL,NULL),(5206,'Tau Energy Scale for 1-prong Hadronic Tau Decays','Krisztian Peters','','Krisztian Peters','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5206/m_tauEnergyScale_5206.pdf','',2006,7,25,2453942,2006,7,25,2453942),(5207,'A Combination of Bs Oscillations Results from DO','G. Borissov, S. Burdin, B. Casey, T. Moulik, M. Naimuddin, R. Van Kooten','','Sergey Burdin','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5207/m_bsmixcomb2006_5207v4_0.pdf','',2006,7,26,2453943,2006,7,26,2453943),(5208,'Performance of the \\dzero STT Track Fitting Algorithm','Huishi. Dong, John D. Hobbs, Wendy J. Taylor, ','','Huishi Dong','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5208/m_5208_STTEff.pdf','',2006,7,26,2453943,2006,7,27,2453944),(5209,'On CP violation and the measurement of the dimuon charge asymmetry at hadron colliders','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5209/m_0607073_d0note5209.pdf','',2006,7,27,2453944,2006,7,27,2453944),(5210,'Combination of Same-Side Taggers for $B_s$ Mesons','A.Rakitin','','A.Rakitin','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5210/m_sst_comb_Bs_5210.pdf','',2006,7,28,2453945,2008,1,28,2454494),(5211,'Precision Calibration of the D0 HCAL in Run II','Krisztian Peters','presented at XII International Conference on Calorimetry in High-Energy Physics','Krisztian Peters','CALORIMETER','CONF','D0_PRIVATE','OTHER','$D0_PRI/5211/m_calor_5211.pdf','',2006,7,31,2453948,2006,7,31,2453948),(5212,'A Study of using noisy F-disk wedge clusters in tracking','Jaret Flores, Alice Bean','','Alice Bean','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5212/m_note5212_smtnoise.pdf','',2006,7,31,2453948,2006,8,1,2453949),(5213,'Performance of the NN b-tagging Tool on p17 Data','Miruna Anastasoaie, Stephen Robinson, Tim Scanlon','','Miruna Anastasoaie','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5213/m_NNBtagCertificationP17.pdf','',2006,8,2,2453950,2007,2,2,2454134),(5214,'Muon transfer function parameters for p17 MC','Petra Haefner\r\nFrank Fiedler','','Petra Haefner','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','','',2006,8,2,2453950,NULL,NULL,NULL,NULL),(5215,'Combined DZero Upper Limits on Standard-Model Higgs-Boson Production','Gregorio Bernardi, Suyong Choi, Huishi Dong, Wade Fisher, Kazu Hanagaki, James Heinmiller, Alexander Khanov, Hyunwoo Kim, Lars Sonnenschein, Maxim Titov, Makoto Tomoto','','Wade Fisher','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5215/m_note5215.pdf','',2006,8,2,2453950,2006,8,2,2453950),(5216,'Measurement of the Lambda-b Lifetime Using Semileptonic Decays','M. Lewin, G. Borissov','','M. Lewin','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5216/m_lambdaB_lifetime_semilep2.ps','',2006,8,3,2453951,2006,9,18,2453997),(5217,'Observation of Biases in Jet Trigger Efficiency Measurements','Camille Belanger-Champagne, Brigitte Vachon','','Camille Belanger-Champagne','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5217/m_5217_top_muon_study.pdf','',2006,8,3,2453951,2006,8,15,2453963),(5218,'Combined JetID efficiency for p17','Amnon Harel, Helio Nogima, Murilo Rangel, Mikko Voutilainen','JetID efficiencies from tag-and-probe method in gamma+jet and dijet samples are combined with results from a study of JetID variable distributions in inclusive jets.','Mikko Voutilainen','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5218/m_jetid_p17_5218.pdf','',2006,8,4,2453952,2006,10,5,2454014),(5219,'Calorimeter Event Quality Flag Rates for W/Z Production Cross-section Measurement','Jonathan Hays, Kristian Harder','','Jonathan Hays','WZ','MEMO','D0_PRIVATE','OTHER','$D0_PRI/5219/m_5219_calqualcor.txt','',2006,8,10,2453958,2007,6,1,2454253),(5220,'Search for the Higgs Boson in the decay channel\r\nH -> W+ W- -> mu+ nu mu- nu\r\nusing Artificial Neural Networks \r\n','Daniela G\"orisch, Otmar Biebel, Johannes Elmsheuser, Thomas Nunnemann','','Thomas Nunnemann','','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5220/m_d0note5220_hww_ann.pdf','',2006,8,11,2453959,2006,8,17,2453965),(5221,'The K Factor in Semileptonic Bs Decays Using the Ds->Phi Pi Decay Mode','Jacqueline Radigan, Wendy Taylor','','Wendy Taylor','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5221/m_D0note5221.pdf','',2006,8,15,2453963,2007,10,11,2454385),(5222,'Forward Proton Tracking at D\\O\\','G. Alves, J. Barreto, M. Rangel','Presentation of a C++ code to track proton-like particles through the Tevatron lattice','Murilo Rangel','QCD','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5222/m_d0fpd_track.pdf','',2006,8,15,2453963,2006,8,21,2453969),(5223,'Measurement of the Top Quark Mass in the e? Channel Using the Matrix Weighting Method at D? (Analysis Note)','Daniel Boline, Ulrich Heintz','','Dan Boline','TOP','ANAL','D0_PRIVATE','TEXT','$D0_PRI/5223/m_5223_ll_mass_mwt.pdf','',2006,8,17,2453965,2006,8,17,2453965),(5224,'Measurement of the CP-violation parameter\r\nof $B^0$ mixing and decay with 1.0 fb$^{-1}$ of\r\n$p \\bar{p}$ data.\r\n','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5224/m_BH_CPV_V3.1_5224.pdf','',2006,8,18,2453966,2006,8,18,2453966),(5225,'Search for Large Extra Spatial Dimensions in the Diphoton and dielectron Channels','Piyali Banerjee','','Piyali Banerjee','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5225/m_analysis_note.pdf','',2006,8,21,2453969,2006,8,24,2453972),(5226,'Top Quark Mass Measurements','A.P. Heinson, for the CDF and D0 Collaborations ','To appear in the proceedings of the Conference on the Intersections of Particle and Nuclear Physics, Puerto Rico, May 2006','Ann Heinson','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5226/m_CIPANP06_Heinson_proceedings_topmass_D0Note5226.pdf','',2006,8,21,2453969,2006,8,25,2453973),(5227,'Combined DZero and CDF Upper Limits on Standard-Model Higgs-Boson Production','Gregorio Bernardi, Volker Buescher, Wade Fisher, Beate Heinemann, Tom Junk, Jane Nachtman, Song\r\nMing Wang, and Weiming Yao','','Wade Fisher','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5227/m_5227.pdf','',2006,8,28,2453976,2006,10,7,2454016),(5228,'B0s and B0d angular-mass-PDL analysis.','G.A. Garc?a-Guerra, H. Castilla-Valdez, A. S?nchez-Hern?ndez, and P.L.M. Podesta-Lerma.','We report preliminary results on the B0s->J/psi phi and B0d-> J/psi K(0*) angular analysis fitting simultaneously the mass, angular, and PDL, we have measured the angular and lifetime parameters.','G. Alejandro Garc?a-Guerra','B_PHYSICS','','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5228/m_BdBs_analysis_v2.ps','',2006,8,29,2453977,2006,10,3,2454012),(5229,'Precise tuning of the b fragmentation for the D? Monte Carlo','Y. Peters, K. Hamacher and D. Wicke','','Daniel Wicke','MC','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5229/m_bFragNote5229.pdf','',2006,8,29,2453977,2006,8,29,2453977),(5230,'A Search For Bs Oscillations Using Bs->Ds mu X (Ds->K0_S K) Decays ','G. Borissov, S. Burdin, B.C.K. Casey, D. Krop, R. Van Kooten','','Dan Krop','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5230/m_bsmixksk_5230.pdf','',2006,8,29,2453977,2006,10,24,2454033),(5231,'D0 Silicon Capacitor Arrays Failure\r\nDescription and Detection','Fabrice Couderc','','Fabrice Couderc','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5231/m_D0note5231-SCAfailure.pdf','',2006,9,1,2453980,2006,10,9,2454018),(5232,'W and Z Production at the Tevatron','Michiel Sanders','Presented at the XXXIII International Conference on High Energy Physics, \r\nMoscow, Russian Federation, 26th July -- 2nd August 2006.','Michiel Sanders','WZ','PUB','D0_PRIVATE','OTHER','$D0_PRI/5232/m_proc_D0note.pdf','',2006,9,5,2453984,2006,9,7,2453986),(5233,'Top quark production and decay poperties at the Tevatron','M.Weber for CDF and D0','HCP 2006 proceedings','MIchele Weber','TOP','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5233/m_5233_hcp2006_proc_top.pdf','',2006,9,5,2453984,2006,9,7,2453986),(5234,'Measurement of $\\sigma(p\\bar{p}\\rightarrow t\\bar{t})$ in $\\tau+jets$ channel','Mikhail Arov, Dhiman Chakraborty','Conference Note for D0Note 5158, first version','Mikhail Arov','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5234/m_d0conf_ttbarljets_v12.ps','',2006,9,5,2453984,2006,9,8,2453987),(5235,'Combining Prescaled Triggers: a Practical Example','Frank Filthaut','This Note describes a practical implementation of the general recipe given in D0Note 4844','Frank Filthaut','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5235/m_trigger5235.pdf','',2006,9,6,2453985,2007,3,19,2454179),(5236,'Official D0 Monte Carlo Sample Catalogue','C.~Biscarat, S.~Muanza','','biscarat','MC','DOC','D0_PRIVATE','','','',2006,9,10,2453989,NULL,NULL,NULL,NULL),(5237,'First Single Muon Yield Results from Run IIb','D. Denisov, A. Popov, I. Vasilyev','First forward single muon yield results from Run IIb are presented along with yields dependence vs. luminosity','A. Popov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/5237/m_5237.pdf','',2006,9,10,2453989,2006,9,10,2453989),(5238,'Analyzing Layer Zero SiDet Cosmic Test Data','Lucian Ancu \r\nShaohua Fu \r\nAlexandre Leflat \r\nAlex Melnitchouk \r\nAndr\\\'e Sopczak \r\nDmitri Tsybychev \r\nAndreas Wenger ','','Alex Melnitchouk','SILICON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5238/m_d0note5238.LayerZeroCosmicsAtSidet.ps','',2006,9,11,2453990,2006,9,11,2453990),(5239,'Measurement of Branching Fraction Br( Bs -> Ds(*) Ds(*))','I. Bertram, G. Borissov, J. Walder','','James Walder','B_PHYSICS','PUB','D0_PRIVATE','OTHER','$D0_PRI/5239/m_Br_DsDs_pub_5239_v1_02.pdf','',2006,9,13,2453992,2007,6,22,2454274),(5240,'Studies of Taggability vs. nPV for p17','Ioana Anghel, Cecilia Gerber, Lisa Shabalina, Timour Ten','','Ioana Anghel','','','D0_PRIVATE','','$D0_PRI/5240/m_Taggability_vsnPV_N5240.pdf','',2006,9,14,2453993,2006,9,29,2454008),(5241,'Calculation of the D0 Luminosity in the Presence of Halo and Backgrounds','Brendan Casey, Yuji Enari, and Richard Partridge','','Richard Partridge','ALGORITHMS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5241/m_LumCalc_d0note5241.pdf','',2006,9,19,2453998,2006,9,19,2453998),(5242,'Study of Luminosity Dependence of\r\nForward Muon Detectors Efficiency\r\n','G. Alexeev, D.Denisov, Yu.Yatsunenko ','Study of forward muon detectors efficiency vs Tevatron luminosity in the range (56-153)*10E30 is described','Yatsunenko Yu.','MUON','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5242/m_fme5242.doc','',2006,9,19,2453998,2006,9,19,2453998),(5243,'Luminosity Calculation for the Run IIa Blinded Z cross sections','Schellman, Casey, Enari, Fox, Harder, Hays, Hobbs, Illingworth, Partridge, Snow','','Heidi Schellman','WZ','DOC','D0_PRIVATE','OTHER','$D0_PRI/5243/m_5243_lumicalc_v06.pdf','',2006,9,23,2454002,2006,10,25,2454034),(5244,'Measurement of the ttbar Production Cross Section at sqrt(s) = 1.96 TeV in the Lepton+Jets Final State Using Soft Muon Tagging on the First 360 pb^-1 of D? Run II Data','F. Chevalier, S. Crepe-Renaudin ','Analysis note','Elizaveta Shabalina','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','','',2006,9,27,2454006,NULL,NULL,NULL,NULL),(5245,'Artificial neural network for photon selection','Dmitry Bandurin','The note describes a neural network for photon selection.','Dmitry Bandurin','ALGORITHMS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5245/m_photon_ann.pdf','',2006,9,29,2454008,2006,10,4,2454013),(5246,'Search for Neutral Higgs Bosons at High tan(beta) in the b(h/H/A)-->btautau Channel','A. Goussiou, Y. Pogorelov, P. Svoisky','','Anna Goussiou','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,10,2,2454011,NULL,NULL,NULL,NULL),(5247,'Measurement of the Z rapidity distribution using Di-EM events with 0.4fb-1 of data','A. Baden, S. Eno, C. Jarvis, J. Mans, T. Toole, M. Yan','Detailed discription of the Z rapidity analysis.','T. Toole','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5247/m_d0note5247_Zrapidity.ps.gz','',2006,10,3,2454012,2006,12,15,2454085),(5248,'Jet energy scale at D0 Run II using p17 data (version 7.1)','Many','','Aurelio Juste','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','','',2006,10,4,2454013,NULL,NULL,NULL,NULL),(5249,'Measurement of the ttbar Production Cross-Section at sqrt{s}=1.96 TeV in the Lepton+Jets Final State using a Topological Method on 1 fb of D0 Data','John Brunelle, DooKee Cho, Ulrich Heinz, Meenakshi Narain, Su-Jung Park, Marc-Andre Pleier, Elizaveta Shabalina','p17 top coss section measurements in l+jets channel using Topological Method.','DooKee Cho','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5249/m_5249.pdf','',2006,10,4,2454013,2007,1,18,2454119),(5250,'Measuring Reconstruction*Jet-ID efficiencies using the tag and probe method in p17','Bernard Andrieu, Amnon Harel, Helio Nogima, Murilo Rangel, Mikko Voutilainen','Using the tag and probe method, the p17 Jet-ID inefficiencies are studied in gamma+jet and dijet samples.','Murilo Rangel','ALGORITHMS','PHYS','D0_PRIVATE','','$D0_PRI/5250/m_jetideff.pdf','',2006,10,5,2454014,2007,12,17,2454452),(5251,'B Hadron Properties with D0 Detector (ICHEP 2006 Proceedings)','Andrei Nomerotski','writeup for ICHEP2006 Proceedings','Andrei Nomerotski','','CONF','D0_PRIVATE','','$D0_PRI/5251/m_ICHEP2006_Nomerotski_final.pdf','',2006,10,8,2454017,2006,10,18,2454027),(5252,'Search for Neutral Higgs in the Decay Channel Tau(mu) Tau with p17 Data','M. Owen, S. Soldner-Rembold, X. Goddon','','Mark Owen','NEW','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5252/m_Htt_MuTau_ana_note_5252_v1-1.pdf','',2006,10,9,2454018,2007,4,16,2454207),(5253,'An Undergraduate Lab Experiment Measuring W and Z Properties with D0 Data','N. Fatemi-Ghomi, G. Hesketh, M. Owen, S. Soldner-Rembold, P. Waller','','Mark Owen','WZ','DOC','D0_PRIVATE','OTHER','$D0_PRI/5253/m_d0note5253.pdf','',2006,10,9,2454018,2007,11,12,2454417),(5254,'A Search For Bs Oscillations Using Bs->Ds mu X (Ds->K0_S K) Decays','G. Borissov, S. Burdin, B.C.K. Casey, D. Krop, R.Van Kooten','','Dan Krop','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5254/m_bsmixksk_Conf5254.pdf','',2006,10,9,2454018,2006,10,24,2454033),(5255,'Radiation Damage to Scintillator in D0 Luminosity Monitor','B. Casey, Y. Enari, K. DeVaughan2, R. Partridge, S. Yacoob','','Yuji Enari','DAQ_ELECTRONICS','','D0_PRIVATE','OTHER','$D0_PRI/5255/m_v06_rad_damage.pdf','',2006,10,10,2454019,2006,11,29,2454069),(5256,'Measurement of the Charge Signed Photon-Lepton Rapidity Difference in W$\\gamma$ Events','Andrew Askew, Adam Lyon, Greg Pawloski','','Pawloski','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5256/m_Wgamma.pdf','',2006,10,13,2454022,2007,11,8,2454413),(5257,'Measurement of the ttbar Production Cross Section in ppbar Collisions at sqrt(s)=1.96 TeV\r\nUsing Soft Muon b-tagged Lepton+Jets Events','Florent Chevallier, Sabine Crepe-Renaudin.','','Sabine Cr?p?-Renaudin','TOP','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,10,16,2454025,NULL,NULL,NULL,NULL),(5258,'Defining p-value with systematic effects, and using spectral distributions. ','Supriya Jain, Harrison B. Prosper','','Supriya Jain','NEW','ANAL','D0_PRIVATE','','$D0_PRI/5258/m_5258_goodness_of_fit.pdf','',2006,10,16,2454025,2006,10,20,2454029),(5259,'Some thoughts on S/\\sqrt{B} as a measure of significance','Supriya Jain, Harrison B. Prosper','','Supriya Jain','NEW','ANAL','D0_PRIVATE','','$D0_PRI/5259/m_5259_significance.pdf','',2006,10,16,2454025,2006,10,20,2454029),(5260,'Analysis Optimizations using Bayes factors','Supriya Jain, Harrison B. Prosper','','Supriya Jain','NEW','ANAL','D0_PRIVATE','','$D0_PRI/5260/m_5260_bayesfactor.pdf','',2006,10,16,2454025,2006,10,20,2454029),(5261,'Weighting of data events to extract the fraction of signal events ','Supriya Jain, Harrison B. Prosper','','Supriya Jain','NEW','ANAL','D0_PRIVATE','','','',2006,10,16,2454025,NULL,NULL,NULL,NULL),(5262,'Measurement of the top-antitop quark pair production cross section in proton-antiproton cosslisions at sqrt{s}=1.96 TeV in the lepton+jets final state','John Brunelle, DooKee Cho, Ulrich Heintz, Meenakshi Narain, Su-Jung Park, Marc-Andre Pleier, Elizaveta Shabalina, Michele Weber','','Ulrich Heintz','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5262/m_5262.pdf','',2006,10,18,2454027,2007,1,18,2454119),(5263,'Measurement of the Lambda-b lifetime using semileptonic decay','M. Lewin, G. Borissov','','G. Borissov','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,10,18,2454027,NULL,NULL,NULL,NULL),(5264,'Tracking efficiency study','Alexander Rakitin','','Alexander Rakitin','ALGORITHMS','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5264/m_treff_5264.pdf','',2006,10,21,2454030,2006,10,21,2454030),(5265,'Optimization of the Secondary Vertex Tagger in p17 ','Yvonne Peters, Herb Greenlee, Andy Haas, Ariel Schwartzman','','Yvonne Peters','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5265/m_SVTaggerOptnote.pdf','',2006,10,22,2454031,2006,10,25,2454034),(5266,'UCLiD: A Utility for Calculating Likelihood Discriminants','Wade Fisher, Joseph Haley, Dale Johnston','','Wade Fisher','SOFTWARE_INFRA','DOC','D0_PRIVATE','OTHER','$D0_PRI/5266/m_uclidNote.pdf','',2006,10,23,2454032,2006,10,27,2454036),(5267,'Search for Squarks and Gluinos in the Jets + Missing E_T \r\nTopology with the DO Detector','Patrice Verdier, Laurent Duflot, Jean-Francois Grivaz','analysis note describing the p14 pass2 analysis using 310pb-1 published in Physics Letters B.2006.638.119-127','Patrice Verdier','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5267/m_sqgl_analysisNote.ps.gz','',2006,10,25,2454034,2006,10,25,2454034),(5268,'Study of pp(bar) -> Z/gam* -> ee and mumu event yields as\r\na luminosity cross check','J.D. Hobbs, T. Nunnemann, R. Van Kooten, on Behalf of the Z analysts','For internal D0 use only','Rick Van Kooten','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5268/m_5268_test_v7.pdf','',2006,10,26,2454035,2006,10,27,2454036),(5269,'Measurement of pp->mumu yield in the Z mass region for D0 Run IIa data','Angela Bellavance, Kristian Harder, Carsten Hensel, Gavin Hesketh, Norik Khalatyan, Alexandre Lobodenko, Dmitry Onoprienko, Heidi Schellman','','Kristian Harder','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5269/m_zmumu_lumicheck_note_5269_v2_10.pdf','',2006,10,26,2454035,2006,10,31,2454040),(5270,'Measurement of Z->e+e- Event Yields in Run IIa at D-Zero','Harald Fox, Jonathan Hays, Robert Illingworth, Heidi Schellman, Joe Steele, Mike Strang','','Jonathan Hays','WZ','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5270/m_5270_zee_xsec_1_4.pdf','',2006,10,26,2454035,2007,1,11,2454112),(5271,'Measurement of Multijet Production in Events with W decaying into mu nu using p17','Martin Erdmann, Steffen Kappler, Matthias Kirsch, Daniel Lenz, Jan Steggemann','','Steffen Kappler','TOP','','D0_PRIVATE','OTHER','$D0_PRI/5271/m_note5271.pdf','',2006,10,27,2454036,2006,10,27,2454036),(5272,'Measurement of the Charge-Signed Rapidity Difference in $W\\gamma$ Events','Andrew Askew, Adam Lyon, Greg Pawloski','','Gregory Pawloski','WZ','CONF','D0_PRIVATE','','','',2006,10,28,2454037,NULL,NULL,NULL,NULL),(5273,'A Comparison of Monte-Carlo Distributions for Z boson production at the Tevatron.','Sahal Yacoob, Jonathon Hays, Heidi Schellman','','Sahal Yacoob','WZ','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5273/m_5273_MCBoson.pdf','',2006,10,28,2454037,2006,10,29,2454038),(5274,'Time-Integrated Charge Asymmetries at D0','Elliott Cheu','Beauty06 Conference Proceeding.','Elliott Cheu','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5274/m_charge_asymmetry_5274_echeu.pdf','',2006,10,30,2454039,2006,10,30,2454039),(5275,'A Search for ZH->l^+l^-bb Production at D0 with 0.84-0.92 pb-1 Integrated Luminosity','Shaohua Fu, Andy Haas','','Shaohua Fu','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2006,10,31,2454040,NULL,NULL,NULL,NULL),(5276,'Test of mysql version of D0Notes running on d0www','A.M.Jonckheere, Glenn Cooper','','Alan Jonckheere','Ôo','MEMO','PUBLIC','TEXT','$D0_PRI/5276/m_5276-v2.txt','',2006,10,31,2454040,2006,11,15,2454055),(5277,'Search for Physics beyond the Standard Model at the Tevatron','Jean-Francois Grivaz','Proceedings of SUSY06, UC Irvine, 12-17 June 2006','J.-F. Grivaz','Ôo','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5277/m_SUSY06.ps','',2006,11,1,2454041,2006,11,1,2454041),(5278,'D0 W Mass Sensitivity to Trigger Effects','Tim Andeen\r\nJan Stark','','Tim Andeen','Ôo','MEMO','D0_PRIVATE','POSTSCRIPT','','',2006,11,1,2454041,NULL,NULL,NULL,NULL),(5279,'D0 W Mass Sensitivity to Trigger Effects','Tim Andeen\r\nJan Stark','','Tim Andeen','Ôo','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5279/m_5279_wmass_trigeff_v1.ps','',2006,11,1,2454041,2006,11,1,2454041),(5280,'Some Searches for New Physics with the D0 Detector','E. Kajfasz for the D0 Collaboration','contribution to the proceedings of the XXXIII International Conference on High Energy Physics (ICHEP\'06)','Eric Kajfasz','Ôo','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5280/m_eric_kajfasz_5280_ichep06.pdf','',2006,11,3,2454043,2006,11,3,2454043),(5281,'Tevatron SUSY Results','Elemer Nagy for the CDF and D0 Collaborations','Recent results on searches for SUSY particles at the Tevatron are presented at the conference on \"Physics at LHC\" Cracow, 3-8 July 2006.','Elemer Nagy','Ôo','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5281/m_Note5281_PhLHC06_TevSUSY.ps','',2006,11,6,2454046,2006,11,6,2454046),(5282,'Higgs and New Phenomena Jets+met triggers :\r\nL3 design and commissioning in v15 RunIIb trigger list','Florent Lacroix, Christophe Ochando, Arnaud Duperrin, Patrice Verdier','','lacroix','Ôo','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5282/m_L3jetsmet.ps','',2006,11,13,2454053,2007,1,8,2454109),(5283,'Forward Preshower System Calibration and Energy Saturation Study','Ioannis Katsanos, John Parsons, Abid Patwa','This note describes a series of studies performed to calibrate and\r\nevaluate the energy response of the Forward Preshower (FPS) detector.','Ioannis Katsanos','PRESHOWER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5283/m_fps_note_5283_calibration_and_energy_saturation_study.pdf','',2006,11,14,2454054,2007,1,18,2454119),(5290,'Monte Carlo Calibration of D0 Level 1 Calorimeter in TrigSim','Fabrice Tissandier, Arnaud Duperrin, Jan Stark, Patrice Verdier, Marco Verzocchi','','Fabrice Tissandier','CALORIMETER','DOC','D0_PRIVATE','','$D0_PRI/5290/m_l1cal_mc_calibration_v1.pdf','',2006,11,16,2454056,2007,3,5,2454165),(5285,'Search for Single Top Quark Production in 1 fb-1 of Data','E. Aguilo, P. Baringer, A. Bean, C. Belanger-Champagne, J.A. Benitez, E.E. Boos, R. Brock, V. Bunichev, K. Chan, L. Christofek, Y. Coadou, L.V. Dudko, M. Erdmann, T. Gadfort, A. Garcia-Bellido, C. Gerber, D. Gillberg, G. Gutierrez, P. Gutierrez, A.P. Heinson, U. Heintz, S. Herrin, S. Jabeen, S. Jain, A. Juste, S. Kappler, D. Kau, G. Kertzscher, M. Kirsch, L. Li, J. Mitrevski, R. Moore, M. Narain, D. O\'Neil, M. Pangilinan, J. Parsons, M. Perfilov, C. Potter, H.B. Prosper, R. Schwienhorst, E. Shabalina, J. Steggemann, T. Tim, C. Tully, M. Vetterli, B. Vachon, G. Watts, M. Weber\r\n','','Ann Heinson','TOP','ANAL','D0_PRIVATE','','$D0_PRI/5285/m_singletop_selection_v1.35_d0note_5285.pdf','',2006,11,16,2454056,2007,3,8,2454168),(5286,'Using Boosted Decision Trees to Search for Single Top Quarks in 1 fb^-1 of Data','E. Aguilo, P. Baringer, A. Bean, C. Belanger-Champagne, J.A. Benitez, E.E. Boos, R. Brock, V. Bunichev, K. Chan, L. Christofek, Y. Coadou, L.V. Dudko, M. Erdmann, T. Gadfort, A. Garcia-Bellido, C. Gerber, D. Gillberg, G. Gutierrez, P. Gutierrez, A.P. Heinson, U. Heintz, S. Herrin, S. Jabeen, S. Jain, A. Juste, S. Kappler, D. Kau, G. Kertzscher, M. Kirsch, L. Li, J. Mitrevski, R. Moore, M. Narain, D. O\'Neil, M. Pangilinan, J. Parsons, M. Perfilov, C. Potter, H.B. Prosper, R. Schwienhorst, E. Shabalina, J. Steggemann, T. Tim, C. Tully, M. Vetterli, B. Vachon, G. Watts, M. Weber','','Ann Heinson','TOP','ANAL','D0_PRIVATE','OTHER','/RunII/home/dgillber/m_singletop_DT_fall2006.pdf','',2062,11,16,2474510,2007,8,24,2454337),(5287,'Search for Single Top Quark Production using the Matrix Element Analysis Technique in 1 fb^-1 of Data','E. Aguilo, P. Baringer, A. Bean, C. Belanger-Champagne, J.A. Benitez, E.E. Boos, R. Brock, V. Bunichev, K. Chan, L. Christofek, Y. Coadou, L.V. Dudko, M. Erdmann, T. Gadfort, A. Garcia-Bellido, C. Gerber, D. Gillberg, G. Gutierrez, P. Gutierrez, A.P. Heinson, U. Heintz, S. Herrin, S. Jabeen, S. Jain, A. Juste, S. Kappler, D. Kau, G. Kertzscher, M. Kirsch, L. Li, J. Mitrevski, R. Moore, M. Narain, D. O\'Neil, M. Pangilinan, J. Parsons, M. Perfilov, C. Potter, H.B. Prosper, R. Schwienhorst, E. Shabalina, J. Steggemann, T. Tim, C. Tully, M. Vetterli, B. Vachon, G. Watts, M. Weber','','Ann Heinson','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5287/m_5287.pdf','',2006,11,16,2454056,2007,5,18,2454239),(5288,'Using Bayesian Neural Networks to Search for Single Top Quarks in 1 fb^-1 of Data','E. Aguilo, P. Baringer, A. Bean, C. Belanger-Champagne, J.A. Benitez, E.E. Boos, R. Brock, V. Bunichev, K. Chan, L. Christofek, Y. Coadou, L.V. Dudko, M. Erdmann, T. Gadfort, A. Garcia-Bellido, C. Gerber, D. Gillberg, G. Gutierrez, P. Gutierrez, A.P. Heinson, U. Heintz, S. Herrin, S. Jabeen, S. Jain, A. Juste, S. Kappler, D. Kau, G. Kertzscher, M. Kirsch, L. Li, J. Mitrevski, R. Moore, M. Narain, D. O\'Neil, M. Pangilinan, J. Parsons, M. Perfilov, C. Potter, H.B. Prosper, R. Schwienhorst, E. Shabalina, J. Steggemann, T. Tim, C. Tully, M. Vetterli, B. Vachon, G. Watts, M. Weber','','Ann Heinson','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5288/m_BNN_note.pdf','',2006,11,16,2454056,2007,5,1,2454222),(5289,'A Neural Network Search for Single Top Quarks in 1 fb^-1 of Data','E. Aguilo, P. Baringer, A. Bean, C. Belanger-Champagne, J.A. Benitez, E.E. Boos, R. Brock, V. Bunichev, K. Chan, L. Christofek, Y. Coadou, L.V. Dudko, M. Erdmann, T. Gadfort, A. Garcia-Bellido, C. Gerber, D. Gillberg, G. Gutierrez, P. Gutierrez, A.P. Heinson, U. Heintz, S. Herrin, S. Jabeen, S. Jain, A. Juste, S. Kappler, D. Kau, G. Kertzscher, M. Kirsch, L. Li, J. Mitrevski, R. Moore, M. Narain, D. O\'Neil, M. Pangilinan, J. Parsons, M. Perfilov, C. Potter, H.B. Prosper, R. Schwienhorst, E. Shabalina, J. Steggemann, T. Tim, C. Tully, M. Vetterli, B. Vachon, G. Watts, M. Weber','','Ann Heinson','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5289/m_nn_single_top_v2_2_5289.pdf','',2006,11,16,2454056,2007,8,6,2454319),(5291,'Probability Density Estimation by Range Searching','M. Erdmann, S. Kappler, M. Kirsch,D. Lenz, J. Steggemann','','S. Kappler','TOP','DOC','D0_PRIVATE','OTHER','$D0_PRI/5291/m_note5291.pdf','',2006,11,20,2454060,2006,11,20,2454060),(5292,'A Secondary Vertex b-Tagging Tool for the Level-3 Trigger','Tim Scanlon\r\nStephen Robinson','','Tim Scanlon','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5292/m_5292_l3secvertex.ps','',2006,11,20,2454060,2007,3,1,2454161),(5293,'Note number is not needed.','None','None','Ann Heinson','TOP','ANAL','D0_PRIVATE','OTHER','','',2006,11,22,2454062,NULL,NULL,NULL,NULL),(5565,'Generator Level Reweighting of pT of Z Boson ','Mansoora Shamim, Tim Bolton','','Mansoora Shamim','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5565/m_d0note_5565_3.pdf','',2008,1,19,2454485,2008,1,30,2454496),(5566,'Search for ZH production in the eebb channel with the Run IIb data','Taka Yasuda','','Taka Yasuda','@Tˆ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5566/m_D0note5566_p20_zh_electron_v1.21.pdf','',2008,1,22,2454488,2008,2,28,2454525),(5567,'Wgamma Production: Measurement of the Charge-Signed Photon-Lepton Rapidity Difference and Anomalous WWgamma Coupling Limits','Andrew Askew, Adam Lyon, Greg Pawloski','','Andrew Askew','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5567/m_d0note2.0.ps','',2008,1,22,2454488,2008,1,30,2454496),(5294,'Combined ttbar Production Cross Section at sqrt{s}=1.96 TeV \r\nin the Lepton+Jets channel using event kinematics','N.Gollub, K.Harder, E.Shabalina','Combination note for PRD','E. Shabalina','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5294/m_combo_topoljets_p14_5294.pdf','',2006,11,25,2454065,2007,8,22,2454335),(5295,'Study of the Level 3 Electron Likelihood, Calorimeter Isolation and Design of the Single Electron Triggers for the V15 Triggerlist','Marc Hohlfeld','','Marc Hohlfeld','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5295/m_d0note5295_l3electrons_for_v15.pdf','',2006,11,27,2454067,2006,12,13,2454083),(5296,'Search for Excited Electrons with the Run IIa Data Set','Volker Vorwerk,\r\nThomas Hebbeker, \r\nArnd Meyer','','Volker Vorwerk, Thomas Hebbeker, Arnd Meyer','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5296/m_5296_estar_v1.0.pdf','',2006,11,28,2454068,2007,3,6,2454166),(5297,'Upgrade of the D0 Luminosity Monitor Readout System','John Anderson, Lloyd Bridges, Brendan Casey, Yuji Enari, Johnny Green, Marvin Johnson, Rick Kwarciany, Chyi-Chiang Miao, Richard Partridge, Hwi Dong Yoo and Jigang Wang','Conference record of IEEE 2006 NSS.','Yuji Enari','DAQ_ELECTRONICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5297/m_v06_ele.pdf','',2006,11,29,2454069,2006,11,29,2454069),(5298,'Search for the Associated Production of Chargino and Neutralino in a e + mu + l Final State','V. Buescher, H. Fox, O. Mundal, M. Titov','','Maxim Titov','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5298/m_TRILEPTON-5298-PHYS.pdf','',2006,12,1,2454071,2007,11,28,2454433),(5299,'Search for Sneutrino resonance in the e+mu final states in RPV SUSY at D0','Xuebing Bu, Liang Han, Yanwen Liu and Hang Yin','','Xuebing Bu','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','/RunII/home/xbbu/5299/m_p17_RPV_note5299_v1.1.ps','',2006,12,3,2454073,2007,7,10,2454292),(5300,'A Compilation of MCFM v5.1 Cross Sections','Steve Muanza','','Steve Muanza','MC','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5300/m_mcfm_D0Note5300_v1.0.pdf','',2006,12,4,2454074,2006,12,16,2454086),(5301,'First Measurement of the Bs Semileptonic Branching Ratio to an Orbitally Excited Ds** State, Br(Bs->Ds1(2536) mu nu X)','Jason Rieger, Rick VanKooten','','Jason Rieger','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5301/m_Dstst12_v1p0.ps','',2006,12,6,2454076,2007,1,12,2454113),(5302,'Comments on CP violation measurements in the mixing of $B^0$ and $B^0_s$','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5302/m_CPV_measurements.pdf','',2006,12,8,2454078,2006,12,8,2454078),(5303,'Tau Energy Correction in Monte Carlo','C. Galea, S. de Jong, S. Protopopescu','','Cristina Galea','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5303/m_TauEnergyScale_D0Note_5303.pdf','',2006,12,11,2454081,2006,12,11,2454081),(5304,'Tau Identification at DZero','Cristina Galea','Presented at the conference ``Physics at LHC\'\', 3-8 July 2006, Polish Academy of Arts and Sciences, Krakow, Poland','Cristina Galea','ALGORITHMS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5304/m_LHC06_tauID_proceedings.pdf','',2006,12,11,2454081,2006,12,11,2454081),(5305,'Measurements of Relative Branching ratios for several exclusive B Decays with Psi(2S) and J/psi in the final state.','Ralf Bernhard and Christophe Salzmann','','Ralf Bernhard','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5305/m_bs_psiphi_v0.0_5305.pdf','',2006,12,13,2454083,2007,5,7,2454228),(5306,'D0 Jet reconstruction using Track+Calorimeter Information','Prolay Mal, Anna Goussiou and Aurelio Juste','','Prolay Mal','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5306/m_d0note_5306.ps','',2006,12,15,2454085,2006,12,15,2454085),(5307,'caf_trigger: a Framework for Trigger Studies in CAFE','Kevin Chan','','Kevin Chan','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5307/m_caf_trigger_doc_5307.pdf','',2006,12,18,2454088,2006,12,18,2454088),(5308,'caf_trigger: a Framework for Trigger Studies in CAFE','Kevin Chan','','Kevin Chan','TRIGGER','DOC','D0_PRIVATE','OTHER','','',2006,12,18,2454088,NULL,NULL,NULL,NULL),(5309,'Systematics and Limit Calculations','Wade Fisher','','Wade Fisher','NEW','DOC','PUBLIC','OTHER','$D0_PRI/5309/m_note5309.pdf','',2006,12,28,2454098,2006,12,28,2454098),(5310,'Bayesian Learning of Neural Networks for Signal/Background Discrimination in Particle Physics','Michael Pogwizd, Laura Jane Elgass, Pushpalatha C. Bhat','','Laura Jane Elgass','Ôo','','D0_PRIVATE','','','',2006,12,26,2454096,NULL,NULL,NULL,NULL),(5311,'Inclusive Single muon Trigger Efficiency Study for RunIIa','SungWoo YOUN\r\nBrendan Casey','','SungWoo YOUN','B_PHYSICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5311/m_single_muon_eff_1.0.pdf','',2006,12,28,2454098,2007,1,23,2454124),(5312,'Search for squarks and gluinos\r\nin events with jets and missing transverse energy\r\nwith the DO detector using 1 fb-1 of RunIIa data','J.-F. Grivaz, L. Duflot, T. Millet, P. Verdier','Preliminary results for Winter 2007 conferences','verdier','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5312/m_sqgl_confNote_v1.7.pdf','',2006,12,31,2454101,2007,8,31,2454344),(5313,'Measurement of the W boson helicity in top quark decays using 1 fb-1 of RunII data','Jessica Leveque, Ken Johns, Erich Varnes','','Erich Varnes','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5313/m_wpol1fb_note5313_v2.6.pdf','',2007,1,2,2454103,2008,2,28,2454525),(5314,'Flavor Tagging at Tevatron incl. calibration and control','Tania Moulik','Writeup for Beauty2006 Proceedings','Tania Moulik','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5314/m_note5314_beauty06.pdf','',2007,1,5,2454106,2007,1,5,2454106),(5315,'SAM v5 to v7 transition of the MC Sample Catalogue','C.~Biscarat, S.~Muanza','','biscarat','MC','DOC','D0_PRIVATE','','','',2007,1,8,2454109,NULL,NULL,NULL,NULL),(5316,'Calorimeter Calibration: Online Calibration Procedures and Online/Offline Database Design','Ursula Bassler','','Ursula Bassler','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5316/m_caldb.pdf','',2007,1,8,2454109,2007,5,25,2454246),(5317,'Study of Single Electron and Acoplanarity Triggers in Run IIB','Marc Hohlfeld','','Marc Hohlfeld','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5317/m_d0note5317_l1calstudies.pdf','',2007,1,8,2454109,2007,1,8,2454109),(5318,'Bs Mixing at the D0 Experiment','T. Moulik, A. Nomerotski','Writeup for ICHEP 2006 Proceedings','Tania Moulik','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5318/m_note5318_ichep06.pdf','',2007,1,11,2454112,2007,1,11,2454112),(5319,'Search for squarks and gluinos in the Jets+Tau+MET signature\r\n','C. Biscarat, P. Verdier','','biscarat','NEW','PHYS','D0_PRIVATE','','','',2007,1,12,2454113,NULL,NULL,NULL,NULL),(5320,'Forward Muon Yields from September 2005 to December 2006','Dmitri Denisov, Sergey Kulikov','','Sergey Kulikov','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/5320/m_D0Note5320_v1.pdf','',2007,1,14,2454115,2007,2,20,2454152),(5321,'Study of ID Efficiencies in Monte Carlo at High Instantaneous Luminosity','Marc Hohlfeld','','Marc Hohlfeld','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5321/m_d0note5321_eleathighlumi.pdf','',2007,1,15,2454116,2007,1,15,2454116),(5322,'Level 1 Missing Transverse Energy and Dilepton+ETmiss Triggers','Marc Hohlfeld','','Marc Hohlfeld','TRIGGER','DOC','D0_PRIVATE','OTHER','','',2007,1,15,2454116,NULL,NULL,NULL,NULL),(5323,'gmbrowser User Manual','Elliott Cheu','User\'s guide from gmbrowser program.','Elliott Cheu','ONLINE','DOC','PUBLIC','POSTSCRIPT','$D0_PRI/5323/m_gmbrowser_v1.2.pdf','',2007,1,15,2454116,2007,6,4,2454256),(5324,'Efficiency of the Data Quality Calorimeter Flags','Su-Jung Park, Michael Begel','','Su-Jung Park','TOP','DOC','D0_PRIVATE','OTHER','$D0_PRI/5324/m_5324_caldq.pdf','',2007,1,18,2454119,2007,2,9,2454141),(5325,'Reweighting of the fragmentation function for the D0 Monte Carlo','Y. Peters, M. Begel, K. Hamacher & D. Wicke','','Yvonne Peters','MC','PHYS','D0_PRIVATE','','$D0_PRI/5325/m_5325_FragReweighting.pdf','',2007,1,19,2454120,2007,1,30,2454131),(5326,'Search for the Associated Production of Chargino and Neutralino in the mu mu lep Final State','Volker Buescher, Harald Fox, Olav Mundal','','Olav Mundal','NEW','PHYS','D0_PRIVATE','','$D0_PRI/5326/m_5326_mumul_v1.pdf','',2007,1,21,2454122,2007,2,23,2454155),(5327,'hbb Limit Setting Tool','Fabrice Couderc','This note describes the tool used to set the limit in the hbb analysis to handle unknown background level. Some comparisons between this tool and mcLimit (TLimit) are inluded.','Fabrice Couderc','NEW','DOC','D0_PRIVATE','OTHER','$D0_PRI/5327/m_D0Note5327_hbbLimit.pdf','',2007,1,24,2454125,2007,2,5,2454137),(5328,'Matching of Offline Electrons to Trigger Objects using caf_trigger','Marc Hohlfeld','','Marc Hohlfeld','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5328/m_d0note5328_caf_trigger_emmatching.pdf','',2007,1,29,2454130,2007,1,30,2454131),(5329,'ORing single muon triggers in p17 data','Philippe Calfayan','','Philippe Calfayan','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5329/m_calfayan_singlemuor_5329.pdf','',2007,1,30,2454131,2008,1,30,2454496),(5330,'Correction in inclusive bin cross-sections for Alpgen MC samples.','P. Renkel','','Peter Renkel','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5330/m_alpgen_bug.ps','',2007,1,31,2454132,2007,2,1,2454133),(5331,'Search for Neutral Higgs Boson Production in\r\nthe Decay h to tau(mu) tau\r\nwith the DO Detector at sqrt{s}=1.96 TeV','Mark Owen and Stefan Soldner-Rembold','','Mark Owen','NEW','CONF','PUBLIC','POSTSCRIPT','$D0_PUB/5331/m_Htt_MuTau_5331conf_v1-3.pdf','',2007,2,2,2454134,2007,3,20,2454180),(5332,'Search for the Higgs boson in $H \\rightarrow W W^* \\rightarrow \\mu, \\tau_{had}$ decays with 1150 $pb^{-1}$ at DO in Run II','Ralf Bernhard, Volker Büscher, Harald Fox, Karl Jakobs, Björn Penning, Maxim Titov','','BJörn Penning','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5332/m_5332_Hwwmutau.pdf','',2007,2,3,2454135,2007,12,10,2454445),(5333,'Design and Analysis for the Carbon Fiber Composite Support Structure for Layer 0 of the Silicon Micro Tracker ','C. H. Daly, Department of Mechanical Engineering, University of Washington, Seattle','','Henry Lubatti','SILICON','PUB','D0_PRIVATE','OTHER','','',2007,2,6,2454138,NULL,NULL,NULL,NULL),(5334,'Timing Studies on CAB Nodes','Adam Lyon','','Adam Lyon','SOFTWARE_INFRA','DOC','D0_PRIVATE','OTHER','$D0_PRI/5334/m_5334.pdf','',2007,2,7,2454139,2007,2,7,2454139),(5335,'Measurement of the ttbar Production Cross-Section at sqrt{s}=1.96 TeV \r\nin the Lepton+Jets Final State using Neural Network b-tagging algorithm on 1 fb(-1} of D0 Data','DooKee Cho, Ulrich Heintz, Meenakshi Narain, Su-Jung Park, Richard Patridge,Marc-Andre Pleier, Elizaveta Shabalina, Suharyo Sumowidagdo, Michele Weber, Hwidong Yoo','For Spring conference 2007','DooKee Cho','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5335/m_note_5335_ttbar_ljets_v0.7.pdf','',2007,2,8,2454140,2007,5,29,2454250),(5336,'Decay Length Resolution Studies: Application to B_s Mixing and p17 Calibration','M.S. Anzelc, S. Burdin','This note describes the application of decay length resolution studies to B_s mixing, documents the p17 calibration, and describes the implementation of a new impact parameter tuning procedure.','Meghan Anzelc','B_PHYSICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5336/m_d0note5336_ResolutionStudies.pdf','',2007,2,9,2454141,2007,5,25,2454246),(5337,'Search for gluino pairs decaying into b quarks with the D0 detector at $\\sqrt{s}=$1.96 TeV in the Run IIA data','T. Millet, G.S. Muanza, P. Verdier','Preliminary results for Winter 2007 conferences','muanza','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2007,2,10,2454142,NULL,NULL,NULL,NULL),(5338,'Combining results from single top cross section measurements','Harrison B. Prosper, Supriya Jain','','Supriya Jain','TOP','PHYS','D0_PRIVATE','','','',2007,2,12,2454144,NULL,NULL,NULL,NULL),(5339,'Measurement of Kaon asymmetry','K.Holubyev,G.Borissov','','Holubyev Kostyantyn','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','/RunII/home/holubyev/notes/m_kasym_d0note5339_v2.ps','',2078,2,15,2480080,2008,1,31,2454497),(5340,'Search for New Heavy Charged Gauge Bosons Decaying in the Electron + MET Channel','Carsten Magass','','Carsten Magass','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5340/m_wprime_ana_5340.ps','',2007,2,16,2454148,2007,7,30,2454312),(5341,'``Search for Neutral Higgs Bosons at High tan(beta) in Multi-jet Events using p17 data\'\'','F. Couderc, B. Tuchming, G. Davis, P. Jonsson, S. Robinson, T. Scanlon','Search for Neutral Higgs bosons produced in association with $b$-quarks at high \\tanb\\ within the MSSM framework.','F. Couderc','Ôo','PHYS','D0_PRIVATE','OTHER','','',2007,2,19,2454151,NULL,NULL,NULL,NULL),(5342,'Combining results from single top cross section measurements using the BLUE method','E. Aguilo, P. Baringer, A. Bean, C. Belanger-Champagne, J.A. Benitez, E.E. Boos, R. Brock, V. Bunichev, K. Chan, L. Christofek, Y. Coadou, L.V. Dudko, M. Erdmann, T. Gadfort, A. Garcia-Bellido, C. Gerber, D. Gillberg, G. Gutierrez, P. Gutierrez, A.P. Heinson, U. Heintz, S. Herrin, S. Jabeen, S. Jain, A. Juste, S. Kappler, D. Kau, G. Kertzscher, M. Kirsch, L. Li, J. Mitrevski, R. Moore, M. Narain, D. O\'Neil, M. Pangilinan, J. Parsons, M. Perfilov, C. Potter, H.B. Prosper, R. Schwienhorst, E. Shabalina, J. Steggemann, T. Tim, C. Tully, M. Vetterli, B. Vachon, G. Watts, M. Weber','','Supriya Jain','TOP','CONF','D0_PRIVATE','','$D0_PRI/5342/m_5342_singletopCombination.pdf','',2007,2,20,2454152,2007,4,18,2454209),(5343,'A new expected upper limit for the rare decay $B_s^0 \\rightarrow \\mu^+ \\mu^-$ using 2fb$^{-1}$ of RunII data','Ralf Bernhard','','Ralf Bernhard','B_PHYSICS','ANAL','D0_PRIVATE','','$D0_PRI/5343/m_bs_mumu_v0.1_5343.pdf','',2007,2,22,2454154,2007,2,22,2454154),(5344,'A new upper limit for the rare decay $B_s^0 \\rightarrow \\mu^+ \\mu^-$ using 2fb$^{-1}$ of RunII data','Ralf Bernhard','','Ralf Bernhard','B_PHYSICS','CONF','D0_PRIVATE','','$D0_PRI/5344/m_BsMuMuConfFeb07_v0.0_5344.pdf','',2007,2,22,2454154,2007,3,12,2454172),(5345,'A search for $Z/\\gamma^*$ boson pair production decaying into four leptons','Chad Jarvis, Nick Hadley, Michiel Sanders','','Chad Jarvis','WZ','CONF','D0_PRIVATE','','$D0_PRI/5345/m_ZZconf_d0note5345.pdf','',2007,2,23,2454155,2007,7,5,2454287),(5346,'Measurement of the Top Quark Mass in Dilepton Events with Neutrino Weighting','O. Brandt, R. Kehoe, J. Meyer, A. Quadt, P. Renkel, C. Schwanenberger','Analysis note for the Winter Conferences 2007 (p17 data set)','Christian Schwanenberger','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5346/m_mtop_dilep_nuwt_note5346.pdf','',2007,2,24,2454156,2007,2,24,2454156),(5347,'Measurement of the Top Quark Mass in Dilepton Events with Neutrino Weighting','O. Brandt, R. Kehoe, J. Meyer, A. Quadt, P. Renkel, C. Schwanenberger','Conference note for the Winter Conferences 2007 (p17 data set)\r\nUpdated for Summer Conferences 2007 (JES uncertainty)','Christian Schwanenberger','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5347/m_mtop_dilep_nuwt_conf_note5347.pdf','',2007,2,24,2454156,2007,8,14,2454327),(5348,'Search for the Associated Production of Chargino and Neutralino in Final States with three Leptons','D0 Collaboration','','Mundal, Olav','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5348/m_5348_trilep_mumu_emu.pdf','',2007,2,25,2454157,2007,3,3,2454163),(5349,'Search for Excited Electrons in the eegamma Channel','Volker Vorwerk, Thomas Hebbeker, Arnd Meyer','','Arnd Meyer','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5349/m_5349_estar_v1.0.pdf','',2007,2,25,2454157,2007,3,7,2454167),(5350,'Measurement of the ttbar Production Cross-section at sqrt(s)=1.96 TeV in the Dimuon Final State Using p17 Data Set','U. Bassler, J. P. Konrath, C. Schwanenberger','Analysis note for Winter Conferences 2007','Christian Schwanenberger','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5350/m_5350_ttmumu_xs.pdf','',2007,2,25,2454157,2007,4,10,2454201),(5351,'Angular correlations of b-jets in p p-bar collisions','Folkert Koetsveld\r\nFrank Filthaut','','Folkert Koetsveld','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5351/m_FKoetsveld_bJetAngular_Note5351.pdf','',2007,2,26,2454158,2007,3,2,2454162),(5352,'Search for ZH -> nunubbbar at DØ','M. Petteni, G. Davies, T. Christoudias','','Gavin Davies','NEW','PHYS','D0_PRIVATE','','$D0_PRI/5352/m_zh_note_v19_2.pdf','',2007,2,26,2454158,2007,3,17,2454177),(5353,'A Search for Standard Model Higgs Boson in the Channel ZH -> nunubar bbbar at √s = 1.96 TeV at DØ','M. Petteni, G. Davies, T. Christoudias','','Gavin Davies','NEW','CONF','D0_PRIVATE','','$D0_PRI/5353/m_zh_conf_v22_2.pdf','',2007,2,26,2454158,2007,3,17,2454177),(5354,'Measurement of the top-antitop quark pair production cross\r\nsection in proton-antiproton collisions at $\\sqrt{s}=1.96$~TeV in the\r\nlepton+jets final state using event kinematics on 900~pb$^{-1}$ of \\dzero data\r\n','J. Brunelle, D.K. Cho, U. Heintz, M. Narain S-J. Park, M-A. Pleier, E. Shabalina, M. Weber','','DooKee Cho','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5354/m_conf_5354_ttbar_ljets.pdf','',2007,2,27,2454159,2007,5,29,2454250),(5355,'Measurement of the \\ttbar\\ pair production cross section in\r\n\\ppbar\\ collisions at $\\sqrt{s}=1.96$~TeV in the lepton+jets final state using lifetime tagging on 900~pb$^{-1}$ of D\\0 data','D.K. Cho, U. Heintz, M. Narain, S. Park, R. Patridge, M.\r\nPleier, S. Sumowidagdo, M. Weber, H. Yoo','','DooKee Cho','TOP','CONF','D0_PRIVATE','OTHER','','',2007,2,27,2454159,NULL,NULL,NULL,NULL),(5356,'Search for WH production with 1 fb-1 or Run IIa Data','M. Anastasoaie, G.Bernardi, Y. Enari, F. Filthaut, W. Fisher, V. Kaushik, J. Lellouch, M. Sanders, L. Sonnenschein, J. Yu','','Gregorio Bernardi','Ôo','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5356/m_5356_wh_moriond_original-ana-note.pdf','',2007,3,1,2454161,2007,10,18,2454392),(5357,'Search for WH production at sqrt(s)=1.96 Tev with 1 fb-1 of Data ','M. Anastasoaie, G.Bernardi, Y. Enari, F. Filthaut, W. Fisher, V. Kaushik, J. Lellouch, M. Sanders, L. Sonnenschein, J. Yu','','Gregorio Bernardi','Ôo','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5357/m_5357_wh_moriond_original-conf-note.pdf','',2007,3,1,2454161,2007,10,18,2454392),(5358,'Investigation of secondary vertex finding in muon-plus-jets data and simulation','Martin Erdmann, Steffen Kappler, Matthias Kirsch, Jan Steggemann','','Matthias Kirsch','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5358/m_vertex_note5358.pdf','',2007,3,2,2454162,2007,3,2,2454162),(5359,'Measurement of the ttbar Production Cross-section at sqrt{s}=1.96 TeV in Electron Muon Final States Using 1.05 fb-1','M. Arthaud, M. Besancon, S. Chakrabarti, F. Deliot, E. Shabalina, V. Sharyy','Result for winter 2007 conferences','F. Deliot','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5359/m_ttemu_confnote.pdf','',2007,3,5,2454165,2007,3,7,2454167),(5360,'Measurement of the ttbar Production Cross-section at\r\nsqrt{s}=1.96 TeV in Electron Muon Final States using p17 data set','M. Arthaud, M. Besancon, S. Chakrabarti, F. Deliot, E. Shabalina, V. Sharyy','analysis note for winter 2007 conferences','F. Deliot','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5360/m_llcsec_p17.pdf','',2007,3,5,2454165,2007,3,7,2454167),(5361,'A Second Look at Bayesian Neural Networks in the \r\nSearch for Single Top Quarks in 1 fb^{-1} of Data','E. Aguilo, P. Baringer, A. Bean, C. Belanger-Champagne, J.A. Benitez, E.E. Boos, R. Brock, V. Bunichev, K. Chan, L. Christofek, Y. Coadou, L.V. Dudko, M. Erdmann, T. Gadfort, A. Garcia-Bellido, C. Gerber, D. Gillberg, G. Gutierrez, P. Gutierrez, A.P. Heinson, U. Heintz, S. Herrin, S. Jabeen, S. Jain, A. Juste, S. Kappler, D. Kau, G. Kertzscher, M. Kirsch, L. Li, J. Mitrevski, R. Moore, M. Narain, D. O\'Neil, M. Pangilinan, J. Parsons, M. Perfilov, C. Potter, H.B. Prosper, R. Schwienhorst, E. Shabalina, J. Steggemann, T. Tim, C. Tully, M. Vetterli, B. Vachon, G. Watts, M. Weber','','Supriya Jain','TOP','PHYS','D0_PRIVATE','','$D0_PRI/5361/m_5361_singletopBNN.pdf','',2007,3,5,2454165,2007,9,18,2454362),(5362,'Measurement of the top quark mass with the matrix element method using the lepton+jets 1fb-1 data sample','J. Cammin, R. Demina, F. Fiedler, C. Garcia, G. Gutierrez, A. Harel, P. Haefner, A. Juste, P. Schieferedecker, M. Wang, M. Weber','conference note, preliminary result for winter 2007 conferences','Regina Demina','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5362/m_5362.pdf','',2007,3,5,2454165,2007,10,16,2454390),(5363,'DØ-Results on Neutral B Meson Flavor Oscillations','Gernot Weber','Proceedings of CKM2006, Nagoya, Japan','Gernot Weber','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5363/m_gweber_proceedings_ckm2006_5363.pdf','',2007,3,6,2454166,2007,3,12,2454172),(5364,'Search for WH Production Using The Matrix Element Analysis Technique in 900 pb-1 of Data','Thomas Gadfort, Dale Johnston, Aurelio Juste, Alan Magerkurth, Jianming Qian, Jonas Strandberg, Chun Xu\r\n','','Jonas Strandberg','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5364/m_WHnote_5364.pdf','',2007,3,8,2454168,2008,1,28,2454494),(5365,'Search for WH Production Using The Matrix Element Analysis Technique in 900 pb-1 of Data Collected with the D0 Detector','Thomas Gadfort, Dale Johnston, Aurelio Juste, Alan Magerkurth, Jianming Qian, Jonas Strandberg, Chun Xu\r\n','','Jonas Strandberg','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5365/m_MEnote_5365_CONF.pdf','',2007,3,8,2454168,2008,1,28,2454494),(5366,'A neural network search for electroweak single top quark production using 1 fb of data','Len Christofek','Conference Note','Len Christofek','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5366/m_nn_single_top_v2_2_5366.pdf','',2007,3,8,2454168,2007,8,6,2454319),(5367,'Reweighting of Alpgen\'s Z^{0} transverse momentum in multijets topologies with 1 fb-1 of RunIIa data','S. Calvet, A. Duperrin, J.-F. Grivaz, E. Kajfasz','','Samuel Calvet','NEW','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5367/m_note_ZpT_v1.0.ps','',2007,3,8,2454168,2007,9,7,2454351),(5368,'Measurement of Triple Differential Photon Plus Jet Cross Sections in ppbar Collisions At 1.96 TeV In DO','Dmitry Bandurin, Georgy Golovanov, Denis Korablev and Nikolay Skachkov','','Dmitry Bandurin','QCD','ANAL','D0_PRIVATE','','$D0_PRI/5368/m_note_5368.pdf','',2007,3,8,2454168,2008,4,3,2454560),(5369,'Measurement of Triple Differential Photon Plus Jet Cross Sections in ppbar Collisions At 1.96 TeV In DO','Dmitry Bandurin, Georgy Golovanov, Denis Korablev and Nikolay Skachkov','','Dmitry Bandurin','QCD','CONF','D0_PRIVATE','','$D0_PRI/5369/m_gamjet_conf_v2.pdf','',2007,3,8,2454168,2008,2,28,2454525),(5370,'Search for second generation scalar leptoquarks\r\nin the $\\mu\\nu jj$ final state with the D0 detector','Philippe Calfayan, Thomas Nunnemann','Preliminary Results for Winter 2007 Conferences','Thomas Nunnemann','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5370/m_calfayan_conf_final.pdf','',2007,3,12,2454172,2007,3,20,2454180),(5371,'Title: Measurement of the ttbar Production Cross-section at sqrt(s)=1.96 TeV in the Dilepton Final States Using 1 fb-1 ','Y.Arnoud, M.Arthaud, U. Bassler, M.Besancon\r\nS. Chakrabarti, F.Deliot, J.Konrath, B.Martin dit Latour,G.Sajot, C.Schwanenberger, E.Shabalina, V.Sharyy','Result for Winter 2007 conference','E. Shabalina','TOP','CONF','D0_PRIVATE','','$D0_PRI/5371/m_dilepton_xs_5371.pdf','',2007,3,12,2454172,2007,3,13,2454173),(5372,'Improvements to the Level 3 SMT Unpacking and Clustering Tool','Tim Scanlon','','Tim Scanlon','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5372/m_5372_l3smt.ps','',2007,3,12,2454172,2007,8,8,2454321),(5373,'Study of the systematics due to the factorization scale in W+Jets Monte Carlo','Yvonne Peters, Michael Begel, Daniel Wicke, Hwidong Yoo','','Yvonne Peters','MC','PHYS','D0_PRIVATE','','','',2007,3,12,2454172,NULL,NULL,NULL,NULL),(5374,'Data and MC sets for the Second pass Run II Z cross section measurement','Heidi Schellman','','Schellman','DATA_MANAGE','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5374/m_z_dataselection_pass2_v02.pdf','',2007,3,13,2454173,2007,3,31,2454191),(5375,'Single Electron Efficiencies in v14 and v15 data as a function of Instantaneous Luminosity','Jonathan Hays','','haysjm','ALGORITHMS','MEMO','D0_PRIVATE','OTHER','$D0_PRI/5375/m_5375_ele_eff_lumi.pdf','',2007,3,13,2454173,2007,3,13,2454173),(5376,'Level-0 Studies and Improved Errors for the Level 3 SMT Clustering Tool','Tim Scanlon','','Tim Scanlon','ALGORITHMS','DOC','D0_PRIVATE','','','',2007,3,13,2454173,NULL,NULL,NULL,NULL),(5377,'NN_Cert: An all in One Package for Certifying b-tagging Tools at D0','Tim Scanlon','','Tim Scanlon','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5377/m_5377_nncert.ps','',2007,3,13,2454173,2008,1,23,2454489),(5378,'Combination of CDF and D0 Results on the Mass of the Top Quark.\r\n','The Tevatron Electroweak Working group for the CDF and D0 collaborations','Eventually a hep-ex preprint!\r\n','Martin Grunewald','TOP','PUB','D0_PRIVATE','POSTSCRIPT','','',2007,3,13,2454173,NULL,NULL,NULL,NULL),(5379,'Combination of CDF and DO Results on the Mass of the Top Quark','The Tevatron Electroweak Working Group','Result for Winter07 conferences','E. Shabalina','TOP','CONF','D0_PRIVATE','','','',2007,3,13,2454173,NULL,NULL,NULL,NULL),(5380,'Combined Upper Limits on Standard-Model Higgs-Boson Production for the DZero Experiment','The DZero Collaboration','','Wade Fisher','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5380/m_5380.pdf','',2007,3,26,2454186,2007,4,11,2454202),(5381,'Jet pT resolution using v7.1 JES for p17 data','Mikko Voutilainen, Christophe Royon','This note provides the p17 jet pT resolutions for preliminary JES (v7.1) derived from the dijet data used in D0 Note 5087.','mavoutil','QCD','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5381/m_resolution_p17prel_cone7_5381_v1.0.ps','',2007,3,28,2454188,2007,3,28,2454188),(5382,'Jet Energy Scale Determination at D0 Run II (final p17 version)','JES Group','','Aurelio Juste','ALGORITHMS','PHYS','D0_PRIVATE','','','',2007,3,29,2454189,NULL,NULL,NULL,NULL),(5383,'Showering Analysis for the Final p17 Jet Energy Scale','Jeroen Hegeman','','Aurelio Juste','ALGORITHMS','PHYS','D0_PRIVATE','','','',2007,3,29,2454189,NULL,NULL,NULL,NULL),(5384,'Top Charge measurement using Jet Charge Templat','Per Hansson, Christophe Clement, David Milstead','published in PRL','E. Shabalina','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5384/m_topcharge_5384.pdf','',2007,3,30,2454190,2007,3,30,2454190),(5385,'Performance of the SVT b-tagging Algorithm on P17 Data','Justace Clutter','','Justace Clutter','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5385/m_svt_p17.pdf','',2007,4,2,2454193,2007,4,27,2454218),(5386,'Measurement of the ttbar production cross section at sqrt(s)= 1.96 TeV in the ee final state using p17 data set','Bertrand Martin, Yannick Arnoud, Gerard Sajot, Elizaveta Shabalina','','Bertrand Martin','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5386/m_5386_top_ee_cross_section_note_v2.6.1.pdf','',2007,4,3,2454194,2007,4,11,2454202),(5387,'The D0 Trigger Examine','Elliott Cheu','','Elliott Cheu','ONLINE','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5387/m_TrigEx.pdf','',2007,4,6,2454197,2007,4,10,2454201),(5388,'Proposal to perform a blind measurement of the W mass in Run II','Pierre Petroff, Jan Stark','','Jan Stark','WZ','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5388/m_BlindWmassMeasurement.ps','',2007,4,6,2454197,2007,4,6,2454197),(5389,'Search for WH production in the Muon channel using 448 pb-1 of data','Gregorio Bernardi and Lars Sonnenschein','','Gregorio Bernardi','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5389/m_5389_p14_wh-mu.pdf','',2007,4,7,2454198,2008,1,22,2454488),(5390,'Improved Search for Single Top Quark Production Using The Matrix Element Analysis Technique in 1~fb^-1 of Data','E. Aguilo, P. Baringer, A. Bean, C. Belanger-Champagne, J.A. Benitez, E.E. Boos, R. Brock, V. Bunichev, K. Chan, L. Christofek, Y. Coadou, L.V. Dudko, M. Erdmann, T. Gadfort, A. Garcia-Bellido, C. Gerber, D. Gillberg, G. Gutierrez, P. Gutierrez, A.P. Heinson, U. Heintz, S. Herrin, S. Jabeen, S. Jain, A. Juste, S. Kappler, D. Kau, G. Kertzscher, M. Kirsch, L. Li, J. Mitrevski, R. Moore, M. Narain, D. O\'Neil, M. Pangilinan, J. Parsons, M. Perfilov, C. Potter, H.B. Prosper, R. Schwienhorst, E. Shabalina, J. Steggemann, T. Tim, C. Tully, M. Vetterli, B. Vachon, G. Watts, M. Weber','','Jovan Mitrevski','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5390/m_5390_singletop_newME.pdf','',2007,4,13,2454204,2007,9,18,2454362),(5391,'Tracker-based Measurement of Top Quark Production in Muon-plus-Jets-Events','Martin Erdmann, Steffen Kappler, Matthias Kirsch, Jan Steggemann','','Matthias Kirsch','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5391/m_TrackerBasedTopFraction_5391.pdf','',2007,4,17,2454208,2007,4,17,2454208),(5392,'Improved Search for Single Top Quark Production Using The Matrix Element Analysis Technique in 1 fb^-1 of Data','E. Aguilo, P. Baringer, A. Bean, C. Belanger-Champagne, J.A. Benitez, E.E. Boos, R. Brock, V. Bunichev, K. Chan, L. Christofek, Y. Coadou, L.V. Dudko, M. Erdmann, T. Gadfort, A. Garcia-Bellido, C. Gerber, D. Gillberg, G. Gutierrez, P. Gutierrez, A.P. Heinson, U. Heintz, S. Herrin, S. Jabeen, S. Jain, A. Juste, S. Kappler, D. Kau, G. Kertzscher, M. Kirsch, L. Li, J. Mitrevski, R. Moore, M. Narain, D. O\'Neil, M. Pangilinan, J. Parsons, M. Perfilov, C. Potter, H.B. Prosper, R. Schwienhorst, E. Shabalina, J. Steggemann, T. Tim, C. Tully, M. Vetterli, B. Vachon, G. Watts, M. Weber','Conference note for the improved matrix element search. More details in D0 Note 5390.','Jovan Mitrevski','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5392/m_5392_singletop_newME.pdf','',2007,4,18,2454209,2007,6,19,2454271),(5393,'Charge Asymmetry in Top Pair Production','D0 Collaboration','','Amnon Harel','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5393/conference_note.pdf','',2007,4,18,2454209,2007,10,4,2454378),(5394,'Luminosity Stability Cross Checks Using Inclusive Jets','Emanuel Strauss, John Hobbs','Reported in this note are results derived using the caf_physics_cert tools to investigate the effect of the D0 luminosity back-propagation corrections.','Emanuel Strauss','@Tˆ','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5394/m_lumi_stability.pdf','',2007,4,19,2454210,2007,4,19,2454210),(5395,'Study of phi_s and DM_s\r\nusing tagged and untagged decays\r\nB^0_s -> J/psi phi.','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5395/m_jpsi_phi_tag_080307.pdf','',2007,4,26,2454217,2007,4,27,2454218),(5396,'Updated Combination Results from Single Top Cross Section Measurements using the BLUE method','D0 Collaboration','','Supriya Jain','TOP','CONF','D0_PRIVATE','','$D0_PRI/5396/m_5396_combination.pdf','',2007,4,26,2454217,2007,9,18,2454362),(5397,'An Improved Search for Single Top Quarks\r\nusing Bayesian Neural Networks','Supriya Jain, Harrison B. Prosper, for the Single Top Group','Preliminary results for Spring 2007 conferences\r\n','Harrison Prosper','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5397/m_5397_singletopBNN.pdf','',2007,4,28,2454219,2007,9,18,2454362),(5398,'The D0 Experiment\'s Integrated Luminosity for Tevatron Run IIa','T. Andeen, B.C.K. Casey, K. DeVaughan, Y. Enari, E. Gallas, D. Krop, R. Partridge, H. Schellman, G.R. Snow, S. Yacoob, H.D. Yoo','FERMILAB-TM-2365','Gregory R. Snow','@Tˆ','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5398/m_luminosity_tm2365.pdf','',2007,5,4,2454225,2007,5,4,2454225),(5399,'Online System for Normalizing Data Acquired by the Fermilab D0 Experiment','S. Park, J. Park, S. Lee, M. Begel, T. Andeen, H. Schellman, J. Stein, S. Yacoob, E. Gallas, V. Sirotenko, J. Hauptman, G.R. Snow','Journal of the Korean Physical Society, Vol. 49, No. 6, December 2006, pp. 2247-2252','Gregory R. Snow','DAQ_ELECTRONICS','PUB','D0_PRIVATE','OTHER','$D0_PRI/5399/m_lumi_DAQ_paper_note5399.pdf','',2007,5,4,2454225,2007,5,4,2454225),(5400,'Electron Smearing Studies with RunIIa Data','Philippe Gris','This note describes electron smearing studies performed with Zee events in p17 Data and Monte Carlo (MC).','Philippe Gris','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5400/m_smearing.ps','',2007,5,7,2454228,2007,5,7,2454228),(5401,'Observation of the heavy baryon $\\Xi_b^{\\pm}$','E. De La Cruz Burelo, J. Qian. H. A Neal, B. Abbott, G.D. Alexeev, Yu.P. Merekov, G.A. Panov, A.M. Rozhdestvensky,\r\nL.S. Vertogradov, and Yu.L. Vertogradova.','First observation of the heavy baryon $\\Xi_b^{\\pm}$','Eduard De La Cruz Burelo','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5401/m_chi_b_note_v6.pdf','',2007,5,9,2454230,2007,5,9,2454230),(5402,'Improvements to the b-tagging Performance Measurement in p17 Data','Tim Scanlon','','Tim Scanlon','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5402/m_5402_p17bidimprovements.ps','',2007,5,16,2454237,2008,2,12,2454509),(5403,'Observation of the heavy baryon Xi_b','Eduard De La Cruz Burelo et. al.','','Eduard De La Cruz Burelo','B_PHYSICS','ANAL','D0_PRIVATE','','$D0_PRI/5403/m_chi_b-note-cuts-based.pdf','',2007,5,17,2454238,2007,6,5,2454257),(5404,'Final results for $WH$ Production at $\\sqrt{s}=1.96$~TeV with 0.4 fb$^{-1}$ of Data, and Combination with the other Higgs Search Results at D\\O.\r\n','Gregorio Bernardi, Hyunwoo Kim, Lars Sonnenschein, Wade Fisher, and the Higgs Group','','Gregorio Bernardi','@Tˆ',' gð¿','D0_PRIVATE','','$D0_PRI/5404/m_5404_p14_wh_and_combo.pdf','',2007,5,18,2454239,2008,1,22,2454488),(5405,'Measurement of direct CP violation in B^+ \\to J/\\psi K^+ decay','G.Borissov, K.Holubyev, M.Williams','','K.Holubyev','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5405/m_dcpv_b_to_jpk_d0note5405.ps','',2007,5,21,2454242,2008,2,1,2454498),(5406,'Study of the W+Jets heavy flavor scale factor in p17','Yvonne Peters, Michael Begel, Elizaveta Shabalina, Daniel Wicke','','Yvonne Peters','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5406/m_5406_kFactorNote.pdf','',2007,5,22,2454243,2007,9,21,2454365),(5407,'Measurement of sigma(Wbb)','Alan Magerkurth','','Alan Magerkurth','NEW','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5407/m_wbb_V1.0.pdf','',2007,5,23,2454244,2007,6,5,2454257),(5408,'Systematic uncertainty of tau identification neural network for p17 data','Serban Protopopescu and Peter Svoisky','','Serban Protopopescu','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','/RunII/home/serban/m_taunnsys_d0note5408.pdf','',2007,5,23,2454244,2007,5,23,2454244),(5409,'Trigger Efficiencies for the OR of Single Electron Triggers in p17 Data','Mark Owen\r\nMarc Hohlfeld','','Mark Owen','TRIGGER','DOC','D0_PRIVATE','OTHER','$D0_PRI/5409/m_SingleEMOR_p17_5409_v2-0.pdf','',2007,5,29,2454250,2007,6,12,2454264),(5410,'Z mass reweighting for Alpgen p17 production','gerald grenier','','grenier','MC','DOC','D0_PRIVATE','OTHER','$D0_PRI/5410/m_alpgenZmassRW.pdf','',2007,5,30,2454251,2007,5,30,2454251),(5411,'Search for Scalar Top Admixture in the ttbar Lepton+Jets Final State at sqrt(s)=1.96 TeV on 1 fb^-1 of D0 Data','Regina Demina, Su-Jung Park','','Su-Jung Park','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5411/m_5411_stopnote_071107.pdf','',2007,5,30,2454251,2007,8,6,2454319),(5412,'Calorimeter Event Quality Flag Rates for W/Z Production Cross-section Measurement (second pass)','J.Hays, H.Schellman, J.Steele','','haysjm','WZ','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5412/m_5412_calqualcor2.pdf','',2007,6,1,2454253,2007,6,1,2454253),(5413,'Effect of Changing Top Quark Width on the Selection of tau+jets Events','S. Jain, P. Gutierrez, D. Chakraborty, S. Hossain, M. Arov','','Supriya Jain','TOP','PHYS','D0_PRIVATE','','','',2007,6,4,2454256,NULL,NULL,NULL,NULL),(5414,'Measurement of the ratio of W+c+jets cross-section to the inclusive W+jets cross-section using the D0 detector','Mahsana Ahsan, Tim Bolton','','Mahsana Ahsan','QCD','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5414/m_W-charm-frac.pdf','',2007,6,4,2454256,2008,1,10,2454476),(5415,'Non SUSY Searches at the Tevatron','G.S. Muanza','Proceedings of the 42nd Rencontres de Moriond - QCD and high energy hadronic interactions - La Thuile (Italy) , March 17-24 2007','muanza','NEW','CONF','D0_PRIVATE','','','',2007,6,5,2454257,NULL,NULL,NULL,NULL),(5416,'First Measurement of Top Quark Pair Production Cross-Section in Lepton+Hadronic Tau Decay Channel in p-pbar Collision at\r\nc.m. energy 1.96 TeV','Todd Adams and Haryo Sumowidagdo','','Haryo Sumowidagdo','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5416/m_d0note_5416_top_p17_leptau.pdf','',2007,6,7,2454259,2007,11,2,2454407),(5417,'Measurement of the WWZ Trilinear Gauge Boson Couplings From pT(Z) in ppbar to WZ + X Events','J. Degenhardt, A. Askew, H. T. Diehl, R. Illingworth','','James Degenhart','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','','',2007,6,12,2454264,NULL,NULL,NULL,NULL),(5418,'p17 parton level corrections and resolutions for hitfit','Marcel Demarteau, Pieter Houben, Marcel Vreeswijk and Michele Weber','desciption of defaults file defaults_june2007','Pieter Houben','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5418/m_hitfit.ps','',2007,6,14,2454266,2007,6,18,2454270),(5419,'First Evidence for Electroweak Single Top Quark Production at D0','Leonard Christofek','Proceeding for Moriond QCD 2007','Len Christofek','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5419/m_christofek_moriondQCD2007_top_5419_talk.pdf','',2007,6,19,2454271,2007,6,19,2454271),(5420,'Observation and Properties of the Orbitally Excited B_s2* Meson','I. Bertram, G. Borissov, P. Ratoff, and M. Williams','','Mark Williams','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5420/m_Bs2_note5420_v9.pdf','',2007,6,21,2454273,2008,2,20,2454517),(5421,'Top Cross Section in the Lepton+Track Channel with 1 fb-1 dataset','Robert Wagner','The double top to dilepton cross-section was measured in the lepton+track channel. This analysis is based on the Run IIa dataset of approximately 1 fb-1.','Robert Wagner','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5421/m_5421_ltrack.pdf','',2007,6,23,2454275,2007,8,17,2454330),(5422,'Simultaneous measurement of B(t->Wb)/B(t->Wq) and sigma(ppbar->ttbar)*B(t->Wq)^2 with p17 data','Yvonne Peters, Elizaveta Shabalina','','Yvonne Peters','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5422/m_RXS_5422.pdf','',2007,6,23,2454275,2008,1,7,2454473),(5423,'Long term behavior of PMT gain in central muon system scintillation counters','Robert Abrams, Shashikant Dugad, Al Ito, Juan Pablo Negret, Grigory Safronov, Manuel Zanabria','Investigation of long term PMT gain behavior in the conditions of the D0 collision hall has been done using LED calibration data since the beginning of RunII.','Safronov','MUON','DOC','D0_PRIVATE','POSTSCRIPT','','',2007,6,25,2454277,NULL,NULL,NULL,NULL),(5424,'Long term behavior of PMT gain in central muon system scintillation counters','Robert Abrams, Shashikant Dugad, Al Ito, Juan Pablo Negret, Grigory Safronov, Manuel Zanabria','Investigation of long term PMT gain behavior in the conditions of the D0 collision hall has been done using LED calibration data since the beginning of RunII.','Safronov','MUON','PUB','D0_PRIVATE','POSTSCRIPT','','',2007,6,25,2454277,NULL,NULL,NULL,NULL),(5425,'Search for GMSB in Di-Photon Events with Large Missing Transverse Energy','Yuri Gershtein and Yurii Maravin','','Yuri Gershtein','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5425/m_GMSB_5425.pdf','',2007,7,1,2454283,2007,7,1,2454283),(5426,'Search for Light Higgs Boson in $\\gamma\\gamma+X$ Final State with the DO Detector at sqrt{s}=1.96 TeV','Oleksiy Atramentov, Yuri Gershtein, Alex Melnitchouk','','Oleksiy Atramentov','NEW','ANAL','D0_PRIVATE','OTHER','','',2007,7,7,2454289,NULL,NULL,NULL,NULL),(5427,'Search for Supersymmetry with gauge-mediated breaking in diphoton events at D0','Yuri Gershtein and Yurii Maravin','','Yurii maravin','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5427/m_ggmet_conf.pdf','',2007,7,4,2454286,2007,7,27,2454309),(5428,'B_s Mixing Using the Semileptonic B_s Decay D_s -> phi+pi and Unbinned Fit','M.S. Anzelc, S. Beale, G. Borissov, S. Burdin, T. Moulik, J. Radigan, A. Rakitin, W. Taylor, D. Tsybychev, S.W. Youn','','Meghan Anzelc','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5428/m_d0note5428_BsMuPhiPi.pdf','',2007,7,6,2454288,2007,8,10,2454323),(5429,'Reconstruction of a Bs -> Ds(phi pi) pi signal at DØ','Thorsten Kuhl, Stefan Tapprogge, Gernot Weber','','Gernot Weber','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5429/m_bs-had-5429_version0_8.pdf','',2007,7,9,2454291,2007,8,7,2454320),(5430,'Search for Heavy Neutral Gauge Bosons in the Dielectron Channel with 1fb^-1 of RunIIa Data.','Ioannis Katsanos, John Parsons','','Ioannis Katsanos','NEW','CONF','D0_PRIVATE','','','',2007,7,9,2454291,NULL,NULL,NULL,NULL),(5431,'Measurement of the $W$ boson helicity in top quark decays at D\\O','E. Varnes, J. Leveque, K. Johns','','Erich Varnes','TOP','CONF','D0_PRIVATE','OTHER','','',2007,7,9,2454291,NULL,NULL,NULL,NULL),(5432,'Search for the Higgs Boson in H ->WW -> e mu nunu decays at D0','Ralf Bernhard','','Ralf Bernhard','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5432/m_5432_HWW_emu_s07_v07.pdf','',2007,7,9,2454291,2007,12,10,2454445),(5433,'Measurement of $B_s^0$ Mixing Parameters from Flavor-Tagged Decay $B_s^0 \\rightarrow J/\\psi \\phi$','I. Bertram, G. Borissov, A. Chandra, \r\nB. Hoeneisen, A. Ratikin, D. Strom, K. Yip, D. Zieminska','conf. note for $\\phi_s$ measurement using tagged $B_s^0 \\rightarrow J/\\psi \\phi$ with angular analysis.','Avdhesh Chandra','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5433/m_bsdgtag_conf.ps','',2007,7,9,2454291,2007,7,10,2454292),(5434,'Search for ttbar Resonance in the Lepton+Jets Final State in ppbar Collisions at sqrt(s)=1.96TeV','Daniel Wicke, Maren Vaupel','','Daniel Wicke','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5434/m_mtt_5434.pdf','',2007,7,10,2454292,2007,8,6,2454319),(5435,'Update on Bs mixing in Bs -> Ds e n X, Ds -> phi pi decay mode','T. Moulik','','Tania Moulik','B_PHYSICS','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5435/m_note5435_bsemix_v1.pdf','',2007,7,10,2454292,2007,8,2,2454315),(5436,'Search for the pair production of scalar top quarks in acoplanar charm jet +\r\nMissing transverse energy final state in $p\\bar{p}$ collisions at $\\sqrt{s}=\r\n1.96$ TeV','Mansoora Shamim, Tim Bolton','','Mansoora Shamim','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5436/m_d0note_5436.pdf','',2007,7,10,2454292,2007,7,10,2454292),(5437,'Simultaneous measurement of B(t->Wb)/B(t->Wq) and sigma(ppbar->ttbar)*B(t->Wq)^2 at D0','Yvonne Peters, Elizaveta Shabalina','','Peters','TOP','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5437/m_RXS_5437.pdf','',2007,7,11,2454293,2007,8,15,2454328),(5438,'Search for Scalar Top Admixture in the ttbar Lepton+Jets Final State at sqrt(s)=1.96 TeV in 1 fb^-1 of D0 Data','Regina Demina, Su-Jung Park','','Su-Jung Park','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5438/m_5438_stopconfnote_072207.pdf','',2007,7,11,2454293,2007,8,6,2454319),(5439,'Investigation of Jet Losses in simulated $t\\bar{t}$ Muon-plus-Jets Events','Martin Erdmann, Anna Henrichs, Matthias Kirsch','','Matthias Kirsch','TOP','DOC','D0_PRIVATE','OTHER','$D0_PRI/5439/m_ttbar_jet_loss_5439.pdf','',2007,7,12,2454294,2007,7,12,2454294),(5440,'First direct measurement of |V_tb|','E. Aguilo, P. Baringer, A. Bean, C. Belanger-Champagne, J.A. Benitez, E.E. Boos, R. Brock, V. Bunichev, K. Chan, L. Christofek, Y. Coadou, L.V. Dudko, M. Erdmann, T. Gadfort, A. Garcia-Bellido, C. Gerber, D. Gillberg, G. Gutierrez, P. Gutierrez, A.P. Heinson, U. Heintz, S. Herrin, S. Jabeen, S. Jain, A. Juste, S. Kappler, D. Kau, G. Kertzscher, M. Kirsch, L. Li, J. Mitrevski, R. Moore, M. Narain, D. O\'Neil, M. Pangilinan, J. Parsons, M. Perfilov, C. Potter, H.B. Prosper, R. Schwienhorst, E. Shabalina, J. Steggemann, T. Tim, C. Tully, M. Vetterli, B. Vachon, G. Watts, M. Weber ','','Reinhard Schwienhorst','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5440/m_5440_Vtb.pdf','',2007,7,12,2454294,2007,7,13,2454295),(5441,'Forward Muon Yields from March to June 2007','D. Denisov, V. Evdokimov, I. Vasilyev, A. Kozelov,\r\nN. Prokopenko, I. Razumov','','Nikolay Prokopenko','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/5441/m_D0Note_5441_1.pdf','',2007,7,12,2454294,2007,7,16,2454298),(5442,'Measurement of top quark differential distributions in the lepton+jets channel at sqrt{s}=1.96 TeV using the neural network tagger','Michael Begel, Jiri Kvita','','Michael Begel','TOP','ANAL','D0_PRIVATE','','$D0_PRI/5442/m_p17_prelimJES_ljets_differential_spectra_d0note_5442.pdf','',2007,7,12,2454294,2008,5,19,2454606),(5443,'Search for ttbar Resonance in the Lepton+Jets Final State in ppbar Collisions at sqrt{s}=1.96TeV','Daniel Wicke and Maren Vaupel','','Daniel Wicke','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5443/m_Mtt_Conf_v14.pdf','',2007,7,14,2454296,2007,8,6,2454319),(5444,'Muon Momemtum Oversmearing for p17 Data','M. Arthaud, F. Deliot, B. Tuchming, V. Sharyy, D. Vilanova','','deliot','MUON','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5444/m_muon_oversmearing_5444.pdf','',2007,7,14,2454296,2007,9,24,2454368),(5445,'Diffractive Z/gamma^* -> mu^+ mu^- production with rapidity gap in ppbar collisions at sqrt(s)=1.96 TeV in the D0 experiment','Luis Mendoza, Carlos Avila, Duncan Brown, Andrew Brandt','Internal D0 note reporting preliminary results of the diffractive Z analysis','Luis Mendoza','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5445/m_d0note.pdf','',2007,7,16,2454298,2007,7,18,2454300),(5446,'Bs Mixing studies with Bs -> DsMuNuX (Ds->K*K) Decay using \r\nUnbinned Fit and Same Side Tagging','Steve Beale, Md. Naimuddin, Wendy Taylor','','Md. Naimuddin','B_PHYSICS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5446/m_kstark_5446_V1.0.pdf','',2007,7,16,2454298,2007,8,16,2454329),(5447,'Search for Third Generation Scalar Leptoquarks Using the taubtaub Final State','Yuan Hu','','Yuan Hu','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5447/m_d0note5447-conf-LQ3.pdf','',2007,7,17,2454299,2007,7,17,2454299),(5448,'High Voltage Plateau Study and Ageing Tests of Mini-Drift Tubes of the Forward Muon System','V. Abazov, D. Denisov, V. Evdokimov, I. Vasilyev, A. Kozelov, N. Prokopenko, I. Razumov ','','Nikolay Prokopenko','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/5448/m_D0Note5448.pdf','',2007,7,18,2454300,2007,7,18,2454300),(5449,'Muon Momentum Oversmearing for p20 Data','M. Arthaud, F. Deliot, B. Tuchming, V. Sharyy, D. Vilanova','','deliot','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/5449/m_muon_oversmearing_5449.pdf','',2007,7,20,2454302,2007,9,24,2454368),(5450,'Search for Neutral Higgs Boson Production Decaying into $\\Phi \\rightarrow \\tau \\tau \\rightarrow e \\mu$ Final State with the D\\O~Detector.','Maxim Titov','','Maxim Titov','NEW','PHYS','D0_PRIVATE','','','',2007,7,22,2454304,NULL,NULL,NULL,NULL),(5451,'First Measurement of ttbar Cross-Section in Lepton + Tau\r\n+ b-jet(s) + Missing Transverse Energy Using 1 fb-1\r\nof Run II Data','Suharyo Sumowidagdo and Todd Adams','Conference Note for D0 Note 5416.\r\nUse version 2.0.\r\nThe Figures file contains individual figures in .eps, .jpg., and .pdf.','Haryo Sumowidagdo','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5451/m_d0note_5451-CONF_top_leptau.pdf','',2007,7,24,2454306,2007,8,14,2454327),(5452,'The RunIIb Level 3 Tracking Tool','R. Beuselinck','','R. Beuselinck','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5452/m_D0RunIIb_Level3_Tracking_Tool.pdf','',2007,7,26,2454308,2007,7,27,2454309),(5453,'Search for long-lived parents of Z boson','Yuri Gershtein and Yurii Maravin','','Yurii Maravin','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','','',2007,7,27,2454309,NULL,NULL,NULL,NULL),(5454,'Search for long-lived parents of Z boson','Yuri Gershtein and Yurii Maravin','','Yurii Maravin','NEW','CONF','D0_PRIVATE','POSTSCRIPT','','',2007,7,27,2454309,NULL,NULL,NULL,NULL),(5455,'Diffractive Jpsi Production in ppbar Collisions at sqrt(s) = 1.96 TeV.','Ana Carolina Assis Jesus, Alberto Santoro, Andre Sznadjer and Brendan Casey','','Ana Carolina Assis Jesus','QCD','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5455/m_d0note_to_QCD.pdf','',2007,7,27,2454309,2007,7,27,2454309),(5456,'Update with around 2 fb-1 of integrated luminosity B0s and B0d time-angular dependant analyses.','G. Alejandro Garcia-Guerra, H. Castilla-Valdez, A. Sanchez-Hernandez, P. L. M. Podesta-Lerma, J. Orduna','This is an update of the D0Note 5228 using around 2fb-1 of integrated luminosity.','G. Alejandro Garcia-Guerra','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5456/m_BdBsAnalyses081107.pdf','',2007,7,27,2454309,2007,11,25,2454430),(5457,'Search for Neutral Higgs Boson in the Decay Channel tau(e) tau(had) with p17 Data','Mark Owen, Wan-Ching Yang, Stefan Soldner-Rembold','','Mark Owen','NEW','ANAL','D0_PRIVATE','OTHER','','',2007,7,29,2454311,NULL,NULL,NULL,NULL),(5458,'Search for Pair Production of Doubly-charged Higgs Bosons in the H++H-- -> 4mu Final State at D0. ','Tae Jeong Kim, Suyoung Choi','','Tae Jeong Kim','@Tˆ','CONF','D0_PRIVATE','','','',2007,7,30,2454312,NULL,NULL,NULL,NULL),(5459,'Measurement of the Top Quark Mass using\r\nsigma(ppbar->ttbar)_{l+jets} and sigma(ppbar->ttbar)_{ll} \r\nwith the D0 Detector at sqrt(s)=1.96 TeV in the Run II Data','Y.Arnoud, M.Arthaud, U. Bassler, M.Besancon S. Chakrabarti, F.Deliot, J.Konrath, B.Martin dit Latour, Y.Peters, G.Sajot, C.Schwanenberger, E.Shabalina, V.Sharyy','Result for Summer 2007 conference','Christian Schwanenberger','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5459/m_5459.pdf','',2007,7,30,2454312,2008,1,9,2454475),(5460,'Combination of preliminary p17 dilepton mass measurements','Dan Boline, Oleg Brandt, Ulrich Heintz, Robert Kehoe, Joerg Meyer, Arnulf Quadt, Peter Renkel, Christian Schwanenberger','','Ulrich Heintz','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5460/m_llmass_combination_note5460.pdf','',2007,7,30,2454312,2008,1,10,2454476),(5461,'Measurement of Cross Section Ratio\r\nsigma(pbarp --> tbart(l+jets))/\r\nsigma(pbarp --> tbart(dilepton)) with p17 data','Ulrich Heintz, Thorsten Kuhl, Yvonne Peters, Christian Schwanenberger, Elizaveta Shabalina','Preliminary result for summer 2007 conferences','E. Shabalina','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5461/m_xsec_ratio_note5461.pdf','',2007,7,31,2454313,2007,8,14,2454327),(5462,'Measurement of the Top Quark Mass in the Dilepton Channel Using the Matrix Weighting Method at D0','Daniel Boline, Ulrich Heintz','Summer 2007 analysis note','Dan Boline','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5462/m_5462_mwt_ll_top_mass_analysis_note.pdf','',2007,7,31,2454313,2007,9,23,2454367),(5463,'Measurement of the Top Quark Mass in the Dilepton Channel','Daniel Boline','Summer 2007 Conference note','Dan Boline','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5463/m_5463_mwt_ll_top_mass_conf_note.pdf','',2007,7,31,2454313,2007,9,23,2454367),(5464,'Search for the Associated Production of Chargino and Neutralino in Final States with Two Electrons and an Additional Lepton','Volker Buescher, Marc Hohlfeld, Olav Mundal','','Olav Mundal','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5464/m_5464_eel.pdf','',2007,7,31,2454313,2008,4,7,2454564),(5465,'Top Cross Section in the Lepton+Track Channel with 1 fb-1 dataset','Robert Wagner, Chris Tully','Preliminary result fro summer 2007 conferences','E.Shabalina','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5465/m_5465_ltrackCONF.pdf','',2007,7,31,2454313,2007,8,17,2454330),(5466,'Measurement of Cross Section Ratio sigma(pbarp --> tbart(l+jets))/ sigma(pbarp --> tbart(dilepton)) with p17 data','Ulrich Heintz, Thorsten Kuhl, Yvonne Peters, Christian Schwanenberger, Elizaveta Shabalina','Preliminary result for summer 2007 conferences','E.Shabalina','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5466/m_XSRatio_5466.pdf','',2007,7,31,2454313,2007,8,15,2454328),(5467,'Search for second generation scalar leptoquarks in the $\\mu\\nu jj$ final state with the D0 detector','Philippe Calfayan, Thomas Nunnemann','','Philippe Calfayan','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5467/m_calfayan_analysis_v0.4.pdf','',2007,8,1,2454314,2007,8,6,2454319),(5468,'Search for squark production in events with jets, \r\nhadronically decaying taus and missing transverse energy\r\nwith the D{\\O} detector at $\\bm{\\sqrt{s}}$=1.96 TeV \r\nin the Run IIa data','C. Biscarat, P. Verdier','Preliminary Results for Summer 2007 Conferences','biscarat','NEW','CONF','D0_PRIVATE','','$D0_PRI/5468/m_confSqGlTau_d0note5468.pdf','',2007,8,1,2454314,2007,8,1,2454314),(5469,'Measurement of the Electron and Muon Fake Rates in Lepton+Jets Datasets','Marc-Andre Pleier','','Marc-Andre Pleier','TOP','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5469/m_5469_leptonfakerate.pdf','',2007,8,1,2454314,2007,10,26,2454400),(5470,'Search for $WH$ Production using Neural Net Selection with 1 fb$^{-1}$ of Run IIa Data','G. Bernardi, Y. Enari, W. Fisher, V. Kaushik, J. Lellouch, M. Sanders','','Gregorio Bernardi','@Tˆ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5470/m_5470_wh-p17.pdf','',2007,8,2,2454315,2008,1,22,2454488),(5471,'Search for $WH$ Production using Neural Net Selection with 0.65 fb$^{-1}$ of Run IIb Data','G. Bernardi, Y. Enari, W. Fisher, J. Lellouch, M. Sanders','','Gregorio Bernardi','@Tˆ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5471/m_5471_wh-p20.pdf','',2007,8,2,2454315,2008,1,22,2454488),(5472,'Search for WH Production using Neural Net Selection with 1.7 fb$^{-1}$ of Run II Data','G. Bernardi, Y. Enari, W. Fisher, J. Lellouch, M. Sanders','Conference note for summer 2007 results','Gregorio Bernardi','@Tˆ','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5472/m_5472_conf_LP-07.pdf','',2007,8,2,2454315,2008,1,22,2454488),(5473,'','','','stenol','MUON','Nò¿','D0_PRIVATE','','','',2007,8,3,2454316,NULL,NULL,NULL,NULL),(5474,'Measurement of Flavor Oscillation Frequency of $B^0_s$ Mesons at D0','M.S. Anzelc(Northwestern), S. Beale(York), G. Borissov(Lancaster),\r\nS. Burdin(Fermilab),H. Evans (Indiana), T. Kuhl(Mainz), T. Moulik(Kansas), M. Naimuddin(Fermilab), J. Radigan(York), A. Rakitin(Lancaster), \r\n W. Taylor(York), D. Tsybychev(Stony Brook), G. Weber(Mainz), S.W. Youn(Northwestern)','','Tania Moulik, Dmitri Tsybychev','B_PHYSICS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5474/m_combined_v1.ps','',2007,8,4,2454317,2007,8,10,2454323),(5475,'A method to get High pT di-EM trigger efficiency','Piyali Banerjee, Jan Stark','','Piyali Banerjee','ALGORITHMS','DOC','D0_PRIVATE','OTHER','/RunII/home/piyali/desktop/Desktop/m_trigger1.pdf','',2079,8,5,2480616,2007,8,13,2454326),(5476,'Electron Likelihood for the End Cap using Fps+Calorimeter detector information.','Piyali Banerjee','','Piyali Banerjee','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5476/m_lhood.pdf','',2007,8,6,2454319,2007,8,12,2454325),(5477,'Combined tbart Production Cross Section \r\nin the Lepton+Track and Dilepton Final States using 1 fb-1 of data\r\n\r\n','Y.~Arnoud, M.~Arthaud, U. Bassler, M.~Besan\\c{c}on,\r\nS. Chakrabarti, F.~D\\\'eliot, J.~Konrath, B.~Martin dit Latour, G.~Sajot, C.~Schwanenberger, E.~Shabalina, V.~Sharyy, C.~Tully, R.~Wagner\r\n','Result for summer 2007 conferences','E. Shabalina','TOP','CONF','D0_PRIVATE','OTHER','$D0_PRI/5477/m_combo_dilepton_5477.pdf','',2007,8,6,2454319,2007,8,14,2454327),(5478,'Search for LED in the diem channel','Piyali Banerjee','','Piyali Banerjee','NEW','PUB','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5478/m_analysis_note.ps','',2007,8,8,2454321,2007,8,8,2454321),(5479,'Stability Studies of Amplitude and Time Response for \r\nthe Forward Muon Scintillation Counters','V. Bezzubov, I. Churin, D. Denisov, V. Evdokimov, V. Lipaev, V. Podstavkov, A. Shchukin, I. Vasilyev','','Igor Vasilyev','MUON','PUB','D0_PRIVATE','OTHER','$D0_PRI/5479/m_5479.pdf','',2007,8,8,2454321,2007,8,8,2454321),(5480,'Practically Reproducible Pseudo Random Numbers','Amnon Harel','','Amnon Harel','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5480/m_5480_reproducible_pseudo_random_number_seed_for_CAFe.pdf','',2007,8,8,2454321,2008,2,25,2454522),(5481,'Tagging weight equations','Frank Filthaut','','Frank Filthaut','ALGORITHMS','MEMO','D0_PRIVATE','OTHER','$D0_PRI/5481/m_tagweights_5481.pdf','',2007,8,9,2454322,2007,8,27,2454340),(5482,'Search for ZH->llbb (p17 with NN)','Shaohua Fu, Andy Haas','','Andy Haas','NEW','CONF','D0_PRIVATE','OTHER','','',2007,8,10,2454323,NULL,NULL,NULL,NULL),(5483,'Measurement of the Top Quark Mass in Combined Dilepton and Lepton+Track channels with Neutrino Weighting','O. Brandt, R. Kehoe, J. Meyer, A. Quadt, P. Renkel, C. Schwanenberger','','Peter Renkel','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5483/m_llmtop_dilepton_syst.pdf','',2007,8,10,2454323,2007,11,1,2454406),(5484,'Measurement of sigma(p pbar -> Z)*Br(Z->tau tau) with 1 fb-1 at sqrt(s) = 1.96 TeV','Cristina Galea, Sijbrand de Jong','','Cristina Galea','WZ','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5484/m_conf_note_5484_Ztautau_p17.ps','',2007,8,10,2454323,2007,8,11,2454324),(5485,'Search for the Associated Higgs Boson Production\r\nppbar->WH->WWW*->l+-nu l\'+-nu\' + X at sqrt(s)=1.96 TeV','Alexander Khanov','','Alexander Khanov','NEW','CONF','D0_PRIVATE','OTHER','','',2007,8,12,2454325,NULL,NULL,NULL,NULL),(5486,'Corrections for muonic b-jets in P17','j lellouch','','lellouch','ALGORITHMS','MEMO','D0_PRIVATE','POSTSCRIPT','','',2007,8,13,2454326,NULL,NULL,NULL,NULL),(5487,'Combined Upper Limits on Standard-Model Higgs-Boson Production for the DZero Experiment','The DZero Collaboration','','Wade Fisher','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5487/m_5487.pdf','',2007,8,13,2454326,2007,12,17,2454452),(5488,'Measurement of $B_s^0$ Mixing Parameters from Flavor-Tagged Decay.',' I. Bertram, G. Borissov, A. Chandra, \r\nB. Hoeneisen, A. Rakitin, D. Strom, K. Yip, D. Zieminska','','Avdhesh Chandra','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5488/m_bsdgtag-v2.ps','',2007,8,13,2454326,2007,11,6,2454411),(5489,'Search for the Higgs boson\r\nin H -> W W^* -> e nu_e mu nu_mu decays at DO in Run IIb','D0 Collaboration','','Ralf Bernhard','NEW','CONF','PUBLIC','','$D0_PRI/5489/m_5489_hww_emu_conf_v1.0.pdf','',2007,8,16,2454329,2007,12,10,2454445),(5490,'Two-parameter Bayesian calculation to set limits or measure cross sections','Supriya Jain, Harrison B. Prosper ','','Supriya Jain','TOP','PHYS','D0_PRIVATE','','','',2007,8,22,2454335,NULL,NULL,NULL,NULL),(5491,'Tests of the P17-P20 Combined Higgs Limits for the 2007\r\nLepton-Photon Conference','Wade Fisher','','wfisher','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5491/m_5491.pdf','',2007,8,25,2454338,2007,9,15,2454359),(5492,'Sigma(p pbar -> Z)*Br(Z->tau tau) cross section times branching ratio measurement with 1 fb^-1','Cristina Galea, Sijbrand de Jong','','Cristina Galea','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5492/m_Ztautau_long_analysis_note_corresp_to_conf_note_5484_LP2007.pdf','',2007,8,26,2454339,2008,2,6,2454503),(5493,'Event selection for a study of double J/psi production','Rick Jesik, Phil Vint','','Rick Jesik','B_PHYSICS','ANAL','D0_PRIVATE','','','',2007,8,27,2454340,NULL,NULL,NULL,NULL),(5494,'Correction of the Measurement of the Energy Deposition in the D0 Calorimeter','Betty Calpas and Walter Geist','The goal of this analysis is to verify the optimal timing measurement of the energy deposition in the D0 calorimeter and to calculate corrections if necessary.','Betty Calpas','CALORIMETER','DOC','D0_PRIVATE','POSTSCRIPT','','',2007,8,31,2454344,NULL,NULL,NULL,NULL),(5495,'Measurement of the top quark mass in the lepton+jets channel with the matrix element method on 1fb-1 of Run IIa data (P17)','R. Demina, T. Ferbel, F. Fiedler, C. Garcia, G. Gutierrez, P. Haefner, M. Wang','analysis note','Michael Wang','TOP','ANAL','D0_PRIVATE','','','',2007,8,31,2454344,NULL,NULL,NULL,NULL); INSERT INTO `d0notes` VALUES (5496,'Search for $H \\rightarrow W W^* \\rightarrow l l\'~(l,l\' = e, \\mu)$ Production Using Neural Networks with 1.1 $fb^{-1}$ of $\\mbox{Run II}$a Data','M. Titov, R. Bernhard, B. Penning','','M. Titov','NEW','PHYS','D0_PRIVATE','','$D0_PRI/5496/m_HWW-5496-PHYS.pdf','',2007,9,1,2454345,2007,11,28,2454433),(5497,' Lifetime Difference and CP Mixing Angle in the B_s^0 System','Avdhesh Chandra, Kin Yip, Daria Zieminska','This note documents the analysis of untagged decay Bs->J/psiphi published in PRL 98, 121801 (2007). The part describing the combination with A_sl measurements is obsolete.','Avdhesh Chandra','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5497/m_bs5dcp.ps','',2007,9,3,2454347,2007,9,3,2454347),(5498,'Combination of top quark mass measurements by the D0 experiment','D0 Collaboration','','Ulrich Heintz','TOP','CONF','D0_PRIVATE','OTHER','','',2007,9,5,2454349,NULL,NULL,NULL,NULL),(5499,'Jet p_T resolution for Run IIa final JES (v7.2) with dijet J4S jet corrections','Mikko Voutilainen','Jet pT resolutions applicable to dijet sample with dijet J4S corrections for JCCA jets in run range 191000--213064. Applicability not guaranteed for other samples.','mavoutil','QCD','PHYS','D0_PRIVATE','','$D0_PRI/5499/m_resolution_p17dijet_5499_v1.pdf','',2007,9,6,2454350,2008,1,30,2454496),(5500,'Jet Faking Tau Studies','Supriya Jain, Serban Protopopescu','','Supriya Jain','TOP','PHYS','D0_PRIVATE','','','',2007,9,6,2454350,NULL,NULL,NULL,NULL),(5501,'Limits on the neutral trilinear gauge couplings $ZZZ^*$ and $ZZ\\gamma^*$','Chad Jarvis, Nick Hadley, Takahiro Yasuda, Tom Diehl','','Chad Jarvis','@Tˆ','à å¿','D0_PRIVATE','','$D0_PRI/5501/m_ZZano_d0note5501.pdf','',2007,9,7,2454351,2008,2,2,2454499),(5502,'Search for the Higgs boson in $H \\rightarrow W W^* \\rightarrow e e$ decays at DO using Run IIb Data\r\n','B. Penning, R. Bernhard','','Bjoern Penning','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5502/m_5502_Hwwee_s07.pdf','',2007,9,9,2454353,2007,12,10,2454445),(5503,'Bc Lifetime in the J/psi + mu channel','Leah Welty-Rieger \r\nRick Van Kooten','','Leah Welty-Rieger','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5503/m_bc_anal_1_2.pdf','',2007,9,11,2454355,2008,4,10,2454567),(5504,'Combined Upper Limits on Standard Model Higgs Boson Production\\\\from the \\DZ Experiment in 0.9-1.7 fb$^{-1}$','The DZero Collaboration','Combined SM Higgs limits for P5 2007','Wade Fisher','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5504/m_5504.pdf','',2007,9,14,2454358,2007,12,17,2454452),(5505,'Search for Excited Electrons in the eegamma Channel with the Run IIa Data Set','Volker Vorwerk, Thomas Hebbeker, Arnd Meyer','','Arnd Meyer','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5505/m_5505_estar_v1.0.pdf','',2007,9,19,2454363,2007,11,4,2454409),(5506,'A Search for the Standard Model Higgs Boson in the Channel ZH->vvbb at sqrt(s)=1.96 TeV ','Theodoros Christoudias, Michele Petteni, Gavin Davies','','Theo Christoudias','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5506/m_conf_zhvvbb_NN.pdf','',2007,9,19,2454363,2008,1,23,2454489),(5507,'A Search for the Standard Model Higgs Boson in the Channel ZH->vvbb at sqrt(s)=1.96 TeV using NN','Theo Christoudias, Michele Petteni, Gavin Davies','','Theo Christoudias','NEW','DOC','D0_PRIVATE','OTHER','$D0_PRI/5507/m_zhvvbb_NN.pdf','',2007,9,19,2454363,2008,1,23,2454489),(5508,'Dzero High Luminosity Projections for the MSSM Higgs in the \r\ntau tau Channel','Mark Owen and Stefan Soldner-Rembold','','Mark Owen','NEW','DOC','D0_PRIVATE','OTHER','$D0_PRI/5508/m_HtautauProjection_d0note5508.pdf','',2007,9,24,2454368,2007,9,24,2454368),(5509,'Search for Direct Production of Scalar Bottom Quarks with 1 fb-1','Samuel Calvet, Arnaud Duperrin, Eric Kajfasz','','Arnaud Duperrin','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','','',2007,9,24,2454368,NULL,NULL,NULL,NULL),(5510,'Search for Heavy Resonances Decaying into gamma+jet Final States','B. Calpas, S. Kermiche, E. Nagy','Preliminary estimation on cross section upper limit times \r\nbranching ratio at 95\\% confidence level is given for a hypothetical resonance of mass of 700, 800 and 900 GeV','Elemer Nagy','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5510/m_AnalNote_qstarGamJ_5510.ps','',2007,9,24,2454368,2007,102,4,-1),(5511,'Reconstruction of the Decay Bc --> Jpsi + Pi','Arthur Maciel','','Arthur Maciel','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5511/m_BcNote5511_v1.1.pdf','',2007,10,1,2454375,2008,2,4,2454501),(5512,'Determination of the Sampling Resolution for the CC Region of the EM Calorimeter in Run II','Matthew Wetstein','','Matthew Wetstein','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2007,10,1,2454375,NULL,NULL,NULL,NULL),(5513,'Certification of the Level-3 Impact Parameter b-tagger','Theo Christoudias, Per Jonsson','','Theo Christoudias','ALGORITHMS','DOC','D0_PRIVATE','OTHER','','',2007,10,1,2454375,NULL,NULL,NULL,NULL),(5514,'wz_cafreco: W and Z Selection in Cafe','Gavin Hesketh','','Gavin Hesketh','SOFTWARE_INFRA','ANAL','D0_PRIVATE','POSTSCRIPT','','',2007,10,1,2454375,NULL,NULL,NULL,NULL),(5515,'Fake Jets from Muon Bremsstrahlung in p17 W+(0-5)lp MC','Marc Buehler, Bob Hirosky, Shannon Zelitch','','Shannon Zelitch','@Tˆ','Pëâ¿','D0_PRIVATE','','$D0_PRI/5515/m_d0note5515_fakejetsinp17mcfrommubrem.pdf','',2007,10,3,2454377,2008,2,8,2454505),(5516,'Charge Asymmetry in Top Pair Production','Amnon Harel','','Amnon Harel','TOP','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5516/m_top_charge_asym_conference_note_5516.pdf','',2007,10,4,2454378,2008,5,12,2454599),(5517,'Jet Mass Certification and implication for Top Mass Measurements','Amnon Harel','','Amnon Harel','ALGORITHMS','ðÂí¿','D0_PRIVATE','OTHER','$D0_PRI/5517/m_5517_jet_mass_certification_and_implications_for_top_mass_measurements.pdf','',2007,10,7,2454381,2007,10,7,2454381),(5518,'C++ Interface to GURU unfolding.','Gavin Hesketh','','Gavin Hesketh','ALGORITHMS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5518/m_guru_note.pdf','',2007,10,8,2454382,2007,11,16,2454421),(5519,'SMT calibration and HDI efficiency studies','Md. Naimuddin','','Md. Naimuddin','SILICON','DOC','D0_PRIVATE','','$D0_PRI/5519/m_SMTCalibration_5519.pdf','',2007,10,9,2454383,2007,11,1,2454406),(5520,'AFEII-t Data Readout Format v1.3','Paul Rubinov for the Fiber Tracker Group','','Paul Rubinov','FIBER_TRACKER','MEMO','D0_PRIVATE','OTHER','C:\\Projects\\AFEII-t\\Documents\\AFEII-t readout scheme v13.pdf','',2007,10,9,2454383,2007,12,5,2454440),(5521,'Searches for Higgs and BSM at the Tevatron','Arnaud Duperrin','SUSY07 proceedings - summary of parallel sessions','Arnaud Duperrin','NEW','CONF','D0_PRIVATE','OTHER','$D0_PRI/5521/m_Duperrin_Arnaud_susy07.pdf','',2007,10,11,2454385,2007,10,24,2454398),(5522,'Trigger Efficiency Study for RunII at D0 Using Inclusive Single Muon Sample','SungWoo Youn, Brendan Casey, David Buchholz, Dmitri Tsybychev','','SungWoo YOUN','B_PHYSICS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5522/m_single_muon_eff_1.0.pdf','',2007,10,12,2454386,2007,11,20,2454425),(5523,'Requirements for Monte Carlo Farm Certification','Todd Adams and Joel Snow','','Todd Adams','MC','DOC','D0_PRIVATE','OTHER','','',2007,10,14,2454388,NULL,NULL,NULL,NULL),(5524,'Measurement of the B_c lifetime in the semileptonic decay\r\nB_c -> J/psi mu nu','Leah Welty-Rieger, Rick Van Kooten','Conference note, intended to be submitted to PRL','Rick Van Kooten','B_PHYSICS','CONF','D0_PRIVATE','OTHER','$D0_PRI/5524/m_bc_conf_1_5.pdf','',2007,10,15,2454389,2007,10,31,2454405),(5525,'Study of phi_s and DM_s using tagged and untagged decays\r\nBs -> Jpsi phi. Progress Report IV.','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5525/m_jpsi_phi_tag_4.pdf','',2007,10,17,2454391,2007,10,17,2454391),(5526,'Calculation of confidence regions with the cousins and Feldman method','Amnon Harel, Thorsten Kuhl, Yvonne Peters, Christian Schwanenberger, Elizaveta Shabalina','','Yvonne Peters','TOP','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5526/m_FC_5526.pdf','',2007,10,24,2454398,2008,2,5,2454502),(5527,'Measurement of the ttbar Production Cross-Section at sqrt{s}=1.96 TeV\r\nin the Lepton+Jets Final State using Kinematic information on 1 fb-1 of Data','DooKee Cho, Ulrich Heintz, Meenakshi Narain, Marc-Andre Pleier, Michele Weber, Hwidong Yoo','','DooKee Cho','TOP','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5527/m_5527_ljetsxsectopo.pdf','',2079,10,25,2480697,2008,2,4,2454501),(5528,'Measurement of the ttbar Production Cross-Section at sqrt{s}= 1.96 TeV in the Lepton+Jets Final State using Neural Network b tagging algorithm on 1 fb-1 of Data','DooKee Cho, Ulrich Heintz, Meenakshi Narain, Su-Jung Park, Richard Patridge, Marc-Andre Pleier, , Suharyo Sumowidagdo, Michele Weber, Hwidong Yoo','','DooKee Cho','TOP','PUB','D0_PRIVATE','OTHER','$D0_PRI/5528/m_5528.pdf','',2007,10,25,2454399,2008,2,4,2454501),(5529,'Phi Dependency of the Jet Response in p17 ','A. Grohsjean, A. Juste','','A. Grohsjean','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','','',2007,10,28,2454402,NULL,NULL,NULL,NULL),(5530,'Bs->mumu search. Towards to branching 10^-8.','Yury Scheglov','New ideas for the signal and backround criteria to search for the rare decay Bs->mumu proposed.','Yury Scheglov','B_PHYSICS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5530/m_note5530_ideas_for_bs2mu_search.pdf','',2007,10,28,2454402,2007,11,2,2454407),(5531,'Measurement of the Top Quark Mass in Dilepton and Lepton + Track Events with Neutrino Weighting in\r\nRun II at D0','O. Brandt, R. Kehoe, J.Meyer, A.Quadt, P. Renkel, C. Schwanenberger','','Peter Renkel','TOP','CONF','D0_PRIVATE','POSTSCRIPT','','',2007,10,30,2454404,NULL,NULL,NULL,NULL),(5532,'Results of Pixels Summer 2007 Shutdown Activities ','V. Bezzubov, A. Brezhnev, O. Stenyakin, I. Vasilyev, D. Denisov','Results of Pixels Summer 2007 Shutdown Activities','V. Bezzubov','MUON','DOC','D0_PRIVATE','OTHER','$D0_PRI/5532/m_5532.pdf','',2007,11,1,2454406,2007,11,1,2454406),(5533,'Tau energy corrections for data and MC in p17','Cristina Galea, Catherine Biscarat, Jan Stark, Sijbrand de Jong','','Cristina Galea','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5533/m_tau_energy_scale_p17.ps','',2007,11,3,2454408,2007,11,3,2454408),(5534,'Matrix Method Uncertainties','Ulrich Heintz','','Ulrich Heintz','TOP','DOC','D0_PRIVATE','OTHER','$D0_PRI/5534/m_5534_mmerror.pdf','',2007,11,4,2454409,2007,11,4,2454409),(5535,'Existing Constraints on a fourth standard model generation','Leo Bellantoni','','Leo Bellantoni','NEW','PHYS','D0_PRIVATE','OTHER','$D0_PRI/5535/m_G4_STU_5535.pdf','',2007,11,5,2454410,2007,11,5,2454410),(5536,'Combined CDF and Dzero Upper Limits on Standard-Model Higgs-Boson Production','The Tevatron NP-Higgs working group (TEVNPHWG) for the CDF and D0 Collaborations','','Gregorio Bernardi','@Tˆ','CONF','D0_PRIVATE','','','',2007,11,8,2454413,NULL,NULL,NULL,NULL),(5537,'Search for the Higgs Boson in H --> W W^* --> l l\'~(l,l\' = e,mu) decays with up to 1.7 fb-1 at DO in Run II','Harald Fox, Maxim Titov','','Maxim Titov','@Tˆ','CONF','D0_PRIVATE','','$D0_PRI/5537/m_HWW-5537-CONF.pdf','',2007,11,8,2454413,2007,11,28,2454433),(5538,'Search for the Higgs boson in H->WW*->mumu decays with \r\n1.7 fb-1 at D0 in RunII','H. Fox','','Harald Fox','MUON','PHYS','D0_PRIVATE','OTHER','','',2007,11,8,2454413,NULL,NULL,NULL,NULL),(5539,'Search for Warm Regions in the EM Calorimeter in p20 Data','Oleksiy Atramentov, Edgar Carrera','Procedure for identifying warm regions in the EM calorimeter.','Edgar Carrera','CALORIMETER','MEMO','D0_PRIVATE','OTHER','$D0_PRI/5539/m_EMwarmregions.pdf','',2007,11,8,2454413,2007,11,8,2454413),(5540,'RunIIb longitudinal beam shape','Heidi Schellman','','Schellman','SOFTWARE_INFRA','DOC','D0_PRIVATE','OTHER','$D0_PRI/5540/m_5540.pdf','',2007,11,15,2454420,2007,11,15,2454420),(5541,'Combination of ttbar-pair production cross section measurements in the lepton+jets channel','Dookee Cho, Ulrich Heintz, Meenakshi Narain, Hwidong Yoo','','Ulrich Heintz','TOP','DOC','D0_PRIVATE','OTHER','$D0_PRI/5541/m_5541.pdf','',2007,11,19,2454424,2008,2,28,2454525),(5542,'First observation of the decay\r\nBs -> Jpsi K^*(892)^0','B. Hoeneisen','','Bruce Hoeneisen','B_PHYSICS','ANAL','D0_PRIVATE','OTHER','$D0_PRI/5542/m_BF_Bs_Jpsi_Kstar_d0note5542.pdf','',2007,11,23,2454428,2008,1,29,2454495),(5543,'A measurement of Z boson+Jets differential production cross sections','Britta Tiller, Thomas Nunnemann','','Britta Tiller','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','','',2007,11,28,2454433,NULL,NULL,NULL,NULL),(5544,'A Measurement of Di-boson Production in Lepton plus Jets Decays','Joe Haley, Wade Fisher','','wfisher','NEW','ANAL','D0_PRIVATE','OTHER','','',2007,12,1,2454436,NULL,NULL,NULL,NULL),(5545,'Artificial neural network for Run IIb electron and photon identification','Xuebing Bu, Yanwen Liu','','Xuebing BU','ALGORITHMS','DOC','D0_PRIVATE','TEXT','$D0_PRI/5545/m_p20_ANN_note5545.ps','',2007,12,2,2454437,2007,12,2,2454437),(5546,' A Measurement of WW+WZ Production in the Muon+jets Final State','Jadranka Sekaric','','Jadranka Sekaric','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','','',2007,12,5,2454440,NULL,NULL,NULL,NULL),(5547,'L3 muon trigger study','S chakrabarti','','Subhendu Chakrabarti','TRIGGER','DOC','D0_PRIVATE','POSTSCRIPT','','',2007,12,9,2454444,NULL,NULL,NULL,NULL),(5548,'A new approach to use b-tagging information tested on semileptonic ttbar decays','Petra Haefner','','Petra Haefner','TOP','PHYS','D0_PRIVATE','OTHER','','',2007,12,11,2454446,NULL,NULL,NULL,NULL),(5549,'Single jet trigger efficiencies in Run IIa','Mikko Voutilainen','Trigger efficiencies used in inclusive jet cross section measurement','Mikko Voutilainen','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5549/m_jettriggeff_run2a_5549_v1.pdf','',2007,12,13,2454448,2008,1,31,2454497),(5550,'Jet Four-vector Scale Determination for Dijets in D0 Run IIa (final p17 version)','Mikko Voutilainen, JES Group','Extension of final p17 JES (D0 Note 5382) to dijet events','Mikko Voutilainen','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5550/m_dijetJ4S_5550_v1.pdf','',2007,12,13,2454448,2008,1,30,2454496),(5551,'Measurement of the Inclusive Jet Cross Section in p\\bar(p) Collisions in D0 Run II at sqrt(s)=1.96 TeV','Mikko Voutilainen, Alexander Kupco, Christophe Royon','','Mikko Voutilainen','QCD','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5551/m_incljet_RunIIa_700pb_5551_v1.pdf','',2007,12,13,2454448,2008,1,31,2454497),(5552,'Search for a heavy charged higgs boson reconstructed in the tb final state','E.E. Boos, V. Bunichev, L. Dudko, G. Kertzscher, C. Potter, B. Vachon','','Brigitte Vachon','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5552/m_chargedhiggs_v1.pdf','',2007,12,13,2454448,2008,2,28,2454525),(5553,'Top quark mass measurement in the lepton+jets channel using the ideogram method in Run II','Pieter Houben and Michele Weber','analysis note describing the ideogram top quark mass measurement on 1 fb-1 to be shown at the winter 2008 conferences','Pieter Houben','TOP','ANAL','D0_PRIVATE','POSTSCRIPT','','',2007,12,14,2454449,NULL,NULL,NULL,NULL),(5554,'Performance of the Dzero NN b-tagging Tool on p20 Data','T. Gadfort, A. Haas, D. Johnston, D. Lincoln, T. Scanlon, S. Schlobohm','Internal only','Don Lincoln','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5554/m_p20_bid_cert.pdf','',2007,12,19,2454454,2008,2,27,2454524),(5555,'Preliminary jet energy scale calibration for Run IIb data','Georgy Golovanov, Ulrich Heintz, Shabnam Jabeen, Alexander Kupco','','Ulrich Heintz','ALGORITHMS','DOC','D0_PRIVATE','OTHER','','',2007,12,20,2454455,NULL,NULL,NULL,NULL),(5556,'Search for a scalar or vector particle decaying into Z gamma in DO Run IIa data','Vesna Cuplov, Alexey Ferapontov, Andrew Alton, Ruslan Averin and Yurii Maravin','','Vesna Cuplov','WZ','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5556/m_zg_bump_v1.14.pdf','',2007,12,21,2454456,2008,2,25,2454522),(5557,'A Soft Muon Tagger with Neural Network on p17 Data','Hwidong Yoo, Rich Partridge','','Hwidong Yoo','ALGORITHMS','PHYS','D0_PRIVATE','OTHER','','',2007,12,28,2454463,NULL,NULL,NULL,NULL),(5558,'b-Quark Tagging in Charged Higgs Boson Searches','Andre Sopczak','','Andre Sopczak','@Tˆ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2007,12,28,2454463,NULL,NULL,NULL,NULL),(5559,'Determination of the D0 RunIIb Luminosity Constants','Brendan Casey, Marj Corcoran, Yuji Enari, Michelle Prewitt, Greg Snow ','','Marj Corcoran','@Tˆ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5559/m_run2b_lumi_constant_d05559.pdf','',2007,12,30,2454465,2008,4,23,2454580),(5560,'Reconstruction of a Bs -> Ds(phi pi) pi + X signal at DØ','Thorsten Kuhl, Stefan Tapprogge, Gernot Weber','','Gernot Weber','B_PHYSICS','CONF','D0_PRIVATE','OTHER','','',2008,1,2,2454468,NULL,NULL,NULL,NULL),(5561,'Luminosity determination and reweighting of Monte Carlo overlay luminosity for p17 hadronic top analyses','Jeroen Hegeman','','Jeroen Hegeman','TOP','PHYS','D0_PRIVATE','OTHER','','',2008,1,3,2454469,NULL,NULL,NULL,NULL),(5562,'Event data quality efficiency for the p17 hadronic top cross section analyses','Jeroen Hegeman','','Jeroen Hegeman','TOP','PHYS','D0_PRIVATE','OTHER','','',2008,1,4,2454470,NULL,NULL,NULL,NULL),(5563,'Capping the JES muon corrections','Amnon Harel','','Amnon Harel','ALGORITHMS','DOC','D0_PRIVATE','OTHER','$D0_PRI/5563/m_muonCap_D0_note_5563.pdf','',2008,1,9,2454475,2008,1,14,2454480),(5564,'A Study of Electron Charge Misidentification in Run IIa Data','A. Askew, D. Khatidze, H. Yin, J. Zhu','','Andrew Askew','WZ','MEMO','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5564/m_d0note_5564.ps','',2008,1,9,2454475,2008,3,5,2454531),(5568,'A search for the SM Higgs boson in the ZH->nunubb channel at Dzero','Jean-Francois Grivaz, Remigius K Mommsen, Christophe Ochando, Krisztian Peters','Long analysis note','Remi Mommsen','@Tˆ','ANAL','D0_PRIVATE','','$D0_PRI/5568/m_zh_p20_v1.0.pdf','',2008,1,22,2454488,2008,3,2,2454528),(5569,'Jet Multiplicity Dependent Reweighting of the Z Boson pT in p20','Daniel Boline','','Dan Boline','NEW','PHYS','D0_PRIVATE','OTHER','','',2008,1,22,2454488,NULL,NULL,NULL,NULL),(5570,'Combined cross section limits on ZH production with 2.3 fb-1 of Run II data','Taka Yasuda and others','','Taka Yasuda','HIGGS','PHYS','D0_PRIVATE','PDF','','',2008,1,25,2454491,NULL,NULL,NULL,NULL),(5571,'p17 Alpgen Z pt reweighting','Bertrand Martin','','Bertrand Martin','TOP','DOC','D0_PRIVATE','PDF','','',2008,1,26,2454492,NULL,NULL,NULL,NULL),(5572,'Sample Dependent Correction to the Jet Energy Scale.','Daniel Boline','','Dan Boline','NEW','PHYS','D0_PRIVATE','OTHER','','',2008,1,28,2454494,NULL,NULL,NULL,NULL),(5573,'Search for light scalar top quark pair production in the bb emu snusnu decay channel with 1.1 fb-1.','F. Tissandier, Ph. Gris','','TISSANDIER Fabrice','NEW','ANAL','D0_PRIVATE','PDF','$D0_PRI/5573/m_D0note_StopEMu_1invfb.pdf','',2008,1,29,2454495,2008,2,29,2454526),(5574,'ZZ->llnunu production in ppbar collisions at sqrt(s)=1.96 TeV ','E. Barberis, G. Cerminara, G. Hesketh, J. Hobbs, E. Strauss, T. Wyatt, D. Wood ','','G. Cerminara','WZ','ANAL','D0_PRIVATE','PDF','$D0_PRI/5574/m_analysis_note_5574_v4.2.pdf','',2008,1,29,2454495,2008,3,6,2454532),(5575,'Search for the Higgs boson in H->WW->ee decays at D0\r\nusing Neural Networks and Matrix Elements','Bjoern Penning, Ralf Bernhard, Dale Johnston, Aaron Dominguez','','Bjoern Penning','HIGGS','ANAL','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5575/m_5575_Hwwee_w08_v06.pdf','',2008,1,29,2454495,2008,2,27,2454524),(5576,'Search for ZH to mumubb using p20 Data','L. Ancu, M. Kirby','','Michael Kirby','HIGGS','ANAL','D0_PRIVATE','PDF','$D0_PRI/5576/m_D05576_p20_zh_muon_v1.00.pdf','',2008,1,29,2454495,2008,5,8,2454595),(5577,'Search for Neutral Higgs Boson Production in the Decay tau(mu)tau(had) (Final p17 Results)','Mark Owen and Stefan Soldner-Rembold','','markowen','HIGGS','ANAL','D0_PRIVATE','PDF','','',2008,2,1,2454498,NULL,NULL,NULL,NULL),(5578,'Combination of p17 h->tautau Search Results','Mark Owen, Wan-Ching Yang, Stefan Soldner-Rembold and Maxim Titov','','markowen','HIGGS','ANAL','D0_PRIVATE','PDF','','',2008,2,1,2454498,NULL,NULL,NULL,NULL),(5579,'Final Measurement of the ttbar production cross section at sqrt(s)= 1.96 TeV in the ee final state using p17 data set','B. Martin, Y. Arnoud, G. Sajot, E. Shabalina','Updated result for publication','Christian Schwanenberger','TOP','ANAL','D0_PRIVATE','PDF','','',2008,2,1,2454498,NULL,NULL,NULL,NULL),(5580,'Final Measurement of the ttbar Production Cross-section at sqrt(s)=1.96 TeV in Electron Muon Final States using p17 data set','M. Arthaud, M. Besancon, S. Chakrabarti, F. Deliot, V. Sharyy','Updated result for publication','Christian Schwanenberger','TOP','ANAL','D0_PRIVATE','PDF','','',2008,2,1,2454498,NULL,NULL,NULL,NULL),(5581,'Final Measurement of the ttbar Production Cross-section at sqrt(s)=1.96 TeV in the Dimuon Final State Using p17 Data Set','U. Bassler, J. P. Konrath, C. Schwanenberger, E. Shabalina','Updated result for publication','Christian Schwanenberger','TOP','ANAL','D0_PRIVATE','PDF','','',2008,2,1,2454498,NULL,NULL,NULL,NULL),(5582,'NLO and NNLO calculations of inclusive vector boson transverse momentum distributions using the Melnikov-Petriello code','Heidi Schellman, Northwestern University','','Heidi Schellman','WZ','PHYS','D0_PRIVATE','PDF','$D0_PRI/5582/m_d0note_5582_melnikov_petriello_pt.pdf','',2008,2,1,2454498,2008,2,1,2454498),(5583,'A search for charged Higgs bosons in the decay of top quark pairs','Diego Menezes, Dhiman Chakraborty, Mikhail Arov, Supriya Jain, Phillip Gutierrez','','Supriya Jain','TOP','PHYS','D0_PRIVATE','','','',2008,2,4,2454501,NULL,NULL,NULL,NULL),(5584,'Search for $t\\bar{t}$ Resonance in the Lepton+Jets Final State in $p\\bar p$ Collisions at $\\sqrt{s}=1.96\\TeV$','Thorsten Schliephake, Daniel Wicke','','Thorsten Schliephake','TOP','ANAL','D0_PRIVATE','PDF','','',2008,2,4,2454501,NULL,NULL,NULL,NULL),(5585,'Measurement of the Top Quark Mass in the Lepton+Jets Final State of Top Quark Pair Production Using Matrix Element Method on 1.2 fb^{-1} Dzero RunIIb Data','Gaston Gutierrez, Michael Wang, Zhenyu Ye','','Zhenyu Ye','TOP','ANAL','D0_PRIVATE','PDF','$D0_PRI/5585/m_5585_p20_topmass_ljets_ME_v5.1.pdf','',2008,2,5,2454502,2008,3,13,2454539),(5586,'Search for the standard model Higgs boson in the HZ->bbvv channel in 2.1 fb-1 of ppbar collisions at sqrt(s)=1.96 TeV','R. Mommsen, K. Peters, J.-F. Grivaz and C. Ochando','Conference note for Winter 2008 conferences','J.-F. Grivaz','HIGGS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5586/m_Hvv_Moriond-08.pdf','',2008,2,5,2454502,2008,2,29,2454526),(5587,'Trigger Efficiency Measurement for the OR of Electron Muon Triggers','Frederic Deliot, Viatcheslav Sharyy','','Frederic Deliot','TRIGGER','PHYS','D0_PRIVATE','PDF','$D0_PRI/5587/m_5587.pdf','',2008,2,7,2454504,2008,3,12,2454538),(5588,' A Search for ppbar-> H -> tau^+tau^- with 1 fb^-1 at sqrt{s} = 1.96 TeV','Cristina Galea, Sijbrand de Jong, Peter Svoisky','','Cristina Galea','HIGGS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5588/m_H_tau_tau_p17_5588note.ps','',2008,2,7,2454504,2008,2,7,2454504),(5589,'ALPGEN cross section in FOME metadata','Gerald Grenier','','grenier','MC','DOC','D0_PRIVATE','PDF','$D0_PRI/5589/m_5589_alpgenXsec.pdf','',2008,2,8,2454505,2008,2,8,2454505),(5590,'Measurement of the top quark mass in the lepton+jets channel with the matrix element method on 1fb-1 of RunIIa Data','R. Demina, T. Ferbel, F. Fiedler, C. Garcia, G. Gutierrez, P. Haefner, M. Wang','conference note','Michael Wang','TOP','CONF','D0_PRIVATE','','','',2008,2,9,2454506,NULL,NULL,NULL,NULL),(5591,'Production cross section for ttbar pairs in ppbar collisons at sqrt(s) = 1.96 TeV','Dookee Cho, Ulrich Heintz, Meenakshi Narain, Richard Partridge, Hwidong Yoo','','Ulrich Heintz','TOP','CONF','D0_PRIVATE','PDF','$D0_PRI/5591/m_5591.pdf','',2008,2,9,2454506,2008,2,28,2454525),(5592,'Search for a light Higgs boson in di-photon final states at D0 ','Xuebing Bu, Liang Han, Yanwen Liu','','Xuebing BU','HIGGS','ANAL','D0_PRIVATE','PDF','$D0_PRI/5592/m_p20_hgg_note5592_v2.1.pdf','',2008,2,10,2454507,2008,2,28,2454525),(5593,'Verification of Charged Higgs MC Samples','Frederique Badaud, Florent Lacroix, Supriya Jain, Dhiman Chakraborty, Phillip Gutierrez, Sohrab Hossain, Mike Arov, Todd Adams, Suharyo Sumowidagdo','','Supriya Jain','TOP','PHYS','D0_PRIVATE','PDF','$D0_PRI/5593/m_hplustests.pdf','',1987,2,10,2446837,1987,2,10,2446837),(5594,'Search for First-Generation Leptoquarks in the dielectron channel with the D0 Detector in ppbar Collisions at sqrt(s)=1.96 TeV','A.-F. Barfuss\r\nM.-C. Cousinou','','Anne-Fleur Barfuss','NEW','ANAL','D0_PRIVATE','POSTSCRIPT','','',2008,2,11,2454508,NULL,NULL,NULL,NULL),(5595,'Collie: A Confidence Level Limit Evaluator','Wade Fisher','A description of the algorithms used in the Collie software package.','Wade Fisher','HIGGS','DOC','D0_PRIVATE','PDF','','',2008,2,12,2454509,NULL,NULL,NULL,NULL),(5596,'Search for Neutral Higgs Bosons at High tan beta in the b(h/H/A)->tau tau Channel in RunIIa','A. Goussiou, Y. Pogorelov, R. Ruchti, P. Svoisky','','P. Svoisky','HIGGS','ANAL','D0_PRIVATE','PDF','','',2008,2,12,2454509,NULL,NULL,NULL,NULL),(5597,'Combination of the top quark pair production cross section','Todd Adams, Jochen Cammin, Frederic Deliot, Amnon Harel, Jens-Peter Konrath, Bertrand Martin, Yvonne Peters, Christian Schwanenberger, Elizaveta Shabalina, Viatcheslav Sharyy, Haryo Sumowidagdo, Daniel Wicke','Combination using final p17 cross section measurements','Christian Schwanenberger','TOP','ANAL','D0_PRIVATE','PDF','','',2008,2,13,2454510,NULL,NULL,NULL,NULL),(5598,'Search for pair production of the supersymmetric partner of the top quark in the bbemusneutsneut decay channel at D0','Fabrice Tissandier and Philippe Gris','','Philippe Gris','NEW','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5598/m_D0confnote_v1.1.pdf','',2008,2,14,2454511,2008,2,29,2454526),(5599,'Constraints on the top quark mass from the $t\\overline{t}$-pair production cross section','Ulrich Heintz','','Ulrich Heintz','TOP','ANAL','D0_PRIVATE','PDF','','',2008,2,14,2454511,NULL,NULL,NULL,NULL),(5600,'Search for ttbar Resonance in the Lepton+Jets Final State in ppbar Collisions at sqrt{s}=1.96TeV','Thorsten Schliephake and Daniel Wicke','','Thorsten Schliephake','TOP','CONF','D0_PRIVATE','PDF','','',2008,2,18,2454515,NULL,NULL,NULL,NULL),(5601,'Search for a light Higgs boson in $\\gamma\\gamma$ final states at D\\O','Xuebing Bu, Liang Han, Yanwen Liu','','Xuebing Bu','HIGGS','CONF','D0_PRIVATE','PDF','$D0_PRI/5601/m_hgg_conference_20080219_v2.2.pdf','',2008,2,18,2454515,2008,2,28,2454525),(5602,'Search for Wprime boson production in the top quark decay channel','Tulika Bose, Meenakshi Narain\r\nBrown University\r\n\r\nE. Boos, V. Bunichev, L. Dudko, M. Perfilov\r\nMoscow State University\r\n','','Meenakshi Narain','TOP','PHYS','D0_PRIVATE','PDF','','',2008,2,19,2454516,NULL,NULL,NULL,NULL),(5603,'Measurement of the Forward-Backward Charge Asymmetry in ppbar -> Z/gamma* + X -> ee + X events produced at sqrt{s} = 1.96 TeV','Liang Han, Yanwen Liu, Hang Yin, Junjie Zhu','','Junjie Zhu','WZ','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5603/m_5603.pdf','',2008,2,19,2454516,2008,4,30,2454587),(5604,'Single Top Quark Production at the Fermilab Tevatron Collider','Jovan Mitrevski on behalf of the CDF and D0 Collaborations\r\n\r\n','Talk given at International Conference on Hadron Structure (HS 07), Modra-Harmonia, Slovakia, 3-7 Sep 2007.','Jovan Mitrevski','TOP','CONF','D0_PRIVATE','PDF','$D0_PRI/5604/m_5604_hs07_singletop.pdf','',2008,2,20,2454517,2008,2,20,2454517),(5605,'Measurement of a Fake-Tag Rate Scale Factor in p20 Data','Tim Scanlon\r\nAndrew Kobach','','Tim Scanlon','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','','',2008,2,21,2454518,NULL,NULL,NULL,NULL),(5606,'Measurement of ttbar Production Cross Section in the Lepton + Tau + b-jet(s) + Missing Transverse Energy Channel Using 1.2 fb$^{-1}$ of Run IIb Data','F. Badaud, F.Lacroix','','F. Badaud','TOP','Àïð¿','D0_PRIVATE','PDF','','',2008,2,21,2454518,NULL,NULL,NULL,NULL),(5607,'Measurement of ttbar Production Cross Section in the Lepton + Tau + b-jet(s) + Missing Transverse Energy Channel Using 1.2 fb$^{-1}$ of Run IIb Data','F. Badaud, F.Lacroix','Conference note','F. Badaud','TOP','CONF','D0_PRIVATE','PDF','','',2008,2,21,2454518,NULL,NULL,NULL,NULL),(5608,'Measurement of the Bc meson mass in the exclusive decay \r\nBc --> Jpsi + Pi','Arthur Maciel','D0 conference note','Arthur Maciel','B_PHYSICS','CONF','D0_PRIVATE','PDF','','',2008,2,22,2454519,NULL,NULL,NULL,NULL),(5609,'SSR for p17','C. Ochando and J.-F. Grivaz','','J.-F. Grivaz','ALGORITHMS','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5609/m_SSR_p17.ps','',2008,2,23,2454520,2008,2,23,2454520),(5610,'Measurement of the Top Quark Mass in the Lepton+Jets Channel Using the Matrix Element Method on 2.1 fb^{-1} of D0 RunII Data ','Gaston Gutierrez, Michael Wang, Zhenyu Ye','','Zhenyu Ye','TOP','CONF','PUBLIC','PDF','$D0_PRI/5610/m_5610_p17p20_topmass_ljets_ME_v3.02.pdf','',2008,2,24,2454521,2008,3,13,2454539),(5611,'A Search for ZH-> eebbbar Production with the D0 Detector in pbarp Collisions at sqrt{s} = 1.96 TeV using Run 2b data','Taka Yasuda','','Taka Yasuda','HIGGS','CONF','D0_PRIVATE','PDF','$D0_PRI/5611/m_D0note5611_p20_zh_electron_conf_v1.22.pdf','',2008,2,25,2454522,2008,2,28,2454525),(5612,'Search for Large Extra Dimensions in the Monophoton Final State with 1.0 fb^{-1}','Edgar Carrera, Alexey Ferapontov, Yuri Gershtein, and Yurii Maravin','Conference Note to be presented at winter 2008 conferences','Edgar Carrera','NEW','CONF','D0_PRIVATE','PDF','$D0_PRI/5612/m_ledMonophoton_v1.02.pdf','',2008,2,26,2454523,2008,3,3,2454529),(5613,'Search for $t\\bar{t}$ Resonance in the Lepton+Jets Final State in $p\\bar p$ Collisions at $\\sqrt{s}=1.96\\TeV$','Thorsten D. Schliephake, Daniel Wicke','','Thorsten D. Schliephake','TOP','ANAL','D0_PRIVATE','PDF','','',2008,2,27,2454524,NULL,NULL,NULL,NULL),(5614,'Search for the Higgs boson in $H \\rightarrow W W^* \\rightarrow e \\mu$ decays at D0','Ralf Bernhard, Bjoern Penning','','Ralf Bernhard','NEW','ANAL','D0_PRIVATE','PDF','$D0_PRI/5614/m_5614_HWW_emu_Jan08_v0.4.pdf','',2008,2,27,2454524,2008,2,27,2454524),(5615,'Forward Muon Yields from July 2006 to January 2008','D.Denisov,S.Kulikov,A.Shchukin','','Kulikov','MUON','PUB','D0_PRIVATE','PDF','$D0_PRI/5615/m_5615.pdf','',2008,2,27,2454524,2008,2,27,2454524),(5616,'First Measurement of Dijet Angular Distributions in the TeV Regime','Nirmalya Parua, Markus Wobisch','','Markus Wobisch','QCD','PHYS','D0_PRIVATE','PDF','','',2008,2,28,2454525,NULL,NULL,NULL,NULL),(5617,'Search for Large Extra Dimensions in the Monophoton Final State with 1.0 fb^{-1}','Edgar Carrera, Alexey Ferapontov, Yuri Gershtein, and Yurii Maravin','Analysis Note','Edgar Carrera','NEW','PHYS','D0_PRIVATE','PDF','$D0_PRI/5617/m_AnalysisNote_v1.04.pdf','',2008,2,28,2454525,2008,3,4,2454530),(5618,'D0 B0s Oscillation Combination for Summer 2007','H. Evans, T. Moulik','Combination of preliminary, summer 2007 results for HFAG','Hal Evans','B_PHYSICS','CONF','D0_PRIVATE','','$D0_PRI/5618/m_5618_BsComb_v1.2.pdf','',2008,2,28,2454525,2008,5,2,2454589),(5619,'Z+jets Differential Cross Sections','Gavin Hesketh','','Gavin Hesketh','QCD','ANAL','D0_PRIVATE','PDF','$D0_PRI/5619/m_zjets_note_4_1.pdf','',2008,2,28,2454525,2008,3,19,2454545),(5620,'ZZ->l+l-nunu production in ppbar collisions at sqrt(s)= 1.96 TeV','E. Barberis, G. Cerminara, G. Hesketh, J. Hobbs, E. Strauss, D. Wood, T. Wyatt','','Emanuela Barberis','WZ','CONF','D0_PRIVATE','PDF','$D0_PRI/5620/m_conf_note_5620_v2.6.pdf','',2008,2,28,2454525,2008,3,6,2454532),(5621,'Indirect Charged Higgs Boson Search in e\\mu, e+e- and \\mu+\\mu- Final States','Dan Boline, Tord Ekelof, Andre Sopczak','','Andre Sopczak','TOP','PHYS','D0_PRIVATE','PDF','','',2008,3,1,2454527,NULL,NULL,NULL,NULL),(5622,'Combined CDF and Dzero Upper Limits on Standard-Model Higgs-Boson Production with up to 2.4 fb-1 of data','The Tevatron NP-Higgs working group (TEVNPHWG) for the CDF and D0 Collaborations, G. Bernardi,W. Fisher','','Gregorio Bernardi','HIGGS','PUB','D0_PRIVATE','POSTSCRIPT','','',2008,3,3,2454529,NULL,NULL,NULL,NULL),(5623,'Search for H->WW->mumu using 1.2/fb of Run IIb Data','Thomas Gadfort, Andy Haas','','haas','HIGGS','PHYS','D0_PRIVATE','PDF','','',2008,3,3,2454529,NULL,NULL,NULL,NULL),(5624,'Search for H->WW->ll using 1.2/fb of Run IIb Data','Ralf Bernhard, Thomas Gadfort, Andy Haas, Bjoern Penning','','haas','HIGGS','CONF','D0_PRIVATE','PDF','','',2008,3,3,2454529,NULL,NULL,NULL,NULL),(5625,'Combined Upper Limits on Standard Model Higgs Boson Production from the DZero Experiment in 1.0-2.3 fb-1','DZero Collaboration','','Wade Fisher','HIGGS','CONF','D0_PRIVATE','PDF','$D0_PRI/5625/m_5625.pdf','',2008,3,3,2454529,2008,3,10,2454536),(5626,'Combination of CDF and D0 Results on the Mass of the Top Quark','TEVEWWG','Public','mwg@fnal.gov','TOP','PUB','PUBLIC','POSTSCRIPT','$D0_PRI/5626/m_top0803.ps','',2008,3,4,2454530,2008,3,13,2454539),(5627,'Measurement of the cross section for $Z/\\gamma^*{\\rightarrow}e^+e^-$ production at D\\O\\','Harald Fox, Jonathan Hays, Carsten Hensel, Robert Illingworth, James Kraus, Heidi Schellman, Joe Steele, Mike Strang, Sahal Yacoo','','schellman','WZ','ANAL','D0_PRIVATE','PDF','$D0_PRI/5627/m_zcross_3.3.pdf','',2008,3,5,2454531,2008,3,5,2454531),(5628,'Stability checks of the tracking alignment','Wenger Andreas, Guennadi Borissov, Ralf Bernhard','','Wenger Andreas','ALGORITHMS','DOC','D0_PRIVATE','PDF','$D0_PRI/5628/m_5628.pdf','',2008,3,7,2454533,2008,3,11,2454537),(5629,'Understanding Biases in the Tag and Probe Method for Electron Efficiency Determination for the Second Pass Z Cross Section Analysis','J.~Hays','','haysjm','WZ','ANAL','D0_PRIVATE','PDF','$D0_PRI/5629/m_5629_TagAndProbeBiasZtoElectrons.pdf','',2008,3,10,2454536,2008,5,16,2454603),(5630,'Search for The Associated Production of Charginos and Neutralinos in the muon+tau+lep Final State','Ingo Torchiani','','Ingo Torchiani','NEW','ANAL','D0_PRIVATE','PDF','','',2008,3,12,2454538,NULL,NULL,NULL,NULL),(5631,'Combination of CDF and D0 Results on the W Boson Mass and Width','TEVEWWG','','mwg@fnal.gov','WZ','PUB','D0_PRIVATE','POSTSCRIPT','','',2008,3,13,2454539,NULL,NULL,NULL,NULL),(5632,'Search for Direct Monopole Production with the D0 Detector at $\\sqrt{s}$ = 1.96 TeV','Oleksiy Atramentov, Alexander Rakitin','','Oleksiy Atramentov','NEW','PHYS','D0_PRIVATE','','','',2008,3,14,2454540,NULL,NULL,NULL,NULL),(5633,'Measurement of the Top Quark Mass in Dilepton and Lepton + Track Events with Neutrino Weighting in Run II at D0 with 1fb-1','O. Brandt et. al.','','renkel','TOP','PHYS','D0_PRIVATE','PDF','','',2008,3,17,2454543,NULL,NULL,NULL,NULL),(5634,'p20 Jet ID Efficiencies and Scale Factors','Jiri Kvita, Amnon Harel','','Jiri Kvita','ALGORITHMS','DOC','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5634/m_p20JetID_Efficiencies_d0note5634.ps','',2008,3,19,2454545,2008,4,22,2454579),(5635,'p20 electron track match parameters study','Dmitry Bandurin, Oleksiy Atramentov, Yanwen Liu, Hang Yin','In this note we study p20 electron track match parameters. Using new dependence of offset and width of sigma eta/phi, we get better background rejection.','Hang Yin','CALORIMETER','DOC','D0_PRIVATE','PDF','','',2008,3,20,2454546,NULL,NULL,NULL,NULL),(5636,'Measurement of Top Quark Fraction in Events with 3 Jets, 1 Muon and Missing Transverse Energy','Martin Erdmann, Anna Henrichs, Matthias Kirsch','','Matthias Kirsch','TOP','PHYS','D0_PRIVATE','PDF','$D0_PRI/5636/m_TopFraction_3Jets_5636.pdf','',2008,3,27,2454553,2008,3,27,2454553),(5637,'Search for SM Higgs Boson in the $b$-Jets plus $\\etmiss$ Channel using Muon Tagging','Sergey Uzunyan, David Hedin','','Sergey Uzunyan','HIGGS','PHYS','D0_PRIVATE','PDF','$D0_PRI/5637/m_ZHmutag5637_v0.99.pdf','',2008,3,28,2454554,2008,3,28,2454554),(5638,'Measurement of the Fraction of Double Pomeron Exchange in Inclusive Dijets Production','Renata Rodrigues, Jorge Barreto, Gilvan Alves, Alberto Santoro ,Andre Sznajder','In this note we present the Fraction of Inclusive Dijets which comes from Double Pomeron Exchange.','Renata Figueiredo Rodrigues','QCD','PHYS','D0_PRIVATE','PDF','','',2008,3,31,2454557,NULL,NULL,NULL,NULL),(5639,'Search for Admixture of Scalar Top in the ttbar Lepton+Jets Final State at sqrt(s)=1.96 TeV','Regina Demina, Su-Jung Park','','Su-Jung Park','TOP','ANAL','D0_PRIVATE','PDF','','',2008,4,1,2454558,NULL,NULL,NULL,NULL),(5640,'Measurement of the Top Quark Mass with the Matrix Element Method in the Dilepton Channel','Frank Fiedler, Alexander Grohsjean','','Alexander Grohsjean','TOP','ANAL','D0_PRIVATE','PDF','$D0_PRI/5640/m_mtopmemll_5640_0208.pdf','',2008,4,2,2454559,2008,4,2,2454559),(5641,'Branching Ratio and Lifetime Difference in $B_s$ System','SungWoo YOUN, Brendan Casey, David Buchholz','','SungWoo YOUN','B_PHYSICS','DOC','D0_PRIVATE','PDF','$D0_PRI/5641/m_bs_dsds_1.1.pdf','',2008,4,3,2454560,2008,4,20,2454577),(5642,'Triple-Product Correlations in $B_{s}\\rightarrow J/\\psi \\phi$ Decays','Derek Strom','','Derek Strom','B_PHYSICS','DOC','D0_PRIVATE','PDF','$D0_PRI/5642/m_tripleproduct_bs.pdf','',2008,4,4,2454561,2008,4,4,2454561),(5643,'','','','005428','@Tˆ',' /÷¿','D0_PRIVATE','','','',2008,4,7,2454564,NULL,NULL,NULL,NULL),(5644,'Search for First-Generation Leptoquarks in the dielectron channel with the D0 Detector in ppbar collisions at sqrt(s)=1.96 TeV','A.-F. Barfuss\r\nM.-C. Cousinou','','Anne-Fleur Barfuss','NEW','CONF','D0_PRIVATE','','','',2008,4,10,2454567,NULL,NULL,NULL,NULL),(5645,'Combined CDF and Dzero Upper Limits on Standard-Model Higgs-Boson Production with up to 2.4 fb-1 of data','The Tevatron NP-Higgs working group (TEVNPHWG) for the CDF and D0 Collaborations, G. Bernardi,W. Fisher','This note updates note 5622, by including the LLR plot and a slightly different treatment of the systematics when deriving the limits.','Gregorio Bernardi','HIGGS','PUB','D0_PRIVATE','POSTSCRIPT','','',2008,4,10,2454567,NULL,NULL,NULL,NULL),(5646,'Search for the Associated Production of Chargino and Neutralino in the eel Final State','Volker Buescher, Marc Hohlfeld, Olav Mundal','','Olav Mundal','NEW','PHYS','D0_PRIVATE','PDF','$D0_PRI/5646/m_5646_trilep_phys.pdf','',2008,4,14,2454571,2008,4,14,2454571),(5647,'A Soft Muon Tagger with Neural Network on p20 Data','David Jamin, Arnaud Duperrin, Hwidong Yoo','','Arnaud Duperrin','ALGORITHMS','DOC','D0_PRIVATE','PDF','','',2008,4,14,2454571,NULL,NULL,NULL,NULL),(5648,'Matching Lognormal and Gaussian Shapes for Systematic Uncertainties.','Jim Linnemann','','Jim Linnemann','@Tˆ','DOC','D0_PRIVATE','PDF','','',2008,4,19,2454576,NULL,NULL,NULL,NULL),(5649,'Search for Anomalous Wtb couplings with 0.9 fb-1 of\r\nD0 Data','E.E. Boos, V. Bunichev, L.V. Dudko, U. Heintz,\r\nS. Jabeen, M. Perfilov, R. Schwienhorst','','Shabnam Jabeen','TOP','PHYS','D0_PRIVATE','PDF','','',2008,4,21,2454578,NULL,NULL,NULL,NULL),(5650,'Artificial neural network using central preshower detector information for electron and photon selection','Xuebing Bu, Yanwen Liu, Dmitry Bandurin, Oleksiy Atramentov','','Xuebing Bu','ALGORITHMS','DOC','D0_PRIVATE','PDF','$D0_PRI/5650/m_ann_with_cps_v1.0.pdf','',2008,4,23,2454580,2008,4,23,2454580),(5651,'Measurement of $Br(B^0_s\\rightarrow D_s^{(*)}D_s^{(*)}$) and Lifetime Difference in $B_s^0$ System','SungWoo Youn, David Buchholz, Brendan Casey','','SungWoo YOUN','B_PHYSICS','CONF','D0_PRIVATE','PDF','$D0_PRI/5651/m_d0conf_bs_dsds_1.0.pdf','',2008,4,23,2454580,2008,5,2,2454589),(5652,'Top Quark Pair Production Cross Section in the Lepton+Jets Channel Using SLTNN b-tagging algorithm','Hwidong Yoo, Richard Partridge','','Hwidong Yoo','TOP','ANAL','D0_PRIVATE','PDF','','',2008,4,23,2454580,NULL,NULL,NULL,NULL),(5653,'A Search for Charged Massive Stable Particles at D0 RunII','S. Banerjee, T. Bose, D. Cutts, M. Eads and Y. Xie','','Yunhe Xie','NEW','ANAL','D0_PRIVATE','PDF','','',2008,4,28,2454585,NULL,NULL,NULL,NULL),(5654,'An estimate of the data over MC, b over light jet response uncertainty for RunIIa JES','Amnon Harel','','Amnon Harel','CALORIMETER','DOC','D0_PRIVATE','PDF','$D0_PRI/5654/m_5654_b_over_light_response_double_ratio.pdf','',1988,4,28,2447280,2008,4,28,2454585),(5655,'Search for Low Mass SM Higgs at the Tevatron','Michiel Sanders','Presented at Les Rencontres de Physique de la Vallee d\'Aoste, La Thuile, Italy\r\n24th February - 1st March 2008','Michiel Sanders','HIGGS','CONF','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5655/m_d0note5655_proc_LaThuile2008.ps','',2008,5,6,2454593,2008,5,8,2454595),(5656,'Measurement of the W Boson Helicity in Top Quark Decays Using 3 fb ^−1 \r\nof RunII Data \r\n\r\n','Amitabha Das, Erich Varnes','','Erich Varnes','TOP','DOC','D0_PRIVATE','PDF','','',2008,5,7,2454594,NULL,NULL,NULL,NULL),(5657,'Photon radiation modelling in PMCS','J. Guo, J. Zhu, J. Stark','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5658,'Electron response model','J. Stark, T. Andeen','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5659,'W Mass Measurement in Full Geant Monte Carlo','P. Petroff, The W Mass Group','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5660,'Correction to the electron energy cluster ','F. Guo, J. Guo, J. Zhu, P. Petroff','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5661,'Studies of energies below electron window for W mass measurement','F. Guo, J. Hobbes, R. McCarthy, M. Rijssenbeck, J. Zhu, P. Petroff, J. Stark','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5662,'Fit for Electron response model','T. Andeen','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5663,'Fitting Package for W Mass Measurement -- wzfitter','M. Wetstein','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5664,'Fit for the EM Calorimeter Constant term and propagation of related uncertainties for the W Mass Measurement','T. Andeen','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5665,'Background Study for W Mass Measurement','J. Guo','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5666,'QED Uncertainty for the W Mass Measurement','J. Guo','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5667,'Description of the Transform Method W Mass Analysis at D0','S. Yacoob','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5668,'Modeling the Hadronic Recoil for the W Mass Measurement in Run IIa (Method I) ','M. Cwiok, J. Osta, J. Zhu, J. Stark, T. Andeen','','Andeen','WZ','PHYS','D0_PRIVATE','POSTSCRIPT','','',2008,5,9,2454596,NULL,NULL,NULL,NULL),(5669,'Search for SM Higgs Boson Production in the Decay HW -> tau(h)nu(tau)bb with the D0 Detector at Sqrt(s) = 1.96TeV','Philip Rich, Stefan Soldner-Rembold','','Philip Rich','HIGGS','PHYS','D0_PRIVATE','PDF','','',2008,5,12,2454599,NULL,NULL,NULL,NULL),(5670,'Searches for new physics in photon and jet final states','M. Jaffré for the CDF and D0 collaborations','Proceedings of the 43rd Rencontres de Moriond - Electroweak interactions and Unified theories - La Thuile (Italy) March 1-8,2008','M. Jaffré','NEW','CONF','D0_PRIVATE','PDF','','',2008,5,13,2454600,NULL,NULL,NULL,NULL),(5671,'Search for squarks and gluinos in events with jets and missing transverse energy using 2.1 fb-1 of RunIIa and RunIIb data','J.-F. Grivaz and P. Verdier','Analysis note describing the 2.1fb-1 PLB publication','Patrice Verdier','NEW','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5671/m_sqgl5671_v1.3.ps','',2008,5,13,2454600,2008,5,14,2454601),(5672,'Detector Acceptance of the Stueckelberg Z\'','Kristen Flowers','','Kristen Flowers','@Tˆ','­á¿','D0_PRIVATE','','$D0_PRI/5672/m_D0Note_5672_stueckelbergzprime.pdf','',2008,5,14,2454601,2008,5,16,2454603),(5673,'Study of the jet energy resolution including the central preshower information','F. Lacroix, A. Juste','','F. Lacroix','@Tˆ','PHYS','D0_PRIVATE','POSTSCRIPT','$D0_PRI/5673/m_cps_d0note_5673_v1.ps','',2008,5,19,2454606,2008,5,19,2454606),(5674,'Indirect Charged Higgs Boson Search in e+Jets and \\mu+Jets Final States','Dan Boline, Dookee Cho, Tord Ekelof, Andre Sopczak','','Sopczak','TOP','PUB','D0_PRIVATE','PDF','$D0_PRI/5674/m_draft5674.pdf','',2008,5,19,2454606,2008,5,19,2454606),(5675,'Electron Likelihood in p20','Masato Aoki','p17 basis electron likelihoods are re-trained using p20 data. Some minor updates are also done.','Masato Aoki','ALGORITHMS','DOC','D0_PRIVATE','PDF','','',2008,5,19,2454606,NULL,NULL,NULL,NULL),(5676,'Study of B_s Mixing Using the Semileptonic Decay B_s -> D_s mu nu X, Where D_s -> phi pi','M. S. Anzelc, D. Buchholz, B. Casey, for the B_s Mixing Group','This is the analysis note for the muphipi publication draft.','Meghan S. Anzelc','B_PHYSICS','PHYS','D0_PRIVATE','PDF','$D0_PRI/5676/m_muphipi_5676_analysisnote.pdf','',2008,5,20,2454607,2008,5,20,2454607),(5677,'Non-Susy Searches at the Tevatron','M. Eads','Proceedings for Moriond QCD 2008','M. Eads','NEW','DOC','D0_PRIVATE','PDF','$D0_PRI/5677/m_d0note5677_nonsusysearches.pdf','',2008,5,20,2454607,2008,5,20,2454607); UNLOCK TABLES; /*!40000 ALTER TABLE `d0notes` ENABLE KEYS */; -- -- Table structure for table `last_sum_tab` -- DROP TABLE IF EXISTS `last_sum_tab`; CREATE TABLE `last_sum_tab` ( `tablename` char(40) NOT NULL default '', `last_sum` int(11) default NULL, PRIMARY KEY (`tablename`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `last_sum_tab` -- /*!40000 ALTER TABLE `last_sum_tab` DISABLE KEYS */; LOCK TABLES `last_sum_tab` WRITE; INSERT INTO `last_sum_tab` VALUES ('d0notes',2454601); UNLOCK TABLES; /*!40000 ALTER TABLE `last_sum_tab` ENABLE KEYS */; -- -- Table structure for table `maxindex` -- DROP TABLE IF EXISTS `maxindex`; CREATE TABLE `maxindex` ( `tablename` char(40) NOT NULL default '', `maxindex` char(10) default NULL, PRIMARY KEY (`tablename`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `maxindex` -- /*!40000 ALTER TABLE `maxindex` DISABLE KEYS */; LOCK TABLES `maxindex` WRITE; INSERT INTO `maxindex` VALUES ('d0notes','5677'); UNLOCK TABLES; /*!40000 ALTER TABLE `maxindex` ENABLE KEYS */; -- -- Current Database: `whod0` -- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `whod0` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `whod0`; -- -- Table structure for table `institute` -- DROP TABLE IF EXISTS `institute`; CREATE TABLE `institute` ( `institute` text NOT NULL, `contact` varchar(128) default NULL, `phone` varchar(128) default NULL, `fax` varchar(128) default NULL, `videophone` varchar(128) default NULL, `homepage` text, `addr` text, `date` varchar(12) default NULL, `bywho` varchar(64) default NULL, PRIMARY KEY (`institute`(128)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `institute` -- /*!40000 ALTER TABLE `institute` DISABLE KEYS */; LOCK TABLES `institute` WRITE; INSERT INTO `institute` VALUES ('Boston University','Ulrich Heintz','(617)353-9057 (617)353-2600','617-353-9393','','http://physics.bu.edu/','Boston | University | | | Department | of | Physics | | | 590 | Commonwealth | Avenue | | | Boston, | MA | | 02215','5/30/2007','jmbutler'),('Brookhaven National Laboratory','Serban Protopopescu','(631)344-3721','(631)344-5568','','http://ox3.phy.bnl.gov/~serban/','Physics Department, 510A | Brookhaven National Laboratory | Upton, NY 11973-5000','2/13/2001','serban'),('Brown University','Dave Cutts','(401)863-2644 (630)840-8324','(401)863-2024','','http://www.hep.brown.edu/','Brown University | Physics Department | Providence, RI 02912','5/9/2005','partridge'),('Universidad de Buenos Aires, Argentina','Ricardo Piegaia','011-5411-4576-3390 ext. 828',' 011-5411-4576-3357','','http://www.df.uba.ar','Depto. Fisica - Pab 1 | Ciudad Universitaria | 1428 Buenos Aires | ARGENTINA','5/11/2005','aia'),('CBPF/LAFEX, Brazil','Gilvan Alves','840-2454; (011-55-21)-2141-7190; 2141-7376','(011-55-21)-2141-7556; 2141-7400','','http://www.cbpf.br','CBPF/LAFEX | Rio Dr. Xavier Sigaud, 150 | 22290-180 - Rio de Janeiro | BRAZIL','9/27/2004','gilvan'),('CINVESTAV, Mexico','Heriberto Castilla-Valdez','(011-52) 55 50613800 x6112','(011-525) 7477098','','http://www.fis.cinvestav.mx/','Department of Physics | Apdo. Postal 14740 | Mexico D.F. 07000 | Mexico','5/10/2005','castilla'),('University of Washington','Henry Lubatti','(206)543-8964','(206)685-9242','','http://d0.epe.phys.washington.edu','Dept of Physics | Univ of Washington | PO Box 351560 | Seattle WA 98195-1560 | USA','5/10/2005','lubatti'),('Columbia University','Mike Tuts','212-854-3366 212-854-3367 630-840-8304','(212)854-3379','','http://phys.columbia.edu/','Physics Department | Mailcode-5255 | 538 W. 120Th Street | New York, NY 10027','7/1/1999','thatcher'),('DAPNIA/SPP, SACLAY, France','Marc Besancon','(630)840-6830/5503/4794 33-1-6908-2056','33-1-6908-6428','','http://besancon.home.cern.ch/besancon/','DAPNIA/SPP | Centre d\'Etudes de Saclay | 91191 Gif-sur-Yvette CEDEX | FRANCE','5/11/2005','besancon'),('Physikalisches Institut, Universitaet Freiburg','Karl Jakobs','[49] 761 203 5715','[49] 761 203 5931','','http://wwwhep.physik.uni-freiburg.de/','Physikalisches Institut | Hermann-Herder-Str. 3 | D-79104 Freiburg | GERMANY','5/14/2005','buescher'),('Fermi National Accelerator Laboratory','Stefan Gruenendahl, Qizhong Li','(630)840-8760 (630)840-8703','(630)840-8481(DAB6)','','http://www-d0.fnal.gov/','Fermilab | | | MS | | | 357 | | | | | | | | | PO | | | Box | | | 500 | | | | | | | Batavia | | | IL, | | | 60510','3/21/2007','qzli'),('Florida State University','Susan Blessing','(850)644-1032 (630)840-8384','850-644-6735','','http://www.hep.fsu.edu','Florida | State | University | | | Physics | Department | | | Tallahassee, | FL | 32306','12/14/2006','blessing'),('IHEP, Beijing, China','Huishun MAO','630-840-8339 011-8610-6821-3344(ext. 2918)','630-840-8886 011-8610-6821-3374','','http://www.ihep.ac.cn/','Institute of High Energy Physics | Beijing 918 | P.R.China 100039','1/1/2001','hagopian'),('Institute for High Energy Physics, Russia','Sergey Denisov','7 (496) 771-3776','','','http://www.ihep.su/','Institute for High Energy Physics, Protvino, Moscow Region, Russia, 142281','11/16/2006','schukin'),('Indiana University','Andrzej Zieminski','(812)855-4089 (630)840-2656','(812)855-0440','','http://needmore.physics.indiana.edu/~iuhep/','Indiana University | Department of Physics | Bloomington, IN 47405','5/11/2005','zieminsk'),('Iowa State University','John Hauptman','515-294-8572 (office) 515-451-0034 (cell)','515-294-8712','','http://high-energy.physics.iastate.edu','ExperimentalHigh Energy Group | Department of Physics | Iowa State University | Ames, IA 50011-3160','5/10/2005','hauptman'),('Korea University, Korea','Sungkeun PARK, Seong Jong HONG','+82-2-3290-4277','+82-2-923-8155','','http://kodel.korea.ac.kr','(MS 352 for Fermilab on-site or) | High Engergy Physics Lab. Korea University, Seoul 136-713 KOREA','6/24/2004','shahn'),('Kyungsung University, Korea','','','','','http://','Pusan, KOREA','5/6/1998','nunez'),('Lawrence Berkeley National Laboratory','Ron Madaras','(510)486-4410','(510)486-4047','','http://d0lbln.lbl.gov/wwwd0/d0.html','MS 50B-5239 | 1 Cyclotron Road | Berkeley, CA 94720','5/9/2005','madaras'),('Universidad de Los Andes, Colombia','Bernardo Gomez','(630)840-5199 [57-1]332-4500','[57-1]332-4516','','http://www.uniandes.edu.co','Universidad De Los Andes | Departamento de Fisica | Apartado Aereo 4976 | Bogota, Colombia','6/9/2001','gomez'),('Michigan State University','James Linnemann','(517)884-5625 (517)884-5581 (630)840-2286','517-355-6661',' 517-384-5572 (audio)','http://www.pa.msu.edu/hep/','Michigan | State | University | | | Department | of | Physics | | | 3218 | Biomedical | Physical | Sciences | | | East | Lansing, | MI | 48824-2320','5/5/2008','linneman'),('Moscow State University, Russia','Lev Dudko','011-7-495-939-3064','011-7-495-939-3064 011-7-495-939-5948','','http://www.sinp.msu.ru','Scobeltsyn Institute of Nuclear Physics | 119992 Moscow | RUSSIA','10/19/2006','jonckheere'),('Langston University','Joel Snow','405-466-3328','405-466-3271','','http://physics.lunet.edu','Dept. of Math & Physics | Jones Hall | Langston University | Rt. 33 | Langston, OK 73050','7/23/2002','snow'),('Northeastern University','Darien Wood','(617)373-2958 (630)840-8485','(617)373-2943','','http://www.physics.neu.edu/','Department of Physics | 111 Dana Research Center | Northeastern University | Boston, MA 02115','5/1/2003','pilinas'),('Northwestern University','David Buchholz','(847)491-5454','(847)491-9982','','http://www.nuhep.northwestern.edu/','Physics Department | Northwestern University | Evanston, IL 60208','5/12/2005','buchholz'),('Panjab University, India','Prof. Jatinder M. Kohli','+91 172 2541741','+91 172 2783336','','http://www.puhep.res.in/','Physics Department | Panjab University | Chandigarh-160 014 (UT) | INDIA','11/17/2003','vipin'),('Purdue University','David Koltick','(765)494-5557 (630)840-5261','317-494-0706','','http://','Department of Physics | 1396 Physics Bldg. | West Lafayette, IN 47907-1396','4/15/1998','WWW'),('Rice University','Marj Corcoran','630-840-4151 713-348-6078','713-348-5218','','http://','Rice | University | Mail Stop 315 | P. O. Box 1892 | Houston, TX 77251-1892 | ','1/21/2008','corcoran'),('State University of New York, Stony Brook','Robert Mccarthy','(631)632-8086 (630)840-5295','631-632-8101','631-246-5247/5253','http://sbhep1.physics.sunysb.edu/','','11/1/1999','dean'),('Seoul National University, Korea','Sun Kee Kim','82-2-880-6594 (630)840-8571','','','http://','Department of Physics | Seoul National University | Seoul 151-742 | KOREA','3/31/1998','WWW'),('Tata Institute of Fundamental Research, India','Naba Mondal','91-22-2280 4545','91-22-2280 4610','','http://www.tifr.res.in','Homi Bhabha Road | Colaba, Bombay - 400 005 | INDIA','11/7/2003','acharya'),('Texas A&M University','James White','(630)840-8028 (409)845-1479','','','http://','Texas A&M University | Physics Department | College Station, TX 77845','4/15/1998','WWW'),('NIKHEF, Netherlands','Paul de Jong','011-31-20-592-5114','011-31-20-592-5155','','http://www.nikhef.nl','Kruislaan 409, 1009 DB | Amsterdam, The Netherlands','5/11/2005','pdejong'),('University of California, Davis','Sudhindra Mani','(630)840-2931 (530)752-8785','(530)752-2431','','http://','University of California | Physics Department | One Shields Avenue | Davis, CA 95616','4/30/1998','mani'),('University College Dublin','Martin Grunewald','011-353-1-716-2217','011-353-1-283-7275','','http://www.ucd.ie/~physics','UCD School of Physics | University College Dublin | Belfield | Dublin 4 | Ireland | ','11/24/2006','twyatt'),('University of California, Riverside','John Ellison','(951)827-4301','(951)827-3345','(951)781-9919 (951)781-9937','http://www.physics.ucr.edu/research/pp/ucr_hep_d0_home_page.html','Department of Physics and Astronomy | | | University of California | | | Riverside, CA 92521-0413','8/4/2006','heinson'),('University of Arizona','Erich Varnes','520-626-0217','520-621-4721','','http://www.physics.arizona.edu/','University | of | Arizona | | | Physics | Department | | | Tucson, | AZ | 85721','1/8/2008','varnes'),('University of Illinois, Chicago','Mark Adams','(312)996-3403 (630)840-2179','312-996-9016','','http://physicsweb.phy.uic.edu/~dzero/','Department | of | Physics | (M/C | 273) | | | 845 | W. | Taylor | St. | | | Chicago, | IL | 60607-7059','11/16/2006','adams'),('University of Hawaii','Mike Peters','','','','http://','Department of Physics and Astronomy | 205 Correa Road | Honolulu, HI 96822','3/31/1998','nunez'),('University of Maryland','Nick Hadley','(630)840-2042 (301)405-6063','301-699-9195',' 301-405-4453','http://www.physics.umd.edu/','University | of | Maryland | | | Physics | Department | | | College | Park, | MD | 20742','11/16/2006','sceno'),('University of Michigan','Jianming Qian','(734) 936 1033','(734) 936 6529','','http://www.umich.edu','University of Michigan | Department of Physics | Ann Arbor, MI 48109','8/24/1998','qianj'),('University of Nebraska','Gregory Snow','(402)472-6279 (402)472-9879 (630)840-3105 (603)840-2488','(402)472-2879','','http://physics.unl.edu','Department of Physics and Astronomy | 116 Brace Hall | University of Nebraska | Lincoln, NE 68588-0111','8/5/2004','gregsnow'),('University of Notre Dame','Mitch Wayne or Jadzia Warchol','(630)-840-8341','574-631-5952','','http://www.hep.nd.edu','225 Nieuwland Science Hall | Notre Dame, IN 46556','8/6/2002','mikeh'),('University of Oklahoma','Phillip Gutierrez','405-325-3961','405-325-7557','405-325-8948/9 129.15.30.87','http://www.nhn.ou.edu/','Department of Physics and Astronomy | 440 West Brooks | Norman, OK 73019','7/12/2002','severini'),('University of Rochester','Regina Demina','(585)275-7357 [(585)-275-5306]','(585)276-0018','(585)271-4421','http://www.pas.rochester.edu/~regina','River | Campus/Physics | & | Astronomy | | | Bausch | & | Lomb | Bldg. | | | Rochester, | NY | 14627','1/9/2007','demina'),('University of Texas, Arlington','Andrew White','(817)272-2812','(817)272-2824','','http://www-hep.uta.edu/','High Energy Group | Department of Physics | Box 19059 | Arlington, TX 76019','8/16/1999','eltzroth'),('Kansas State University','Tim Bolton','785-532-1664','785-532-6787','','http://www.phys.ksu.edu','Dept. of Physics | Kansas State University | Manhattan, KS 66506-2601','5/27/2005','bolton'),('Northern Illinois University','Dave Hedin','(815)753-6483 (630)840-8131','815-753-8565','','http://www.physics.niu.edu/','','5/4/2001','hedin'),('Universidade do Estado do Rio de Janeiro, Brazil','Luiz Mundim','5521-2587-7551','5521-2587-7454','','http://www.uerj.br','Instituto de Fisica | Rua São Francisco Xavier, 524 | 20550-900 - Rio de Janeiro (RJ) | Brazil','11/16/2006','mundim'),('University of Kansas','Phil Baringer','785-864-3953','785-864-5262','(785)330-0113 (785)330-0114','http://www.physics.ku.edu/','Department of Physics and Astronomy | University of Kansas | Lawrence KS 66045','2/27/2006','hagopian'),('Louisiana Tech University','Lee Sawyer','318-257-4053 630-840-8581','318-257-4228','','http://www.phys.latech.edu/','Center for Applied Physics Studies | W. Arizona Ave. | Louisiana Tech University | Ruston, LA 71272 ','5/23/2003','alstone'),('Centre de Physique des Particules de Marseille','Elemer Nagy','011-33-4-91.82.72.00','011-33-4-91.82.72.99','','http://marwww.in2p3.fr/D0/Welcome.html','CPPM- Case 902 | Faculte des Sciences de Luminy | 163 ave de Luminy | F-13288 Marseille CEDEX 9 |','8/22/2006','jonckheere'),('Laboratoire de l Accelerateur Lineaire, France','Michel Jaffré','+33-1-64468926','+33-1-64468397','','http://www.lal.in2p3.fr/','Laboratoire de l\'Accélérateur Linéaire | Université Paris-Sud | B.P. 34 | 91898 Orsay Cedex | France','11/15/2006','jaffre'),('Simon Fraser University, Canada','Dugan O\'Neil','','','','http://','','7/3/2003','jonckheere'),('LPNHE, Universites Paris VI and VII, France','Gregorio Bernardi','+33(1)44.27.63.13 (630)840-8740','+33(1)44.27.46.38','+33(1)43.39.04.38/193.48.100.29/lpnvcf.in2p3.fr','http://lpnhep.in2p3.fr/','LPNHE | 4, place Jussieu | Tour 33 - Rez de Chaussee | 75252 Paris Cedex 05','10/14/2002','bassler'),('Joint Institute for Nuclear Research, Russia','Guennadi Alexeev','011-7-096-216-3795, 630-840-2989','9-p-011-7-096-216-3795','','http://nusun.jinr.ru/~dzero/','141980, JINR, Dubna, Moscow region, RUSSIA','5/11/2005','yuyatsu'),('Institute for Theoretical & Exp. Physics, Russia','Vladimir GAVRILOV','7(095)129-9447','7 (095) 123-65-84','','http://www.itep.ru','B. Cheremushkinskaja, 25, Moscow, 117259, Russia | Telex: 411059 Cerii SU | | |','1/23/2001','evdokim'),('University of Mississippi','Breese Quinn','(662)915-1398','(662)915-5045','','The University of Mississippi','Dept. of Physics & Astronomy | 108 Lewis Hall | The University of Mississippi | PO Box 1848 | University, MS 38677-1848','5/18/2004','quinn'),('Institute of Physics of Czech Academy of Sciences','Milos Lokajick','+4202-66052672','+420286585443','','http://www-hep.fzu.cz','Na Slovance 2 | 182 21 Prague 8 | Czech Republic','5/11/2005','lokajick'),('Imperial College, London','Gavin Davies','+44-207594-7823','+44-207823-8830','','http://www.hep.ph.ic.ac.uk/','Imperial College | Blackett Laboratory | Prince Consort Road | London SW7 2BW UK |','4/3/2002','hagopian'),('University of Manchester, United Kingdom','Stefan Soldner-Rembold','44-161-275-4151','44-161-273-5867','','http://www.hep.man.ac.uk/','School of Physics and Astronomy | University of Manchester | Oxford Road | Manchester M13 9PL | United Kingdom','5/10/2005','soldner'),('Lancaster University, United Kingdom','Iain Bertram','','44-1524-844037','','http://www.lancs.ac.uk/depts/physics/research/particle/epgroup.html','Department of Physics | Lancaster University | Lancaster | LANCASHIRE | LA1 4YB | UK','5/10/2005','bertram'),('Universidad San Francisco de Quito, Ecuador','Bruce Hoeneisen','593-2-895723 ext. 250','593-2-890070','','http://www.usfq.edu.ec/','P.O. Box 17-12-841, Quito, ECUADOR','8/18/1999','bruce1'),('Stockholm University','Barbro Asman','+46-8-55 37 8665','','','http://www.physto.se/','Fysikum | AlbaNova | Stockholms Universitet | 106 91 Stockholm | Sweden','5/10/2005','asman'),('Radboud University Nijmegen','Sijbrand de Jong','+31243652099','+31243652191','','http://www.ru.nl/ehef/','Toernooiveld 1 | 6525 ED Nijmegen | The Netherlands','11/16/2006','filthaut'),('LMU Munich','Dorothee Schaile','0049-89-2891-4148','0049-89-2891-4103','','http://www.etp.physik.uni-muenchen.de','LMU | Muenchen, | | | Department of Physics | | | Am | Coulombwall | 1 | | | 85748 | Garching | | | Germany','11/15/2006','schailed'),('Institut fuer Physik, Mainz, Germany','Stefan TAPPROGGE','011-49-6131-39-25160','011-49-6131-39-25169','MAINZ-D0 011-49-6131-39-25166','http://www.etap.physik.uni-mainz.de','Institut | | | fuer | | | Physik | | | | | | | Universitaet | | | Mainz | | | | | | | Staudinger | | | Weg | | | 7 | | | | | | | 55099 | | | Mainz | | | | | | | Germany','1/8/2008','tapprogg'),('Institut de Physique Nucleaire de Lyon, France','Muanza Steve','FNAL: x6448 France: +33 4 72 44 82 70','(33)-4-72-43-1452','IN2P3-CC','http://lyoinfo.in2p3.fr/spip.php?rubrique57','muanza@in2p3.fr','5/16/2008','muanza'),('Universidade Estadual Paulista, Brazil','Sergio Novaes','+55(11)3177-9002 +55(11)8115-2100','+55(11)3177-9080','','http://www.ift.unesp.br','Instituto de Fisica Teorica - UNESP | Rua Pamplona 145 | 01405-900 Sao Paulo - SP | Brazil | |','5/9/2005','novaes'),('Lund University, Sweden','Paula Eerola','+46 46 222 4151','+46 46 222 3601','0','http://www.quark.lu.se','Elementary Particle Physics Department | Lund University | Box 118 | 22 100-Lund | Sweden','5/10/2005','asman'),('University of Virginia','Bob Hirosky','434-982-5721','434-924-4576','434-982-5380','http://galileo.phys.virginia.edu/research/groups/hep',' Dept. of Physics, UVa | 382 McCormick Rd | PO Box 400714 | Charlottesville VA 22904','5/9/2005','hirosky'),('Uppsala University','Tord Ekelöf','+46.18.4713847 +46.704250210','+46.18.4713513','','http://www.isv.uu.se/','Department of Radiation Sciences | Uppsala University | Box 535 | 751 21 Uppsala | Sweden |','6/18/2001','yann'),('Physikalisches Institut, Bonn University','Volker Buescher, Norbert Wermes','+49-228-733532 (V.Buescher) +49-228-733533 (N.Wermes) +49-228-733225 (Secretary)','+49-228-733220 (fax)','','http://hep1.physik.uni-bonn.de','Nussallee | 12 | | | D | - | 53115 | Bonn | | | Germany','4/3/2007','buescher'),('RWTH Aachen, III. Phys. Inst. A, Aachen, Germany','Thomas Hebbeker','+49 241 80 27330','+49 241 80 22189','','http://www.physik.rwth-aachen.de/group/IIIphys/','','8/29/2005','magass'),('Fachbereich Physik, University of Wuppertal','Peter Maettig','++49+202/439-2761','++49+202-4392811','','http://www.d0.uni-wuppertal.de/d0.english.html','Bergische | | | Universität | | | Wuppertal | | | | | | | Fachbereich | | | C, | | | Physik | | | | | | | Gaußstr. | | | 20 | | | | | | | D | | | 42097 | | | Wuppertal | | | | | | | Germany','1/9/2008','mattig'),('IPHC Strasbourg, France','Isabelle Ripp-Baudot (ripp@in2p3.fr)','+33-3-88-10-63-75','+33-3-88-10-62-34','+33-3-88-10-68-86','http://iphc.in2p3.fr/-D0-.html','IPHC - 23 rue du loess - BP 28 - 67037 Strasbourg cedex 2 - France','1/8/2008','ripp'),('California State University, Fresno','Raymond Hall','559-473-8428','','','http://www.preetam.net','5511 north cedar ave, #134 fresno california','4/7/2004','preetam'),('Hochiminh City Institute of Physics','N.M. Giao','(848)897-1069','(848)823-4133','','http://','No Longer with D0, 14Dec06 | 1 Mac dinh chi street district 1 | Hochiminh City | Vietnam','12/14/2006','jonckheere'),('Princeton University','Christopher Tully','609-258-1534','609-258-6360','polycom.hep.princeton.edu','http://PUPGG.PRINCETON.EDU/www/jh/research/he_experiment.htmlx','Physics Dept. | Princeton University | P.O. Box 708 | Princeton, NJ, 08544-0708','4/29/2002','tully'),('Delhi University, Delhi, India','Prof. B.C. Choudhary','011-91-11-27667036','011-91-11-27667049, 27667093','','http://www.du.ac.in','Department of Physics & Astrophysics | University of Delhi | Delhi - 110007 | India','1/8/2008','brajesh'),('LPSC, Grenoble FR','G. Sajot (sajot@in2p3.fr)','+33.4.76.28.40.67','+33.4.76.28.40.04','','http://isnwww.in2p3.fr/d0/index.html','Laboratoire de Physique Subatomique et de Cosmologie | 53 Avenue des Martyrs | 38026 GRENOBLE Cedex France','4/21/2003','jonckheere'),('KTH, Royal Institute of Technology','Bengt Lund-Jensen','','','','http://','','10/14/2003','jonckheere'),('LPC, Univ Blaise Pascal, Clermont-Ferrand, France','Pascal GAY','+33 4 73 40 72 83','+33 4 73 26 45 98','','http://clrwww.in2p3.fr/','24 avenue des Landais, 63177 AUBIERE Cedex, FRANCE','7/8/2003','gaypas'),('Czech Technical University','V. Simak','+420224351111','+420222320861','','http://www.fjfi.cvut.cz','Czech Technical University | CVUT FJFI | Brehova 7 | 11519 Praha 1 | Czech Republic | Europe','3/9/2004','otec'),('Petersburg Nuclear Physics Institute, Russia','Georgiy Alkhazov','+7(813-71)36582 (630)840-2462','+7(813-71)30010','','http://hepd.pnpi.spb.ru/hepd/structure/people/alkhazov_ru.html','Petersburg | Nuclear | Physics | Institute | RAS | | | Gatchina, | Leningrad | district | 188300 | | | | Russia','12/4/2006','scheglov'),('University of Alberta, Canada','Roger Moore','+1-780-492-1052','+1-780-492-3408','','http://csr.phys.ualberta.ca/','Centre for Subatomic Research | University of Alberta | Edmonton AB T5J 2N5 | CANADA','7/8/2004','rwmoore'),('York University, Canada','Wendy Taylor','(416) 736-2100 x77758','(416) 736-5516','','http://www.hep.yorku.ca','128 Petrie Science and Engineering Building | York University | 4700 Keele St | Toronto, Ontario | M3J 1P3 | Canada','2/8/2005','wendyt'),('McGill University, Canada','Brigitte Vachon','514-398-6478','514-398-8464','','http://','','9/30/2005','gustavok'),('Southern Methodist University','Bob Kehoe','(630) 840-3954 (214) 768-1793','','','http://www.physics.smu.edu','kehoe@physics.smu.edu','11/16/2006','kehoe'),('Univ of Science and Technology of China, Hefei','Liang HAN','','','','http://','','5/11/2005','jonckheere'),('Charles Univ, Center for Particle Physics, Prague','MilosLokajicek','','','','http://','','6/28/2005','jonckheere'),('State University of New York, Buffalo','Ia Iashvili','716 645 2017','716 645 2507','','http://electron.physics.buffalo.edu/','Department of Physics, 239 Fronczak Hall, | University at Buffalo, | Buffalo, NY 14260-1500 USA','1/8/2008','iashvili'),('University of Zurich','Frank Lehner','','','','http://','','2/7/2006','jonckheere'),('Purdue University Calumet','Neeti Parashar','','','','http://','','3/14/2006','jonckheere'),('Oklahoma State University','Flera Rizatdinova','405-744-5814','405-744-6811','','http://physics.okstate.edu/','','11/27/2006','khanov'),('SungKyunKwan University, Suwon, Korea','Suyong Choi','','','','http://','','11/20/2006','jonckheere'),('Universidade Federal do ABC, Brazil','Eduardo Gregores','+55(11)4437-1600#438 +55(11)9247-9580','+55(11)4996-3166#208','','http://www.ufabc.edu.br/','Universidade Federal do ABC | Rua Catequese 242 | 09090-400 Santo André - SP, Brazil ','1/22/2008','jonckheere'); UNLOCK TABLES; /*!40000 ALTER TABLE `institute` ENABLE KEYS */; -- -- Table structure for table `person` -- DROP TABLE IF EXISTS `person`; CREATE TABLE `person` ( `name` varchar(128) NOT NULL default '', `email` varchar(128) default NULL, `tel` varchar(128) default NULL, `hmtel` varchar(128) default NULL, `homepage` text, `institute` text, `groups` text, `date` varchar(12) default NULL, `bywho` varchar(64) default NULL, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `person` -- /*!40000 ALTER TABLE `person` DISABLE KEYS */; LOCK TABLES `person` WRITE; INSERT INTO `person` VALUES ('Jim LINNEMANN','linnemann@pa.msu.edu','(517)884-5565 (630)840-2286','517-339-6138','http://www.pa.msu.edu/~linnemann/','Michigan State University','DAQ_ELECTRONICS NEW ONLINE SOFTWARE_INFRA TRIGGER','5/5/2008','linneman'),('Maria Teresa ROCO','roco@fnal.gov','DAB6: (630)840-2153 or SiDet: (630)840-8630','','http://www-d0.fnal.gov/~roco/','Fermi National Accelerator Laboratory','ALGORITHMS NEW SILICON','1/11/2000','roco'),('Monique SRIVASTAVA','','(812)855-4623 (630)840-2572','','http://','','','10/28/1999','sulanke'),('Dan EDMUNDS','Edmunds@pa.msu.edu','(630)840-2832 (517)884-5521','','http://','Michigan State University','DAQ_ELECTRONICS ONLINE TRIGGER','5/5/2008','linneman'),('Myron L. (Bud) GOOD','deceased','','','http://www-d0.fnal.gov/ac/public_html/memorial/good/budgood.html','State University of New York, Stony Brook','','1/26/2001','hagopian'),('Consulting/Help desk','consult@fnal.gov','(630)840-2345','','','','','',''),('Chuck SERRITELLA','serritella@fnal.gov','(630)840-2925/3001/pg(630)722-2006','','','','','',''),('Mike KELLY','kelly@fnald0.fnal.gov kelly@umaxp1.physics.lsa.umich.edu','(630)840-5223 (734)763-2323','','http://','NONE','','8/24/1998','qianj'),('Ana Lucia Ferreira CHAVES','analu@fnald0.fnal.gov','011-5521-542-3837 (630)840-5072','','','','','',''),('Chouyang HE','he@fnald0.fnal.gov','(630)840-8322','','','','','',''),('Alex DZIERBA','','(812)855-9421','','','','','',''),('DAB - Cryo Control 316','','2849/2817/2818/2819','','','','','',''),('Rafael GOMEZ','rgomez@fnal.gov rgomez@dzero.uniandes.edu.co','(630)840-8696 p(847)536-9684','','http://','','','4/8/1998','WWW'),('Bill VANORE','vanore@fnald0.fnal.gov','(630)840-2192 (909)787-3869','','','','','',''),('Bob MCCARTHY','mccarthy@sbhep.physics.sunysb.edu','(631)632-8086 (630)840-5295','','http://sbhep1.physics.sunysb.edu/~mccarthy','State University of New York, Stony Brook','CALORIMETER','1/11/2002','mccarthy'),('Bob OUDT','oudt@fnal.gov','(630)840-2817','','','','','',''),('Cathy CRETSINGER','cretsi@slac.stanford.edu','(415)926-2043','','','','','',''),('Yeonsik YU','ysyu@fnald0.fnal.gov ysyu@hep1.snu.ac.kr','(630)840-8571 82-2-876-2801','','http://','Seoul National University, Korea','','5/6/1998','nunez'),('Donna KUBIK','kubik@fnal.gov','','formerly at NIU','http://','No longer working for D0','','11/16/2006','hedin'),('James WHITE','jtwhite@fnal.gov white@phys.tamu.edu','(630)840-8028 (409)845-1479','','http://','Texas A&M University','','4/15/1998','WWW'),('Georg STEINBRUECK','steinbru@fnal.gov','Was Columbia','(630) 762 3909','http://www-d0.fnal.gov/~steinbru','No longer working for D0','ALGORITHMS SILICON TRIGGER WZ','1/24/2006','jonckheere'),('DAB - Counting Room 111(MCH)','','inside:3918/by-door:2833','','','','','',''),('Mike ZELLER','YALPH1::ZELLER','(203)432-3372','','','','','',''),('Carmen SILVA','','','','','No longer working for D0','','11/16/2004','gilvan'),('David H. KAPLAN','kaplan@phyast.nhn.ou.edu','(405)325-3961','','','','','',''),('Mitchell WAYNE','mwayne@nd.edu','(630)840-8341 (574)631-6375 (574)631-8475','','http://','University of Notre Dame','','5/9/2005','wayne'),('Fritz LANGE','lange@fnal.gov','(630)840-4739','','','','','',''),('Jorge MOLINA','molina@fnal.gov','(630)840-2534',' formerly UERJ, Brazil','http://','No longer working for D0','','4/11/2007','jonckheere'),('Patrick R.G. Virador','virador@fnald0.fnal.gov','(510)486-5694 (630)840-8715','','','','','',''),('Kurt RUTHMANSDORFER','kurt@fnal.gov','(630)840-8057','formerly Fermilab','http://','No longer working for D0','','8/27/2001','jonckheere'),('V.S.BHASIN','','','','http://','NONE','','5/26/2004','brajesh'),('Peiqin LI','lipq@fnald0.fnal.gov','(630)840-8339 011-861-0821-001-3489','','','','','',''),('Dave BUCHHOLZ','buchholz@fnal.gov dbuchholz@northwestern.edu','(847)491-5454 (847)467-3083 (630)840-8325','','http://www.nuhep.northwestern.edu/~dave','Northwestern University','ONLINE SILICON','5/12/2005','buchholz'),('John BORDERS','jpb@fnald0.fnal.gov','(630)840-2575','','','','','',''),('Gary GRIM','','','','','NONE','','4/30/1998','mani'),('Juan Morales CORONA','jmorales@fnal.gov','(630)840-8597 011525-7546801','','','','','',''),('Edisher TSKHADADZE','edisher@nu2.jinr.ru','(007)096-21-62483','','','','','',''),('Rich SMITH','rpsmith@fnal.gov','Formerly FNAL-deceased','','http://www-d0.fnal.gov/~rpsmith/rpsmith.html','No longer working for D0','','7/9/2007','jonckheere'),('Norman GRAF','ngraf@fnal.gov','(630)840-2438','','http://','','ALGORITHMS FIBER_TRACKER MC SOFTWARE_INFRA TOP WZ','2/11/2000','graf'),('Bruce HOENEISEN','bruce1@fnal.gov','(630)840-5199','','http://www-d0.fnal.gov/~bruce1/bruce_homepage.html','Universidad San Francisco de Quito, Ecuador','','8/16/2000','bruce1'),('Eunil WON','eiwon@fnal.gov','011-822-880-8028 (630)840-3272','','','NONE','','',''),('Jurgen RIEDLER','juri@sg1.hep.fsu.edu','(630)840-8857','','','','','',''),('Hossein JOHARI','FNALV::JOHARI','(630)840-2573','','','','','',''),('Anatoly Solomin','','','','','No longer working for D0','MC SILICON','5/25/2005','dudko'),('Delmar MILLER','dfm@fnal.gov','(630)840-2151/2/3','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Bonnie ALCORN','alcorn@fnal.gov','(630)840-8056','','','','','',''),('Homer NEAL','haneal@umich.edu','734-764-4375','','http://','University of Michigan','','6/20/2000','jrhoades'),('Frederic FLEURET','fleuret@in2p3.fr','33-1-44277472 (630)840-8061','','http://www-d0.fnal.gov/~fleuret','NONE','','9/17/2002','bassler'),('Richard KAISER','kaiser@fnald0.fnal.gov','(708)84-8382 (817)272-2811','','','','','',''),('Jeff GANNON','jgannon@fnal.gov','(630)840-4622','','','','','',''),('Alexander BELYAEV','belyaev@fnal.gov belyaev@hep.fsu.edu','850-644-1492','','http://','No longer working for D0','NEW TOP','5/10/2005','hagopian'),('Ray BROCK','brock@pa.msu.edu','(630)840-2286 (517)353-1693 cell:(517)927-5447','','http://www.pa.msu.edu/~brock/','Michigan State University','D033 DATA_MANAGE SOFTWARE_INFRA TOP TRIGGER WZ','8/7/2002','brock'),('Gervasio GOMEZ','','','','http://','No longer working for D0','','5/12/2005','hadley'),('Cuishan GAO','gaocs@fnal.gov','','','','','','',''),('Leonel MAGANA','lmagana@fnal.gov lmagana@fis.cinvestav.mx','(630)840-8597 (011)(525)747-7097','','http://','No longer working for D0','','5/10/2005','castilla'),('Jean ALITTI','alitti@fnald0.fnal.gov/DPHVX2::ALITTI','33-1-6908-2983 (630)840-2989','','','','','',''),('Herman STREDDE','hjs@fnal.gov','(630)840-3089','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Vasili Riadovikov','22963::\"riadovikov@m10.ihep.su\"','(630)840-8570','','','','','',''),('Bob PUCCI','pucci@fnal.gov','(630)840-2817/4394','','http://','No longer working for D0','','1/21/2006','diehl'),('Bob MORRISON','rmorrison@fnal.gov','(630)840-2851','','','','','',''),('James RASKOWSKI','rask@fnald0.fnal.gov','(630)840-8131 (815)758-6996','','','','','',''),('Yongshen ZHOU','zhouys@fnald0.fnal.gov zhouys@bepc4.ihep.ac.cn','(630)840-8339 011-86-10-6821-3344(x2656)','','http://','IHEP, Beijing, China','','5/5/1998','nunez'),('Rama JAYANTI','UAZAX2::RAMA','(520)621-4773 (630)840-8340','','','','','',''),('Kevin DAVIS','kdavis@soliton.physics.arizona.edu kpdavis@fnal.gov','(520)621-6819 (630)840-8513/8340','','http://www-d0.fnal.gov/~kpdavis','University of Arizona','','4/22/1998','nunez'),('Jorge H. MOROMISATO','jorgemh@fnald0.fnal.gov','(617)373-2939 (630)840-8594','','http://','NONE','','2/13/2001','darien'),('Lloyd KLEIN','lloyd@fnal.gov','(630)840-2990','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Chang-Kee JUNG','ALPINIST@sbhep.physics.sunysb.edu','(516)632-8108 (630)840-5299','','http://','State University of New York, Stony Brook','','7/16/1999','dean'),('Azriel GOLDSCHMIDT','azriel@fnald0.fnal.gov','(708)491-8607 (630)840-8740','','','','','',''),('Changzheng YUAN','yuancz@fnald0.fnal.gov','(630)840-4919','','','','','',''),('P.R. VISHWANATH','vishwa@tifrvax.tifr.res.in','[91-22]215-2311/2971(*)','','http://','NONE','','7/16/2002','vsn'),('Alexander KOSTRITSKY','kostritsky@fnal.gov','(630)840-8570 095-925-2634','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Sergei STRIGANOV','striganov@fnald0.fnal.gov','(630)840-4823 095-925-2634','','','','','',''),('V.I.KLOCHKOV','','(630)840-8570','','','','','',''),('Ivette FUENTES-GURIDI','ifue@astroscu.unam.mx','(630)840-4224 011(525)683-8930','','','','','',''),('Alexandre NOZDRINE','nozdrin@main1.jinr.dubna.su nozdrin@fnalu.fnal.gov','(007)096-21-63142','','http://','','','3/31/1998','WWW'),('Peter YAMIN','yamin@bnl.gov','(631)344-4838','','http://','','','11/5/1999','serban'),('George KRAFCZYK','krafczyk@fnal.gov','(630)840-4056/4353','','','','','',''),('Dmitri DENISOV','denisovd@fnal.gov','(630)840-3851 LD Pager (630)-218-4498','(630)879-6725','http://','Fermi National Accelerator Laboratory','ALGORITHMS B_PHYSICS CALORIMETER DAQ_ELECTRONICS DATA_MANAGE FIBER_TRACKER MC MUON ONLINE SILICON SOFTWARE_INFRA TOP TRIGGER WZ','2/19/2007','denisovd'),('M.V.S. RAO','mvsrao@fnal.gov mvsrao@tifrvax.tifr.res.in','(630)840-4236 [91-22]215-2311/2971(*)','','','','','',''),('Ed PODSCHWEIT','eop@fnal.gov','(630)840-2974','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Mark GOFORTH','goforth@fnald0.fnal.gov','(630)840-8384','','','','','',''),('Patrick GARTUNG','gartung@fnal.gov','Patrick has graduated from the UCR group','(815)753-9514','http://www-d0.fnal.gov/~gartung','University of California, Riverside','','11/15/1999','heinson'),('Qiang ZHU','NYUHEP::ZHU qzhu@fnal.gov','(212)998-7758 (630)840-2835 (630)840-8322','','','','','',''),('Jie YANG','JYANG@fnal.gov','(630)840-8322','','','','','',''),('Robert HENTZEL','','','','http://high-energy.physics.iastate.edu','No longer working for D0','','5/10/2005','hauptman'),('Zachary WOLF','SSCVX1::WOLF','','','','','','',''),('John TAYLOR','CSA::TAYLOR','(510)486-5451','','','','','',''),('John YETTER','NIUHEP::YETTER','(815)753-1230/0787','','','','','',''),('Darien R. WOOD','darien@neu.edu darien@fnal.gov','(630)840-2828 (617)373-2958','(857)891-6509','http://www-d0.fnal.gov/~darien/darien.html','Northeastern University','MUON WZ','8/22/2007','darien'),('Marvin JOHNSON','mjohnson@fnal.gov','(630)840-3168','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Chip STEWART','stewart@fnal.gov','(630)840-2827','(708)584-5106','','','','',''),('DAB - Counting Room 309 (East)','','2836/2817/2818/2819','','','','','',''),('Michael BEGEL','begel@fnal.gov','631-344-3403 630-840-6833','','http://','Brookhaven National Laboratory','TOP','12/27/2007','serban'),('DAB - Muon Gas (510)','','2846/2817/2818/2819','','','','','',''),('John WOMERSLEY','womersley@fnal.gov','Formerly FNAL','','http://www-d0.fnal.gov/~womersle/womersle.html','No longer working for D0','','10/12/2006','jonckheere'),('Vladimir BABINTSEV','babintsev@mx.ihep.su','(630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Joe HENTZEL','','','','http://high-energy.physics.iastate.edu','Iowa State University','','5/10/2005','hauptman'),('Philippe EBERHARD','CSA::EBERHARD','(510)486-4405','','','','','',''),('Vyatcheslav KLYUKHIN','klyukhin@d0sgi9.fnal.gov klyukhin@m9.ihep.su','(630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Vladislav SIMAK','simak@fzu.cz simak@fnal.gov','+420-2-8585443 +420-2-66052145 (630)840-8464','','http://','Institute of Physics of Czech Academy of Sciences','','7/27/1999','jonckhee'),('C.Shekhar MISHRA','mishra@fnal.gov','(630)840-4094/3952/p(847)536-0008','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Frederic STICHELBAUT','','','','http://','NONE','','4/13/2004','serban'),('Dina STOYANOVA','Dina.Stoyanova@ihep.ru','(630)840-8570','','http://','Institute for High Energy Physics, Russia','MUON','5/11/2005','bezzubov'),('Susan BLESSING','blessing@hep.fsu.edu','(850)644-1032 (630)840-8384','','','Florida State University','','',''),('DAB - High Bay NE','','2375/2376/2622/2623','','','','','',''),('Tom RATHBUN','tdr@fnal.gov','(630)840-2152','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Philippe MANGEOT','','33-1-6908-3045','','','','','',''),('Harald JOHNSTAD','johnstad@fnald0.fnal.gov','(630)840-8749/2817','','','','','',''),('Kirill DENISENKO','denisenk@fnal.gov','(630)840-2418/page536-1054','','','','','',''),('Elizaveta SHABALINA','elis@fnal.gov elis@uic.edu','(630)840-2551','(630)357-4569','http://www-d0.fnal.gov/~elis','University of Illinois, Chicago','MC SILICON','11/16/2001','elis'),('Paul SLATTERY','slattery@pas.rochester.edu','(585)275-6955','','http://','University of Rochester','ONLINE QCD','6/3/2002','hagopian'),('Chris KLOPFENSTEIN','klopfenstein@fnald0.fnal.gov KLOPFENSTEIN@ucdavis.edu','(630)840-2931 (916)752-6702','','http://','University of California, Davis','','5/6/1998','nunez'),('DAB - Assembly Hall 1st Flr (SW)','','2375/2376/2622/2623','','','','','',''),('M. R. KRISHNASWAMY','mrkswamy@fnal.gov','(630)840-3590','','http://','Tata Institute of Fundamental Research, India','','5/6/1998','nunez'),('Laurent CHEVALIER','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','ALGORITHMS MUON','5/11/2005','besancon'),('Paul DRAPER','draper@fnal.gov/draper@uta.edu','(817)272-2817','','http://','University of Texas, Arlington','','5/7/1998','nunez'),('Yanxiang ZHAO','yzhao@fnald0.fnal.gov','(516)632-8092 (630)840-8569','','','','','',''),('Jose ROLDAN','jroldan@uniandes.edu.co','[57-1]332-4500 (630)840-5199','','http://','Universidad de Los Andes, Colombia','','6/9/2001','gomez'),('George KALBFLEISCH','grk@phyast.nhn.ou.edu grk@fnal.gov','(405)325-3961x36315','','http://','No longer working for D0','','5/27/2005','gut'),('Dave CUTTS','cutts@fnal.gov cutts@brown.edu','(401)863-2422 (401)863-2644 (630)840-8324','','http://www.hep.brown.edu/www2/cutts.html','Brown University','D033 DAQ_ELECTRONICS NEW ONLINE TRIGGER','10/19/2006','cutts'),('Welanthantri DHARMARATNA','dharma@fnal.gov','(630)840-8301','','','','','',''),('Yuri KOVCHEGOV','yuri@phys.columbia.edu','(212)854-5784','','http://','','','7/27/1999','jonckhee'),('Alexandr KALININ','kalinin@fnal.gov','840-2989 709621-62851','formerly JINR, RU','http://','No longer working for D0','','4/11/2007','jonckheere'),('Suemee SHIN','shin@utahep.uta.edu','(817)861-0552 (630)840-8599','','','','','',''),('Adam PARA','para@fnal.gov','(630)840-2132','','http://','No longer working for D0','','10/13/2006','jonckheere'),('Dave SCHMID','dschmid@fnald0.fnal.gov','(214)708-3063','','','','','',''),('Gennady BRISKIN','briskin@hep.brown.edu','','','http://www.hep.brown.edu/users/briskin','No longer working for D0','DAQ_ELECTRONICS NEW ONLINE TOP','5/9/2005','partridge'),('Carl LUNDSTEDT','clundst@unlserve.unl.edu','(402)472-9879 (630)840-5034','(402) 435-7029','http://unlhepcl.unl.edu/cl','University of Nebraska','','5/26/1999','clundst'),('Stan KRZYWDZINSKI','krzyw@fnal.gov','retired from FNAL','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Al CLARK','arclark@lbl.gov','(510)486-6923 (630)840-8715','(510) 376-6015','http://d0lbln.lbl.gov/wwwd0/d0.html','No longer working for D0','SILICON','5/9/2005','madaras'),('P.V. RAMANA MURTHY','','[91-22]215-2311/2971(*)','','','','','',''),('Rich MUELLER','mueller@fnald0.fnal.gov','','','','','','',''),('Paolo FRANZINI','paolo@lnf.infn.it','','','','','','',''),('John BALDERSTON','bald@fnald0.fnal.gov','(630)840-2571 (808)956-2935','','','','','',''),('Ron RICHARDS','richards@pa.msu.edu','(517)884-5570','','http://','Michigan State University','','5/5/2008','linneman'),('Christopher HAYS','hays@fnal.gov','(630)840-8010','(708) 445-9167','http://www-d0.fnal.gov/~hays','No longer working for D0','CALORIMETER NEW','11/15/2006','tuts'),('Yuri GUTNIKOV','gutnikov@fnald0.fnal.gov','095-925-2634 (630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Andy STEFANIK','stefanik@fnal.gov','(630)840-4131/p0767','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Frank NAGY','nagy@fnal.gov','(630)840-4935','','','','','',''),('Zhendong WU','wuzd@FNALD0.FNAL.GOV','(630)840-8339','','http://','IHEP, Beijing, China','SILICON','4/9/1998','bingyun'),('David BERGMAN','aneta@fnal.gov','840-5404 312-996-5355','','http://hepalpha1.phy.uic.edu/','NONE','','3/20/2003','adams'),('Vladimir KOCHETKOV','kochetkov@m10.ihep.su','(630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Mike UTES','utes@fnal.gov','(630)840-2220/4114/2578','','http://d0server1/users/utes/default.htm','Fermi National Accelerator Laboratory','DAQ_ELECTRONICS','9/17/1999','utes'),('Lori OESCH','MICH::OESCH','(313)936-2868','','http://','NONE','','8/24/1998','qianj'),('Manho CHUNG','','','','','NONE','','3/20/2003','adams'),('Pier ODDONE','CSA::ODDONE','(510)486-7172','','','','','',''),('Bruno GOBBI','gobbi@fnald0.fnal.gov NUHEP::BRUNO','(630)840-2817/2474 (847)491-5463 (847)207-8503','','http://','NONE','','2/12/2001','buchholz'),('Steven GLENN','glenn@fnald0.fnal.gov/UCDHEP::STEVE','(630)840-2931','','','','','',''),('Nobuaki OSHIMA','oshima@fnal.gov','(630)840-2298','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Edward BOOS','boos@fnal.gov boos@theory.npi.msu.su','(630)840-3894 011-7(095)939-2393/0397','','http://','Moscow State University, Russia','','5/6/1998','nunez'),('Paul BLOOM','pbloom@fnal.gov bloom@slac.stanford.edu','(650)926-3820','(650)737-9783','http://www.slac.stanford.edu/~bloom','NONE','WZ','7/27/1999','jonckhee'),('Yeong Mouk PARK','ympark@kupid.korea.ac.kr ympark@fnald0.fnal.gov','(51)620-4627 (630)840-4802/4595','','http://','Kyungsung University, Korea','','5/6/1998','nunez'),('Victoria MARTIN','martin@fnald0.fnal.gov','(517)353-5180','','','','','',''),('Vladimir ANOSOV','anosov@nu.jinr.ru','7-09621-65049 (630)840-2989','','','','','',''),('Terry WALDROP','waldrop@fnal.gov','(630)840-2819/4026','','http://','Fermi National Accelerator Laboratory','','5/12/1998','nunez'),('Vandana PATEL','vandana@fnald0.fnal.gov','(630)840-8694','','','','','',''),('Werner KOELLNER','CSA::KOELLNER','(510)486-4398','','','','','',''),('Bernardo GOMEZ','bgomez@uniandes.edu.co gomez@fnal.gov','[57-1]332-4500 (630)840-5199(*)','[57-1]235-3688','http://wwwprof.uniandes.edu.co/~bgomez/','Universidad de Los Andes, Colombia','B_PHYSICS MUON','6/9/2001','gomez'),('Juliet LEE-FRANZINI','Juliet.Lee-Franzini@lnf.infn.it','(011)-(39)-6-9403-2654','','http://','State University of New York, Stony Brook','','4/9/2000','dean'),('Yuehua ZHOU','zhouyh@fnal.gov','','','','','','',''),('Robert KEHOE','kehoe@physics.smu.edu','(214)768-1793 (630)840-3954','','http://www.physics.smu.edu/~kehoe','Southern Methodist University','CALORIMETER TOP TRIGGER','3/1/2005','kehoe'),('Joerg MEYER','jmeyer@fnal.gov','+1-630-840-5440','','http://','Physikalisches Institut, Bonn University','TOP','4/30/2007','jmeyer'),('Oleg EROSHIN','eroshin@fnal.gov','(630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Andrei MAYOROV','mayorov@fnal.gov','(630)840-8570','','d0server1.fnal.gov/users/mayorov','No longer working for D0','B_PHYSICS FIBER_TRACKER MUON ONLINE','5/11/2005','bezzubov'),('Ivan KOTOV','kotov@fnal.gov','','','','','','',''),('Hyon-Joo KEHAYIAS','kehayias@bnl.gov','(516)344-4162','','','','','',''),('Barry L. HOWELL','howell@kekvax.kek.jp howell@physics.purdue.edu','(703)824-2236','','','','','',''),('Mike FORTNER','fortner@fnal.fnal.gov','(630)840-8323/2817 (815)753-6478','','http://niuhep.physics.niu.edu/~fortner/','Northern Illinois University','ALGORITHMS D033 MUON TRIGGER','7/8/1999','fortner'),('Jorge BARRETO','barreto@fnal.gov','630-8402534','','http://www.if.ufrj.br/~barreto','CBPF/LAFEX, Brazil','QCD','3/13/2002','barreto'),('Mike SHEA','shea@fnal.gov','(630)840-4412/4418','','','','','',''),('Henryk PIEKARZ','','','','','NONE','','2/16/2001','hagopian'),('Rubai LI','lirubai@fnal.gov','','','','','','',''),('Bob ANGSTADT','angstadt@fnal.gov','(630)840-2554','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Thorsten WENGLER','twengler@dice2.desy.de','+49(0)40-8998-3856','','','','','',''),('H.C. SHANKAR','','(630)840-3590','','http://','NONE','','7/16/2002','vsn'),('Rob MAHER','maher@fnald0.fnal.gov','(630)840-8594/5039','','','','','',''),('Qiuping JIA','jiaqp@nuhepz.phys.nwu.edu. jiaqp@fnal.gov','(847)467-3083 (630)840-8325','','http://','NONE','','5/6/1998','nunez'),('Dave EARTLY','deartly@fnal.gov','(630)840-3125','','','','','',''),('Oscar RAMIREZ','ramirez@fnald0.fnal.gov','(630)840-5199','','','','','',''),('Nikola MOKHOV','mokhov@fnal.gov','(630)840-4409','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Rajendran RAJA','raja@fnal.gov','(630)840-4092','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Rick COLOMBO','colombo@fnal.gov','(630)840-8225','','','','','',''),('Adam LYON','lyon@fnal.gov','(630) 840-5522','','http://','Fermi National Accelerator Laboratory','','5/8/2002','lyon'),('Jeffrey BANTLY','bantly@fnald0.fnal.gov','(630)840-3784','(708)778-8502','','','','',''),('Ajay M. NARAYANAN','ajaymn@fnald0.fnal.gov','(520)621-4273','','','','','',''),('Yuyi GUO','guoyy@kuhep4.phsx.ukans.edu','(913)864-3084','','','NONE','','',''),('David E. CULLEN-VIDAL','cullen_vidal@fnal.gov/BRHEP1::CULLEN_VIDAL','(630)840-2722','','','','','',''),('Dan CLAES','dclaes@unlhep.unl.edu','(402)472-2783','','http://','University of Nebraska','','4/16/1998','gregsnow'),('Marc PATERNO','paterno@fnal.gov','4532 6689 2215','formerly Fermilab','http://home.fnal.gov/~paterno','No longer working for D0','ALGORITHMS SOFTWARE_INFRA','10/26/1999','paterno'),('Yurii PISCHALNIKOV','pischal@fnal.gov','','','http://','Purdue University','','5/6/1998','nunez'),('Rick LUTHER','luther@fnal.gov','(630)840-2322','','','','','',''),('Robert MCCROSKEY','robmcc@fnal.gov','Formerly Arizona','','http://www-clued0.fnal.gov/~robmcc','No longer working for D0','','10/12/2006','jonckheere'),('Alexander KOZELOV','Alexander.Kozelov@ihep.ru','(630)840-8570','(630)840-4232','http://','Institute for High Energy Physics, Russia','MUON','2/14/2007','kozelov'),('Joseph DANE','dane@nucleus.ps.uci.edu','(714)824-2606 (630)840-2278','','','','','',''),('Jay WIGHTMAN','wightman@fnal.gov','(630)840-8319','','http://','Iowa State University','','4/30/1998','thatcher'),('Xia YI','xiayi@fnald0.fnal.gov','(630)840-????','','','','','',''),('Matthew MALEK','matthewmalek@sbhep.physics.sunysb.edu','(631)632-8100','','http://','NONE','','9/28/2000','dean'),('Qiuwen WU','NEVIS::WU','(914)591-8100x231 (630)840-4779','','','NONE','','',''),('Jim HAUGHIAN','CSA::HAUGHIAN','(510)486-6162','','','','','',''),('Steve JERGER','jerger@fnal.gov','(630)840-8010','(630)978-4257','http://','NONE','','2/22/2001','linneman'),('Tracy TAYLOR THOMAS','ttaylor@fnal.gov','(847)491-8612 (630)840-5221/8325','','','','','',''),('Jamal N. TARAZI','tarazi@fnal.gov','(630)840-8464','','http://','NONE','','7/1/1999','stoker'),('Michelle GLEASON','michelle@fnal.gov','(630)840-3211','','','','','',''),('George POPE','pope@rrwilson.ucdavis.edu gpope@fnal.gov','(916)752-4096','','','','','',''),('Rodrigo Alves NATALIZI','natalizi@fnald0.fnal.gov','(707)840-3565 (5521)542-3837','','','','','',''),('Eric KAJFASZ','kajfasz@fnal.gov kajfasz@cppm.in2p3.fr','+33-4 91 82 76 13 (CPPM) +1-(630)840-6829 (FNAL)','','http://www-clued0.fnal.gov/~kajfasz/','Centre de Physique des Particules de Marseille','ALGORITHMS NEW SILICON','12/12/2003','kajfasz'),('James ROBERTSON','FSUHEP::ROBERTSON','(850)644-0020 (630)840-8384','','','','','',''),('James T. MCKINLEY','mckinley@fnald0.fnal.gov','(630)840-8595','','','','','',''),('Domenico PIZZUTO','SBHEP::PIZZUTO','(516)632-8085','','','','','',''),('Richard JESIK','jesik@fnal.gov','(630)840-2418','cell (312)890-9669','http://','Imperial College, London','B_PHYSICS FIBER_TRACKER','1/7/2002','jesik'),('Jasbir SINGH','singhjb@fnal.gov pulib@puchd.res.nic.in','(630)840-3899 91-172-541741','','http://','Panjab University, India','','5/6/1998','nunez'),('Qizhong LI','qzli@fnal.gov','(630)840-8703','','http://','Fermi National Accelerator Laboratory','ALGORITHMS SOFTWARE_INFRA TOP WZ','11/24/1998','qzli'),('Jim KOWALKOWSKI','jbk@fnal.gov','(630)840-2215','','http://','Fermi National Accelerator Laboratory','','4/14/1998','nunez'),('Daniel MENDOZA','mendoza@fnal.gov','(630)840-4114 (630)840-5199 [57-1]332-4500','','','Universidad de Los Andes, Colombia','DAQ_ELECTRONICS SILICON','6/9/2001','gomez'),('Pat MOONEY','mooney@fnald0.fnal.gov pmooney@cdcnet.uniandes.edu.co','57-1-283-9514','','','','','',''),('Alejandro MIRLES','amirles@fnal.gov','(630)840-8302','','','','','',''),('Leonid GRIGORIEVICH','tkatchev@vxcern.cern.ch','41-022-767-4870 7-096-21-65868','','','','','',''),('Ray MCILWAIN','PURDUE::MCILWAIN','(765)494-5390(*)','','','','','',''),('Valeriy FERAPONTOV','ferapontov@fnald0.fnal.gov','(630)840-8570','','','','','',''),('Peipei XIE','peipei@fnal.gov','','','','','','',''),('Ann RIVET','rivet@brhep1.physics.brown.edu','(401)863-2304 (630)840-8701','','','','','',''),('Dave FINLEY','finley@fnal.gov','(630)840-4620','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Alex BURKERT','burkert@fnald0.fnal.gov/burkert@physics.niu.edu','(630)840-2138','','','','','',''),('Jerry O\'CONNELL','jpoconnell@fnal.gov','(630)840-3704/pg314-2762','','','','','',''),('Sungkeun PARK','sungpark@fnal.gov','840-8308 82-2-3290-3099','','http://','Korea University, Korea','','8/3/2000','jrhoades'),('Heriberto CASTILLA','castilla@fnal.gov','[52-55]50613800 x6112 (630)840-4477','(630)840-4477','http://www.fis.cinvestav.mx/~castilla/','CINVESTAV, Mexico','B_PHYSICS MUON SILICON','5/10/2005','castilla'),('Hans JOSTLEIN','jostlein@fnal.gov','(630)840-4546/3962/pg(630)905-8747','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Terry GELD','tlgeld@dirac.pa.msu.edu D0TNG::TLGELD','(517)432-0216','','','','','',''),('Bingyun ZHANG','bingyun@fnal.gov zhangby@bepc5.ihep.ac.cn','(630)840-8339 8610-6821-3344(ext.2260)','','http://www-d0.fnal.gov/~bingyun/','IHEP, Beijing, China','ONLINE','4/8/1998','bingyun'),('Gene ALVAREZ','alvarez@fnald0.fnal.gov','(630)840-2572','','','','','',''),('Krishnaswamy GOUNDER','gounder@fnal.gov','Formerly FNAL','','http://www-ap.fnal.gov/~gounder/','No longer working for D0','B_PHYSICS NEW SILICON TOP WZ','10/12/2006','jonckheere'),('Kurt KREMPETZ','krempetz@fnal.gov','(630)840-4657','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Victor KIM','vkim@fnal.gov','(630)840-4463 +7(813-71)46722','','http://','Petersburg Nuclear Physics Institute, Russia','MUON','5/16/2005','loboden'),('Robert MARTIN','','','','','NONE','','3/20/2003','adams'),('Al ITO','asito@fnal.gov','(630)840-4950/3270/2111/p218-4841','630-208-1540','http://','Fermi National Accelerator Laboratory','MUON','5/9/2005','asito'),('Ray ZELLER','BRHEP1::ZRL (@ZRL)','(401)863-2304 (401)254-0270','','http://','Brown University','','5/5/1998','nunez'),('Ram SHIVPURI','shiv@fnal.gov, cdrst@hepdelhi.com','(630)840-3062/3025, 011-91-11-27667036','','http://','Delhi University, Delhi, India','','5/26/2004','brajesh'),('Ray AMMAR','ammar@kuhep3.phsx.ukans.edu','(785)864-4626 (630)840-4661','University of Kansas','http://','No longer working for D0','','1/8/2008','baringer'),('Bob HIROSKY','hirosky@virginia.edu','(434)982-5721 (630)840-6900','','http://galileo.phys.virginia.edu/~rjh2j','University of Virginia','ALGORITHMS QCD TRIGGER','4/17/2002','hirosky'),('Wendy CORRIGAN','phxwendy@aol.com','(630)840-2937','','','','','',''),('Judd WILCOX','wilcox@fnald0.fnal.gov','(630)840-4992','','','','','',''),('Zhengzhi ZHANG','zzhang@fnald0.fnal.gov','(516)632-7988 (630)840-5262','','','','','',''),('John KRANE','jkrane@_netzero_.com (remove_underscores_manually)','','','http://www-d0.fnal.gov/~jkrane/John_Krane.html','','QCD','8/7/2003','jkrane'),('Roger DIXON','roger@fnal.gov','(630)840-2576','','','','','',''),('Nemat RAKHMATOV','nemat@fnal.gov','(630)840-4802','','http://needmore.physics.indiana.edu/~iuhep/','No longer working for D0','','5/11/2005','zieminsk'),('Kim Kwee NG','ng@sbhep.physics.sunysb.edu','(631)632-8189','','http://','State University of New York, Stony Brook','','9/28/2000','dean'),('Michael LEVI','levi@LBL.GOV','(510)486-7186','','','','','',''),('Vanessa WICHMANN','','','','http://','NONE','','1/11/1999','darien'),('DAB - High Bay SE','','2847/2817/2818/2819','','','','','',''),('N.I. BOJKO','bojko@fnal.gov','(630)840-8570','','','','','',''),('Mario VAZ','mariovaz@fnal.gov','(5521)2141-7312(CBPF), (5521)2562-8204(UFRJ)','(5521) 9996-5613','http://d0br1.lafex.cbpf.br/~mario/','CBPF/LAFEX, Brazil','DAQ_ELECTRONICS TRIGGER','10/1/2003','mariovaz'),('Elemer NAGY','enagy@fnal.gov nagy@cppm.in2p3.fr','011-33-4-91.82.72.73 (630)840-6829','011-33-4-91.41.55.33','http://','Centre de Physique des Particules de Marseille','CALORIMETER MC NEW','2/13/2001','enagy'),('Stuart FUESS','fuess@fnal.gov','(630)840-2452/p722-6879','(630)420-8506','http://d0server1.fnal.gov/www/Fuess/fuess.html','Fermi National Accelerator Laboratory','ONLINE','4/30/1998','fuess'),('Sherie LANDRUD','landrud@fnal.gov','(630)840-8837','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Dan KAPLAN','kaplan@fnal.gov','(815)753-6484 (630)840-3916','','','','','',''),('Daniel GOLDIN','goldin@thomson.ucdavis.edu','(916)752-4096 (630)840-2931','','http://','University of California, Davis','','5/6/1998','nunez'),('Howard GOLDBERG','','','','http://hepalpha1.phy.uic.edu/','NONE','','3/20/2003','adams'),('Ian ADAM','imadam@fnal.gov','(630)840-8757','(312)292-5450','','','','',''),('Dave FLORY','flory@iastate.edu','(515)294-3944 (515)294-6186','','','','','',''),('Roy THATCHER','thatcher@fnal.gov','(630)840-8364/3144 page-847-536-1563','800-555-1212','http://www-d0.fnal.gov/~thatcher/','Fermi National Accelerator Laboratory','','8/20/1998','thatcher'),('Jeffrey MCDONALD','jemcdon@fnal.gov jmcdon@hep.fsu.gov','(850) 644-0865 (630)840-8384','','http://www.hep.fsu.edu/~jmcdon','No longer working for D0','ONLINE TOP','12/14/2006','blessing'),('John HAUPTMAN','hauptman@iastate.edu','(515)294-8572','','http://','Iowa State University','','5/6/1998','nunez'),('Rhonda PETERS','RHONDA@fnald0.fnal.gov','(630)840-8633','','','','','',''),('Alexander PUKHOV','','','','','No longer working for D0','','5/25/2005','dudko'),('Milos Lokajicek','lokajick@fnal.gov','420-2-66052672 (630)840-2817','','http://','Institute of Physics of Czech Academy of Sciences','','2/28/2001','jonckheere'),('Sandor FEHER','fehers@fnal.gov','(630)840-2240/2855','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Emanuela BARBERIS','e.barberis@neu.edu barberis@fnal.gov','(630)840-8485 (617)373-2935','','http://www-d0.fnal.gov/~barberis/barberis.html','Northeastern University','ALGORITHMS MUON SILICON TOP TRIGGER','11/14/2002','barberis'),('Christopher CHIARA','chiara@fnald0.fnal.gov','(630)840-3105','','http://','','','3/31/1998','WWW'),('Diane IBARAKI','operdi@uhhepg.phys.hawaii.edu','(808)956-7442','','','','','',''),('Fred LOBKOWICZ','','','','http://www-d0.fnal.gov/ac/public_html/memorial/lobkowicz/lobkowicz.html','NONE','','12/20/2001','ferbel'),('Vladimir SIROTENKO','sirotenko@fnal.gov','(630)840-4802','(630)466-8457','http://www-d0.fnal.gov/~sirotenk','Fermi National Accelerator Laboratory','DATA_MANAGE ONLINE QCD SOFTWARE_INFRA','7/18/2003','sirotenk'),('Tom DIEHL','diehl@fnal.gov','(630)840-8307 (630)840-6866','','http://www-d0.fnal.gov/~diehl/diehl.html','Fermi National Accelerator Laboratory','','1/22/2006','diehl'),('Mark FITZPATRICK','fitzpatrick@fnal.gov','(630)840-8303 / cell 773-294-8267','773-528-7696','http://','Fermi National Accelerator Laboratory','','5/7/2001','fitzpatr'),('Dennis L. SHPAKOV','dshpakov@fnal.gov','Formerly Northeastern','','http://www-d0.fnal.gov/~dshpakov/','No longer working for D0','','10/12/2006','jonckheere'),('Steve LINN','linn@fnal.gov','(850)644-0180 (630)840-8301/5635','','http://','No longer working for D0','','5/10/2005','hagopian'),('John JIANG','jiang@fnal.gov','(630)840-8388','','','','','',''),('Hiro AIHARA','CSA::AIHARA','(510)486-4414','','','','','',''),('Mary CULLEN','cullen@fnal.gov','(630)840-3211','','','','','',''),('John HOBBS','hobbs@sbhep.physics.sunysb.edu','(631)632-8107 (630)840-3162','','http://sbhepnt.physics.sunysb.edu/~hobbs/hobbs.html','State University of New York, Stony Brook','ALGORITHMS NEW SILICON TOP TRIGGER','12/6/2001','hobbs'),('Vladimir MALYSHEV','malyshev@fnald0.fnal.gov malyshev@nu.jinr.ru','(630)840-2989 7-096-21-62851','','http://','Joint Institute for Nuclear Research, Russia','MUON','5/8/2001','sabirov'),('Jesse GRIMES','jdgrimes@fnald0.fnal.gov','(630)840-3370','','','','','',''),('Gian DI LORETO','Gian@em.insignet.com','','','http://','No longer working for D0','','3/1/2005','linneman'),('Vladimir GAVRILOV','gavrilov@fnal.gov','(630)840-5640 +7-495-129-9447','','http://','Institute for Theoretical & Exp. Physics, Russia','','10/26/2006','evdokim'),('Bill WICKENBERG','wickenberg@fnal.gov','(630)840-4381','','','','','',''),('LAB 8 BOARD FACTORY','','(630)840-4737','','','','','',''),('Neeti Parashar','neeti@fnal.gov','(630)840-6368, (219)989-2722','','http://','Purdue University Calumet','ALGORITHMS MUON TRIGGER','3/14/2006','neeti'),('Roslyn ABELL','D0UP01::ABELL','(630)840-5039 (312)996-5909','','','','','',''),('Fred BORCHERDING','fredob@fnal.gov','formerly FNAL','','http://d0server1.fnal.gov/users/borcherding/Fred_home.html','No longer working for D0','D033 FIBER_TRACKER NEW TRIGGER','10/12/2006','jonckheere'),('Nelli PUKHAEVA','N.Pukhaeva@cern.ch','(007)096-21-63103','','','','','',''),('Guenther DISSERTORI','disserto@quark.uibk.ac.at DISSERTO@fnald0.fnal.gov','43-512-218-5019 (630)840-4925','','','','','',''),('Abid PATWA','abid@fnal.gov','(630)840-5636 (631)344-6148','(847)679-0990','http://www-d0.fnal.gov/~abid/Welcome.html','Brookhaven National Laboratory','B_PHYSICS FIBER_TRACKER PRESHOWER TOP','4/5/2007','abid'),('Dusan NESIC','BRHEP1::NESIC','(212)559-2284','','','','','',''),('Alice CICHANOWITZ-DUGAN','DUGAN@sbhep.physics.sunysb.edu','(631)632-8098','','http://','State University of New York, Stony Brook','','11/1/1999','dean'),('Hai ZHENG','hzheng1@nd.edu','(630)840-8341','','http://','University of Notre Dame','FIBER_TRACKER NEW TOP','10/31/2000','hzheng'),('DAB - Counting Room 107','','2832/2817/2818/2819','','','','','',''),('Kate FRAME','frame@fnal.gov','','','http://','No longer working for D0','QCD','3/1/2005','linneman'),('DAB - Counting Room 108','','2833/2817/2818/2819','','','','','',''),('Ed OLTMAN','CSA::OLTMAN','(510)486-6915','','','','','',''),('Donald EMERY','emery@fnal.gov','(630)840-2333','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Tong HU','nemat@fnal.gov','(630)840-4802','','http://needmore.physics.indiana.edu/~iuhep/','No longer working for D0','','5/11/2005','zieminsk'),('Jianming QIAN','qianj@umich.edu','(734)936-1033 (630)840-2438','','http://www-d0.fnal.gov/~qianj','University of Michigan','NEW PRESHOWER TOP','2/23/2007','qianj'),('Herman HAGGERTY','haggerty@fnal.gov','(630)840-2375/2474','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Sasha ZINCHENKO','zinchenko@fnald0.fnal.gov','(630)840-2818/2039','','','','','',''),('Lenard SMITH','lsmith@mathrisc1.lunet.edu','(405)466-3332','','','','','',''),('Hui ZHU','','','','','NONE','','12/20/2001','ferbel'),('Laura A. PATERNO','lpaterno@fnal.gov','(630)840-4011','formerly Fermilab','http://d0server1.fnal.gov/users/lpaterno','No longer working for D0','ONLINE','4/13/1998','lpaterno'),('V. BALAMURALI','balamura@fnald0.fnal.gov BALAMURALI@undhep.hep.nd.edu','(630)840-8342 (219)631-6121','','','','','',''),('Xingquan LI','MICH::XLI','(313)764-4443 (630)840-5065','','','','','',''),('Tao GU','taogu@fnal.gov','','','','','','',''),('DAB - Room 502 Offices - Cable Gp','','2855','','','','','',''),('Marcus LARWILL','larwill@fnal.gov','(630)840-3551','','','','','',''),('Jack MATESKI','mateski@fnal.gov','(630)840-2812','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Hailin LI','lihl@fnald0.fnal.gov','(630)840-8598','','','','','',''),('Dylan P. CASEY','dcasey@sjca.edu','','','http://www.pa.msu.edu/~casey','No longer working for D0','QCD TRIGGER WZ','3/1/2005','linneman'),('John ELTZROTH','eltzroth@fnal.gov','(817)272-2811 (630)840-2691','','http://www-d0.fnal.gov/~eltzroth','University of Texas, Arlington','CALORIMETER NEW','4/18/2001','eltzroth'),('Sebastian GRINSTEIN','hwah@df.uba.ar','(541)782-1007 (630)840-8317','','http://','No longer working for D0','ALGORITHMS QCD SILICON','5/11/2005','aia'),('Wayne BAISLEY','baisley@fnal.gov','(630)840-8490','','','','','',''),('Ssu-Min CHANG','chang@fnald0.fnal.gov','(630)840-2573','','','NONE','','',''),('Meenakshi NARAIN','meena@fnal.gov narain@hep.brown.edu','(630)840-8238 (401) 863-2634','','http://','Brown University','ALGORITHMS D033 MC NEW SILICON SOFTWARE_INFRA TOP TRIGGER','4/2/2007','meena'),('Kevin KWAN','','','','','NONE','','3/20/2003','adams'),('Gaston Ricardo GUTIERREZ','gaston@fnal.gov','(630)840-4107','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Pete SIMON','pgs@fnal.gov','(630)840-2852/2817/p612-8241','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Singh HARPREET','shappy@fnald0.fnal.gov','Harpreet has graduated from the UCR group','','http://','University of California, Riverside','','12/7/2000','heinson'),('Peter TAMBURELLO','tamburel@fnal.gov','840-2651','Formerly Arizona','http://www-clued0.fnal.gov/~tamburel','No longer working for D0','','1/22/2008','jonckheere'),('Phil MARTIN','pmartin@fnal.gov','(630)840-4547','','','','','',''),('Helio da MOTTA','helio@fnal.gov helio@cbpf.br','(630)840-2454 011-55-21-21417176','','http://','CBPF/LAFEX, Brazil','QCD','10/18/2005','polme'),('Bruce GIBBARD','gibbard@bnl.gov','(631)344-7969 (630)840-8323','','http://','NONE','','2/13/2001','serban'),('Alexander GALYAEV','galyaev@fnald0.fnal.gov','(630)840-8570 095-925-2634','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Mary Anne CUMMINGS','macc@fnal.gov','(630)840-5224/2818','formerly at NIU','http://www.physics.niu.edu/~macc','No longer working for D0','','11/16/2006','hedin'),('Tao HU','HUT@fnald0.fnal.gov','(630)840-8339 8213344-658','','','','','',''),('Simon EPSTEYN','seva@fnal.gov','630-840-3936','','http://','Fermi National Accelerator Laboratory','','9/17/1999','jonckhee'),('Ling-Jun PAN','panlj@nuhepz.phys.nwu.edu','(847)467-3083 (630)840-8325','','http://','NONE','','2/12/2001','buchholz'),('Kelly DIXON','kdixon@fnal.gov','(630)840-2634','','','','','',''),('Gregory GRIFFIN','griffin@nucleus.ps.uci.edu','(714)725-2606 (630)840-8786','','','','','',''),('Paul GRANNIS','pgrannis@fnal.gov pgrannis@sunysb.edu grannis@sbhep.physics.sunysb.edu','(631)632-8088/8095 (NY) (630)840-4133 (FNAL)','(631) 751-9419','http://sbhep1.physics.sunysb.edu/~grannis','State University of New York, Stony Brook','B_PHYSICS CALORIMETER D033 NEW PRESHOWER QCD TOP TRIGGER WZ','11/3/1999','pgrannis'),('Alan BROSS','bross@fnal.gov','(630)840-4880','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Alexeev GENA','alexeev@fnald0.fnal.gov','011-007-096-216-3795','','','','','',''),('Michael PETERS','UHHEPB::MWP','(808)956-2941','','http://','University of Hawaii','','5/7/1998','nunez'),('Hannu MIETTINEN','hem@kingwoodcable.com hem@rice.edu','713-348-4740','Formerly Rice U','http://','No longer working for D0','','3/21/2007','jonckheere'),('Jimmy KOURLAS','NYUHEP::KOURLAS','(212)998-7743 (630)840-8383','','','','','',''),('Geary EPPLEY','eppley@rice.edu','(630)840-2406 (713)348-4742','','http://','Rice University','','1/21/2008','corcoran'),('Michael RIJSSENBEEK','rijssenbeek@sbhep.physics.sunysb.edu','(631)632-8099/8095 (630)840-5296','','http://sbhep1.physics.sunysb.edu/~rijssenbeek','State University of New York, Stony Brook','PRESHOWER WZ','11/1/1999','dean'),('Jatinder KOHLI','kohli@pu.ac.in','+91-172-541241','','http://www.puhep.res.in/','Panjab University, India','MUON','10/10/2002','vipin'),('Joe HOWELL','nelly@fnal.gov','(630)840-4948','','','','','',''),('Chul Hi PARK','chpark@fnal.gov','(630)840-8296','','','','','',''),('Florencia CANELLI','canelli@fnal.gov','(630)840-8575 No longer with D0 - Try at CDF','formerly Rochester','http://www-d0.fnal.gov/~canelli','No longer working for D0','CALORIMETER FIBER_TRACKER ONLINE SOFTWARE_INFRA TOP','12/14/2006','jonckheere'),('Alexandre LEFLAT','leflat@fnal.gov','(630)840-8630/8631 011-7(095)939-5889','','http://','Moscow State University, Russia','','5/6/1998','nunez'),('Bill COBAU','cobau@fnald0.fnal.gov','(630)840-3757','','','','','',''),('Sal FAHEY','fahey@slac.stanford.edu','(415)926-4057','','','','','',''),('Mike GLAUBMAN','glaubman@hex.neu.edu','(617)437-2902(*)','','http://','NONE','','2/13/2001','darien'),('Ting HU','tinghu@fnald0.fnal.gov','(630)840-8598','','','','','',''),('Francois STOCKER','stocker@fnald0.fnal.gov','213-704-6025 (630)840-8653','','','','','',''),('Russell GILMARTIN','glmartin@fnal.gov','(630)840-8384 (630)840-8301','(630)355-5718','http://','No longer working for D0','NEW ONLINE TOP','5/10/2005','hagopian'),('DAB - Room 502 Offices - Calorim Gp','','2853','','','','','',''),('DAB - Counting Room 209','','2835/2817/2818/2819','','','','','',''),('Bogdan PAWLIK','bogdan@fnal.gov','(630)840-4802','(630)840-2048','http://','NONE','MC SILICON','4/29/2002','jonckheere'),('Rob MCELRATH','mcelrath@nwu.edu','(847)869-3052','','http://','NONE','','2/12/2001','buchholz'),('Ming DONG','dong@fnald0.fnal.gov','(212)998-7653 (630)840-2779','','','NONE','','4/14/1998','WWW'),('Richard MARKELOFF','markeloff@fnald0.fnal.gov','(815)753-6468 (630)840-8315','','http://','NONE','','4/28/1998','nunez'),('Jose Guilherme LIMA','lima@fnal.gov jglima@uerj.br','55-21-2587-7676 55-21-2587-7551','','http://www.lishep.uerj.br/~lima/index.html','Universidade do Estado do Rio de Janeiro, Brazil','ALGORITHMS B_PHYSICS','8/5/2002','lima'),('Olivier CALLOT','VXCERN::CALLOT','(41-22)767-4046','','','','','',''),('Heidi SCHELLMAN','schellman@fnal.gov','(630)840-5221 (847)491-8608','','http://www.nuhep.northwestern.edu/~schellma','Northwestern University','ALGORITHMS DATA_MANAGE QCD WZ','5/12/2005','buchholz'),('Vitor OGURI','oguri@fnal.gov oguri@uerj.br','55-21-587-7551/7454','formerly UERJ, BR','http://','No longer working for D0','','4/11/2007','jonckheere'),('Amber BOEHNLEIN','cope@fnal.gov','(630)840-2937/2817','','http://www-pat.fnal.gov/personal/cope/cope.html','Fermi National Accelerator Laboratory','ALGORITHMS NEW SOFTWARE_INFRA TRIGGER','8/25/1999','cope'),('Bob MADDEN','madden@fnald0.fnal.gov','(630)840-2825/8384','','','','','',''),('Hans KAUTZKY','kautzky@fnal.gov','(630)840-4888/4596','','','','','',''),('Nancy L. GROSSMAN','grossman@fnal.gov','(630)840-3810/p0745','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Pat LISTON','pml@fnal.gov','(630)840-2332/p(630)538-8877','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Greg CISKO','cisko@fnal.gov','(630)840-3998','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('John DRINKARD','drinkard@nucleus.ps.uci.edu','(714)824-2622','','','','','',''),('Evgueni KOMISSAROV','kev@nu.jinr.ru kev@fnal.gov','9-011-7-09621-63707 (630)840-6835','','http://','Joint Institute for Nuclear Research, Russia','MUON','5/8/2001','sabirov'),('Phillip GUTIERREZ','gut@fnal.gov','(405)325-3961ext 36339 (630)840-3724','','http://','University of Oklahoma','B_PHYSICS TRIGGER','5/27/2005','gut'),('Matthew COOPER','','','','','NONE','','2/16/2001','hagopian'),('Jennifer ADELMAN','adelman@d0hsc.fnal.gov','(640)840-3189','','','','','',''),('Regina DEMINA','demina@fnal.gov','(630)840-2052','(708)876-9688','http://','University of Rochester','','1/20/2004','harderk'),('Srini RAJAGOPALAN','srinir@bnl.gov','(631)344-5478','','http://','No longer working for D0','','11/16/2006','serban'),('Lee LUEKING','lueking@fnal.gov','fomerly FNAL','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Oxana SMIRNOVA','smirnova@nu.jinr.ru','7(09621)64546','','http://','Lund University, Sweden','','8/31/2001','hagopian'),('Jadwiga WARCHOL','warchol@fnal.gov','(630)840-8341/2129','630-357-4232','http://d0server1.fnal.gov/users/warchol','University of Notre Dame','FIBER_TRACKER','6/5/2003','warchol'),('Victor Daniel ELVIRA','daniel@fnal.gov','(630)840-3604','(630) 393-0149','http://www-d0.fnal.gov/~daniel','Fermi National Accelerator Laboratory','CALORIMETER QCD','11/17/2000','gerber'),('Rita THOMPSON','ritadi@fnal.gov','(630)840-8456','','','','','',''),('Bruce Knuteson','','','','http://d0lbln.lbl.gov/wwwd0/d0.html','No longer working for D0','ALGORITHMS FIBER_TRACKER NEW','5/9/2005','madaras'),('DAB - Counting Room 210','','2834/2850/2817/2818/2819','','','','','',''),('Sergei BELIKOV','belikov@mx.ihep.su','7-095-925-1489 (630)840-8570','','','','','',''),('Paul RUSSO','russo@fnal.gov','wk:(630)840-8184 cell:(630)862-6923 hm:(630)907-9172','(630)907-9172','http://www-d0.fnal.gov/~russo','Fermi National Accelerator Laboratory','SOFTWARE_INFRA','10/27/2005','russo'),('Jim HAWTREE','raph@fnal.gov','(630)840-4287','','','','','',''),('Pamela QUINTANA','quintana@hep.fsu.edu','(850)644-8960 (630)840-2825','','','','','',''),('Kazi FAZALULLAH','kazi@d0sgi0.fnal.gov','(630)840-2138 (630)953-2000','','','','','',''),('Nikolai SKATCHKOV','skachkov@cv.jinr.ru skachkov@fnal.gov','840-6835 9-011-7-09621-64592','','http://','Joint Institute for Nuclear Research, Russia','MUON','5/8/2001','sabirov'),('Rob REILLY','karen@fnal.gov','(630)840-4676','','','','','',''),('Alberto SANCHEZ','asanchez@fnal.gov','(630)840-4477 +52(55)5061-3839','','http://www.fis.cinvestav.mx/~asanchez','CINVESTAV, Mexico','B_PHYSICS MC SILICON WZ','9/27/2003','asanchez'),('David E. PELLETT','pellett@ucdhep.ucdavis.edu','(916)752-1783 (630)840-2931','','http://','University of California, Davis','','5/6/1998','nunez'),('Yuekuan LI','yuekuan@fnald0.fnal.gov','(708)491-8607 (630)840-8454','','','NONE','','',''),('Yves DUCROS','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Serguei BOIARINOV','boiarino@cebaf.gov','(630)840-8570','','','','','',''),('Tom FAHLAND','fahland@positron.ps.uci.edu','(949)824-7068 (630)840-8464','','http://','NONE','','4/29/2002','jonckheere'),('Hugo VILLEGAS-BRENA','villegas@fnald0.fnal.gov','','','','','','',''),('DAB - TRD Gas (215)','','2845/2817/2818/2819','','','','','',''),('Marek ZIELINSKI','marek@fnal.gov','(630)840-2373','','http://','University of Rochester','ALGORITHMS CALORIMETER MC','4/30/1998','marek'),('Igor MANDRICHENKO','ivm@fnal.gov','(630)840-4883','','http://','unknown','','11/8/2005','jonckheere'),('Asher KLATCHKO','klatchko@fnal.gov','(630)840-8301/3122','','','','','',''),('Shouyu ZHANG','zhangsy@fnald0.fnal.gov','(313)764-4443 (630)840-8513','','','','','',''),('Disk GUSTAFSON','dick@fnal.gov','','','','','','',''),('Dixon BOGERT','FNAL::ALMOND::BOGERT','(630)840-4010','','','','','',''),('Sailesh CHOPRA','chopra@fnal.gov','(630)840-3983','','http://','NONE','','4/13/2004','serban'),('Nina DENISENKO','ninaden@fnal.gov','(630)840-8295','','','','','',''),('DAB - Room 502 Offices - Cryo Gp','','2852','','','','','',''),('Zinovi KROUMCHTEIN','kumstin@main1.jinr.dubna.su kumstin@fnalu.fnal.gov','(007)-096-21-63483 (630)840-2989/4718','','','','','',''),('Dinker CHARAK','dinker@fnal.gov','630-840-8604','formerly Fermilab','http://','No longer working for D0','','9/16/2004','jonckheere'),('Giuseppe LATINO','latino@pisa.infn.it','39-50-880-266','','http://','','','7/27/1999','jonckhee'),('DAB - Room 502 Offices - Muon Gp','','2854','','','','','',''),('Thom SULANKE','tsulanke@indiana.edu','(812)855-4763','','http://','Indiana University','','5/5/1998','nunez'),('Elaine M. MOORE','elaine@fnal.gov','(630)840-3581','','http://','No longer working for D0','','2/9/2005','sonya'),('Pushpalatha C. BHAT','bhat@fnal.gov','(630)840-8302/p(630)266-2382','(630)406-9077','http://www-d0.fnal.gov/~pushpa/','Fermi National Accelerator Laboratory','ALGORITHMS MUON NEW ONLINE TOP','3/6/2002','pushpa'),('Jacques TEIGER','','011-33-1-6908-2636','','','','','',''),('Wanda Lucia Prado da SILVA','prado@fnal.gov','(630)840-2534','(630)548-3340','http://','Universidade do Estado do Rio de Janeiro, Brazil','','9/4/2002','prado'),('Chiaki YANAGISAWA','chiaki@fnald0.fnal.gov','(516)632-8105 (630)840-5298','','','','','',''),('John POOLE','poole@sbhep.physics.sunysb.edu','(630)840-????','','','','','',''),('Miguel MOSTAFA','hwah@df.uba.ar','(541)782-1007 (630)840-8317','','http://','No longer working for D0','WZ','5/11/2005','aia'),('Howard GORDON','gordon1@bnl.gov','(631)344-3740','','http://','No longer working for D0','','11/16/2006','serban'),('Alex SMITH','UAZHEP::SMITH','(630)840-8340/4988','','','','','',''),('Joel SNOW','snow@fnal.gov','(630)840-4992 (405)466-3328','','http://physics.lunet.edu/~snow/SnowInfo.html','Langston University','ONLINE','7/13/1999','snow'),('Lee SAWYER','sawyer@phys.latech.edu sawyer@fnal.gov','(318)257-4053 (630)840-8581','','http://www.phys.latech.edu/sawyer/','Louisiana Tech University','ALGORITHMS CALORIMETER NEW','8/25/1999','sawyer'),('Robin DENHAM/TAYLOR','robin@fnal.gov','(630)840-3377/p0738','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Misha IGNATENKO','ignatenko@fnald0.fnal.gov','(630)840-8570 (096)216-3795','','','','','',''),('Howard CASEBOLT','casebolt@fnal.gov','(630)840-4437/4438/pg612-8109','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Mariusz ZACZEK','zaczek@students.uiuc.edu','(630)840-8453/p0342','','','','','',''),('Yuriy YATSUNENKO','yuyatsu@fnal.gov','630 840 3042','','','Joint Institute for Nuclear Research, Russia','MUON','5/23/2005','yuyatsu'),('Bob KUBINSKI','kubinski@fnal.gov','(630)840-2817','630-369-9654','http://','Fermi National Accelerator Laboratory','','8/27/1998','thatcher'),('Iouri GORNOUCHKINE','gornushkin@fnald0.fnal.gov','(630)840-2989/3851 (096)216-3795','','','','','',''),('Alain PLUQUET','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','ALGORITHMS MC','5/11/2005','besancon'),('Valeri EVDOKIMOV','evdokimov@fnal.gov','(630)840-2785','(630)840-4232','http://','Institute for High Energy Physics, Russia','B_PHYSICS MUON WZ','11/14/2005','evdoki'),('Suzanne WILLIS','suzanne@fnal.gov, swillis@niu.edu','(815)753-0667 (630)840-8131','formerly NIU','http://www.physics.niu.edu/~willis','No longer working for D0','','7/12/2007','jonckheere'),('Peter LUCAS','FNAL::ALMOND::LUCAS','(630)840-4952','','','','','',''),('Johnny GERALDS','geralds@fnal.gov','(630)840-8222','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Manjeet MUDAN','NYUHEP::MUDAN','(212)998-7754','','','','','',''),('Carl LINDENMEYER','lindenmeyer@fnal.gov','(630)840-4024','','','','','',''),('Andrew HAAS','haas@yahoo.com','9145912828 6308406876','2062269340','http://www-clued0.fnal.gov/~haas/','Columbia University','ALGORITHMS DAQ_ELECTRONICS ONLINE SOFTWARE_INFRA TRIGGER','10/26/2004','haas'),('Jim POPP','popp@fnal.gov','(630)840-2321','','','','','',''),('Wayne SCHMITT','wschmitt@fnal.gov','(630)840-4407/2995/p0570/p(847)536-2084','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Don COPPAGE','dlc@fnal.gov','Formerly Kansas','','http://','No longer working for D0','ALGORITHMS','10/12/2006','jonckheere'),('Eric FLATTUM','flattum@fnal.gov','(630)840-2139','formerly Fermilab','http://www-d0.fnal.gov/~flattum/','No longer working for D0','NEW WZ','4/30/1998','WWW'),('Arthur MACIEL','maciel@fnal.gov','FNAL(630)8408305 NIU(815)7533546','(847)8314562','http://www-d0.fnal.gov/~maciel/index.html','CBPF/LAFEX, Brazil','B_PHYSICS MUON TRIGGER','1/11/2008','hedin'),('LAB 5 PDT FACTORY','','(630)840-2313','','','','','',''),('Dorota I. GENSER','dorota@fnal.gov','','','','unknown','','3/7/2006','genser'),('Fred BROWNING','browning@fnal.gov','(630)840-5220 (312)996-3403','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Frank NEZRICK','248tania@fnal.gov','(630)840-4604/4032','','','','','',''),('Manuel ZANABRIA','zanabria@fnal.gov','St Gregory High School','','http://','Fermi National Accelerator Laboratory','','2/13/2006','jonckheere'),('David BERLEY','JNET%\"DBERLEY@NSF\"','(202)357-9575','','','','','',''),('Aaron STOLZ','astolz@fnal.gov','','','','','','',''),('Jan HOFTUN','hoftun@fnald0.fnal.gov hoftun@brhep1.physics.brown.edu','(630)840-8324 (401)863-2645','','http://','NONE','','2/15/2000','cutts'),('Bornali BHATTACHARJEE','bornali@fnald0.fnal.gov','(630)840-8131 (815)753-6268','','http://niuhep.physics.niu.edu/~bornali','NONE','TRIGGER','2/13/2001','hedin'),('Gerald M. GUGLIELMO','gug@fnal.gov','(630)840-6455','(630)513-8187','http://home.fnal.gov/~gug/','Fermi National Accelerator Laboratory','','7/30/2003','gug'),('Myungyun PANG','pang@fnal.gov','(630)840-2424','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Andrew LANKFORD','lankford@positron.ps.uci.edu','(949)824-2632','','http://','NONE','','4/29/2002','jonckheere'),('Silvain TISSERANT','tisseran@fnal.gov','','','','','','',''),('Stefano LAMI','lami@pisa.infn.it','(630)840-5262 39-50-880266','','','','','',''),('Didier LACOUR','lacour@lpnhp3.in2p3.fr','(33)1.44.27.22.33 (630)840-8740','','http://','NONE','','10/30/2000','bassler'),('Andrew BRANDT','brandta@uta.edu','(817) 272-2706 (630) 840-2778','','http://heplinux1.uta.edu/~brandta/homepage.html','University of Texas, Arlington','QCD TRIGGER','10/20/2000','brandta'),('Fran POULIN','pfran@max.physics.neu.edu','(630)840-2773 (617)373-2958','','http://','NONE','','2/13/2001','darien'),('Tom FERBEL','ferbel@pas.rochester.edu','(585)275-4396 (630)840-5267/3111','','http://spider.pas.rochester.edu/mainFrame/people/pages/Ferbel_Thomas.html','University of Rochester','TOP','1/9/2007','demina'),('Roger MOORE','moore@phys.ualberta.ca','(780)492-4170','','http://www-clued0.fnal.gov/~rwmoore','University of Alberta, Canada','MC MUON NEW ONLINE SOFTWARE_INFRA','7/8/2004','jonckheere'),('Victor MARTINEZ','vicmart@fnal.gov','(630)840-8488','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Victoria WHITE','white@fnal.gov','Formerly FNAL','','http://www-d0.fnal.gov/~white','No longer working for D0','ALGORITHMS DATA_MANAGE SILICON SOFTWARE_INFRA','10/12/2006','jonckheere'),('Saul YOUSSEF','youssef@bu.edu','','','http://physics.bu.edu/~youssef/','NONE','','4/29/2002','hagopian'),('Timothy J MARTIN','FNALV::TMARTIN','(630)840-4652','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Yu ZHANG','yzhang@fnald0.fnal.gov','(630)840-8339','','','','','',''),('Cary Y. YOSHIKAWA','FNALDO::YOSHIKAWA','(630)840-2571','','','','','',''),('Ron MADARAS','rjmadaras@lbl.gov','(510)486-4410 at LBL; (630)840-8715 at FNAL','(510)276-8079','http://www-d0.fnal.gov/~madaras/','Lawrence Berkeley National Laboratory','ALGORITHMS CALORIMETER WZ','5/19/2000','madaras'),('Steve KAHN','kahn@bnl.gov','(631)344-2282','formerly BNL','http://','No longer working for D0','','4/11/2007','jonckheere'),('Bo PI','MSUHEP::PI','','','','','','',''),('Chang Lyong KIM','clkim@fnald0.fnal.gov','49-40-8998-2906','','','','','',''),('Phi VU','vuphi@ucrph0.ucr.edu','(909)787-2469 (630)840-2192','','','','','',''),('Neal SCHMIDT','nschmidt@fnal.gov','(630)840-8242','','','','','',''),('DAB - Test Tent','','2820','','','','','',''),('Sandor LOKOS','lokos@fnal.gov','(630)840-8321','','','','','',''),('Yuri FISYAK','fisyak@bnl.gov','(631) 344 3913','(631) 924 3086','http://www.rhic.bnl.gov/~fisyak/','NONE','CALORIMETER MUON SOFTWARE_INFRA','2/13/2001','serban'),('Mrinmoy BHATTACHARJEE','mrinmoy@fnal.gov','(630)840-2694','','http://www-d0.fnal.gov/~mrinmoy','State University of New York, Stony Brook','CALORIMETER ONLINE PRESHOWER QCD TRIGGER','8/5/1999','mrinmoy'),('Brett BOLEN','','','','','NONE','','2/16/2001','hagopian'),('Michael JONES','mdjd0@fnald0.fnal.gov mdj@uhheph.phys.hawaii.edu','(808)956-2932','','http://','University of Hawaii','TOP','5/1/1998','mdjd0'),('Dick HUBBARD','DPHVX2::HUBBARD','33-1-6908-7103','','','','','',''),('Eric JAMES','james@fnald0.fnal.gov','(520)621-4273','','','','','',''),('Stu LOKEN','CSA::LOKEN','(510)486-7474','','','','','',''),('Paul NGAN','URHEP::NGAN','','','','','','',''),('Ed CLARK','FSUHEP::CLARK_E','(850)644-0020 (630)840-8384','','','','','',''),('Jon KOTCHER','kotcher@fnal.gov','X8749(DAB);579-6863(h);399-2368(c);BNL:(631)344-3831,4887;Columbia:(212)854-7928','formerly BNL','http://','No longer working for D0','','4/11/2007','jonckheere'),('Guy SEEBOHM','seebohm@fnald0.fnal.gov','(630)840-3835','','','','','',''),('Zarah Jade CASILUM','jade@fnal.gov','(631)632-8092/(630)840-8804','','http://www-d0.fnal.gov/~jade','State University of New York, Stony Brook','CALORIMETER QCD WZ','9/28/2000','dean'),('James JAQUES','jaques@fnald0.fnal.gov JAQUES@undhep.hep.nd.edu','(630)840-5223 (219)631-8232','(708)524-8498','http://','University of Notre Dame','','5/7/1998','nunez'),('Greg BRILL','brill@uic.edu','(312)996-5909 (630)840-5220','','','','','',''),('Raymond HALL','raymond@fnal.gov','(630)840-2278 (559)278-8345','','http://www-d0.fnal.gov/~raymond','California State University, Fresno','SILICON TOP','10/10/2005','jonckheere'),('Arnaud LUCOTTE','lucotte@fnal.gov','(630)840-3105','','http://www-d0.fnal.gov/~lucotte/welcome_work.html','State University of New York, Stony Brook','','9/14/1999','lucotte'),('Michael G. STRAUSS','strauss@nhn.ou.edu mgstraus@fnal.gov','(405)325-3961(x36343) (630)840-3272 (630)840-3724','','http://www.nhn.ou.edu/%7Estrauss','University of Oklahoma','ALGORITHMS B_PHYSICS QCD TOP TRIGGER','11/4/2004','mgstraus'),('Guido FINOCCHIARO','finocchiaro@fnald0.fnal.gov','(630)840-2474','','','','','',''),('Andrew MILDER','milder@fnald0.fnal.gov milder@rs6k1.hep.utexas.edu','(512)471-3526','','','','','',''),('Yuri Valentinovitch SEDYKH','iouri.sedykh@cern.ch','(007)096-21-63795','','','','','',''),('Rob DAVIES','davies@fnal.gov','(317)494-9803','','','','','',''),('Harry WEERTS','weerts@fnal.gov weerts@pa.msu.edu','Formerly Michigan State','(517)339-1787','http://msuhjmw.pa.msu.edu','No longer working for D0','TRIGGER','10/12/2006','jonckheere'),('Andrzej ZIEMINSKI','zieminsk@indiana.edu','(812)855-4089 (630)840-2656','Formerly Indiana - deceased','http://hep.physics.indiana.edu/~zieminsk/andrzej.html','No longer working for D0','ALGORITHMS B_PHYSICS MUON','12/10/2007','jonckheere'),('Scott SNYDER','snyder@fnal.gov','(630)840-8735','','http://','Brookhaven National Laboratory','','11/7/2002','jonckheere'),('Jan GUIDA','jguida@fnald0.fnal.gov','(630)840-8317/2818','(630)393-9336','','','','',''),('Dan GREEN','dgreen@fnal.gov','(630)840-3104/4718','','','','','',''),('Tom MARSHALL','marshall@fnal.gov','(630)840-2572/2818','(630)668-9151','http://','Indiana University','B_PHYSICS MUON','5/1/1998','marshall'),('Linda CONEY','lconey@fnal.gov','(630)840-5223','','http://','University of Notre Dame','','4/14/1998','nunez'),('Su Yong CHOI','suyong@fnal.gov','(630)840-2853','630-606-3171','http://www-d0.fnal.gov/~suyong/','University of California, Riverside','ALGORITHMS','11/7/2003','suyong'),('Feng WEN','wen@fshew7.physics.fsu.edu WEN_F@fnald0.fnal.gov','(850)644-0431 (630)840-8384','','','','','',''),('Ken Del SIGNORE','signore@fnald0.fnal.gov','(630)840-8321 (734)936-2868','','http://','NONE','','6/13/2003','sonya'),('Allen MINCER','NYUHEP::MINCER','(212)998-7707/7758/7745','','','','','',''),('Bill COOPER','cooper@fnal.gov','(630)840-4093 LDP (630)722-0538','(630)879-8547','http://','Fermi National Accelerator Laboratory','SILICON','11/4/2003','cooper'),('Bogdan KULIK','bkulik@fnal.gov bkulik@sbhep.physics.sunysb.edu','(630)840-5636 (631)632-8095','','http://','NONE','','9/27/2000','dean'),('Drew BADEN','drew@fermi.physics.umd.edu drew@fnal.gov','(301)405-5947','','http://','University of Maryland','','8/26/2002','hirosky'),('Ernie RAMIREZ','eramirez@fnal.gov','(630)840-8597','','','','','',''),('Tacy JOFFE-MINOR','joffem@fnal.gov joffem@hep.anl.gov','(630)252-3910','','http://www-d0.fnal.gov/~joffem/','NONE','QCD WZ','2/12/2001','buchholz'),('Victor BEZZUBOV','bezzubov@fnal.gov','(630)840-8570','','http://','Institute for High Energy Physics, Russia','MUON','3/22/2000','bezzubov'),('Joey THOMPSON','joeythompson@lucent.com','','','http://','NONE','','8/23/1999','cochran'),('David GEIS','dgeis@fnal.gov','(708)585-0411 (630)840-4759/3377','','','','','',''),('Mark SOSEBEE','sosebee@uta.edu','840-2691 817-272-2456','','http://','University of Texas, Arlington','','8/3/2000','jrhoades'),('Satish DESAI','satish@fnal.gov','(630)840-5751 (630)712-6133','(630)858-8247','http://www-clued0.fnal.gov/~satish','Fermi National Accelerator Laboratory','PRESHOWER SILICON','12/8/2006','satish'),('JooSang KANG','jskang@fnal.gov jskang@hep.korea.ac.kr','(630)840-4595 82-2-920-1461','','http://','Korea University, Korea','','5/6/1998','nunez'),('Lars RASMUSSEN','rasmussen@fnald0.fnal.gov','(630)840-6098','','http://','','','10/14/1998','emay'),('Jean-Francois GLICENSTEIN','glicens@fnald0.fnal.gov DPHVX2::GLICENS','(630)840-4368 011-33-1-6908-7860','','','','','',''),('Andrei SADOVSKI','sadovsky@main1.jinr.ru sadovski@fnal.gov','(007)096-21-63983 (630)840-4718/2989','','','','','',''),('Sergey DENISOV','denisov@ihep.ru','(630)840-8570','','http://','Institute for High Energy Physics, Russia','MUON','5/11/2005','bezzubov'),('Gerry DUGAN','SSCVX1::DUGAN','','','','','','',''),('Dong XIAO','xiao@fnald0.fnal.gov','(850)644-5865 (630)840-8384','','','NONE','','4/14/1998','WWW'),('Ko NISHIKAWA','41720::NISHIKAWA','','','','','','',''),('Lan HUIBIN','lanhb@fnald0.fnal.gov','(630)840-8339 86108213344-3606','','','','','',''),('Leigh MARKOSKY','leigh@fnald0.fnal.gov','(630)840-8513','','','','','',''),('Dean SCHAMBERGER','dean@cusb.physics.sunysb.edu dean@sbhep.physics.sunysb.edu','(631)632-8094 (630)840-2495','(631)-689-3141','http://sbhep1.physics.sunysb.edu/~schamberger','State University of New York, Stony Brook','CALORIMETER DAQ_ELECTRONICS ONLINE','11/1/1999','dean'),('Nick HADLEY','hadley@umd.edu','(630)840-2042 (301)405-6063','','http://www2.physics.umd.edu/~hadley','University of Maryland','ALGORITHMS B_PHYSICS CALORIMETER MC NEW QCD SOFTWARE_INFRA TOP WZ','12/16/2003','hadley'),('Yi-Cheng LIU','liu@fnald0.fnal.gov','(630)840-8325','(708)545-9403','','','','',''),('Larry SPIRES','jackie@fnal.gov','(630)840-2786/2989','','','','','',''),('Irwin GAINES','gaines@fnal.gov','(630)840-4022','','','','','',''),('Dmitriy KARMANOV','dimak@vxdesy.desy.de','(630)840-8630 011-7(095)939-5948','','','','','',''),('Andrew WHITE','awhite@uta.edu','(817)272-2812/2811* (630) 840-2691','','http://www-hep.uta.edu/~white','University of Texas, Arlington','CALORIMETER NEW','5/26/2005','awhite'),('William RITZERT','ritzert@fnal.gov','(630)840-8774','','','','','',''),('Cecilia Elena GERBER','gerber@fnal.gov','(630)840-8295, (312)996-2239','(630)393-0149','http://www-d0.fnal.gov/~gerber','University of Illinois, Chicago','SILICON TOP WZ','2/21/2008','gerber'),('Rich PARTRIDGE','partridge@hep.brown.edu','x8702 (Fermilab); (650) 926-3388 (SLAC); (650) 380-0885 (cell)','(650) 949-2875','http://','Brown University','D033 TOP TRIGGER','8/31/2006','partridge'),('Ambreesh GUPTA','ambr@fnald0.fnal.gov','(630)840-3590 91-22-215-2971x2610','','http://','NONE','','7/16/2002','vsn'),('J. Harvey GOLDMAN','goldman@hep.fsu.edu','(850)644-4539/(630)840-8384','','','','','',''),('Greg SNOW','gsnow@unlhep.unl.edu gregsnow@fnal.gov','Nebraska:(402)472-6279 Fermi:(630)840-3105','(402)484-8219','http://physics.unl.edu/~gsnow/snow.html','University of Nebraska','QCD TRIGGER','8/5/2004','gregsnow'),('David ADAMS','dladams@fnal.gov dladams@uta.edu','(630)840-2406 (817)272-2814','','http://','University of Texas, Arlington','','11/9/1999','emay'),('Stefan GRUENENDAHL','stefan@fnal.gov','(630)840-8760','','http://d0server1.fnal.gov/users/stefan/www/Welcome.html','Fermi National Accelerator Laboratory','FIBER_TRACKER QCD TRIGGER WZ','1/25/2000','sgrue'),('Wagner de Paula CARVALHO','wagner@alpha1.lafex.cbpf.br carvalho@fnal.gov','011-55-21-25877944','','http://alpha1.lafex.cbpf.br/~wagner','Universidade do Estado do Rio de Janeiro, Brazil','QCD','7/17/2002','carvalho'),('Nikos VARELAS','nikos@fnal.gov','(630)840-5404 (312)996-3415','','http://www.uic.edu/~varelas','University of Illinois, Chicago','QCD TRIGGER','1/7/2006','nikos'),('Tom ROCKWELL','rockwell@pa.msu.edu','(517)884-5569','','http://senna.pa.msu.edu','Michigan State University','','5/5/2008','linneman'),('Steve GROSS','gross@pa.msu.edu','(517)355-8525','','http://www.pa.msu.edu/people/gross','NONE','TRIGGER','2/22/2001','linneman'),('Herve LEBBOLO','herve@lpnhep.in2p3.fr','+33(1)44.27.22.32 (630)840-8740','','http://','LPNHE, Universites Paris VI and VII, France','CALORIMETER','9/17/2002','bassler'),('Ren LI','renli@fnald0.fnal.gov','(815)753-1230 (630)840-2817','','','','','',''),('Mike DIESBURG','diesburg@fnal.gov','(630)840-2679','','http://','Fermi National Accelerator Laboratory','','4/15/1998','WWW'),('Mike WENDLING','wendling@fnald0.fnal.gov','(415)926-2294','','','','','',''),('Chris MURPHY','murphy@fnal.gov','(630)840-2572','','','','','',''),('Mike TARTAGLIA','tartaglia@fnal.gov','(630)840-3890','','','','','',''),('Victor ABRAMOV','abramov@fnald0.fnal.gov','(630)840-8570 095-925-2634','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Wyatt MERRITT','wyatt@fnal.gov','(630)840-8320','','http://','Fermi National Accelerator Laboratory','ALGORITHMS NEW SOFTWARE_INFRA','6/4/2001','wyatt'),('Lupe HOWELL','','','','','NONE','','2/16/2001','hagopian'),('Prama SANAN','prama@datt01.fnal.gov','91-172-541741 (630)840-3899','','http://','Panjab University, India','','5/6/1998','nunez'),('Benjamin ABRAHAM','babraham@fnal.gov','(630)840-8773','formerly Fermilab','http://','No longer working for D0','','7/12/2000','jrhoades'),('DAB - Lobby 106','','2375/2376/2622/2623','','','','','',''),('David K. FEIN','fein@physics.arizona.edu','(630)840-8340','773-342-8717','http://physics.arizona.edu/~fein','University of Arizona','B_PHYSICS MUON TRIGGER','2/10/2000','fein'),('Marty MARCIN','UMD0::MARCIN','','','','','','',''),('Laurent DUFLOT','duflot@lal.in2p3.fr','(33)1-64-46-8371 (630)840-6852','','http://www-d0.fnal.gov/~duflot/','Laboratoire de l Accelerateur Lineaire, France','','7/4/2001','duflot'),('Jia LI','lijia@fnal.gov lijia@utahep.uta.edu','(630)840-2816 (817)272-2816','','http://','University of Texas, Arlington','','5/7/1998','nunez'),('DAB - Tracking Gas (511)','','2848/2817/2818/2819','','','','','',''),('Peter KOEHLER','JNET%\"11603_220677@PITTVMS\"','','','','','','',''),('Elizabeth GALLAS','eggs@fnal.gov gallas@fnal.gov','(630)840-8599','formerly FNAL','http://www-d0.fnal.gov/~gallas/elizabeth.html','No longer working for D0','ALGORITHMS CALORIMETER MUON NEW ONLINE QCD','3/19/2007','jonckheere'),('Evgeny POPKOV','','','','http://','No longer working for D0','','5/10/2005','jmbutler'),('Dan TOMPKINS','','(520)621-3069','','http://','University of Arizona','','4/22/1998','nunez'),('Dina STOIANOVA','Dina.Stoyanova@ihep.ru','(630)840-8570','','http://','No longer working for D0','','11/16/2006','schukin'),('Richard ANDREWS','andrews@fnal.gov','(630)840-4456','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Jim GREEN','jgreen@fuse.net','840-2800 513-321-4563','','http://','NONE','','7/19/2002','hedin'),('Kin YIP','kinyip@fnal.gov','(631)344-4116 (BNL office)','(631)331-4863','http://','Brookhaven National Laboratory','B_PHYSICS TRIGGER WZ','12/17/2002','kinyip'),('John ZHOU','johnzhou@fnal.gov','(630)840-2119 (now at CDF)','','http://high-energy.physics.iastate.edu','No longer working for D0','','5/10/2005','hauptman'),('Russ RUCINSKI','rucinski@fnal.gov','(630)840-2888','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Mike TUTS','tuts@fnal.gov tuts@nevis1.nevis.columbia.edu','(630)840-8304 (212)854-3263 (914)591-2810','(212) 316-1902','http://www.columbia.edu/~pmt2/','Columbia University','CALORIMETER WZ','4/4/1998','tuts'),('Ed ARKO','earko@fnal.gov','(630)840-3501/2818/p0929','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Jean-Pierre CUSSONNEAU','DPHVX2::JPCUSSO','33-1-6908-8533 (630)840-4368','','','','','',''),('Paul VESONDER','vesonder@fnald0.fnal.gov','(815)753-1772','','','','','',''),('D. ROSS','MSUHEP::ROSS','','','','','','',''),('Alexander DYSHKANT','dyshkant@fnald0.fnal.gov','(630)840-8570 (095)925-2634','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Susumu IGARASHI','igarashi@fnal.gov','(630)840-8297','','','','','',''),('Norman AMOS','amos@fnal.gov','(630)840-8305','(708)377-2185','http://','NONE','','8/24/1998','qianj'),('Mike MARX','SBHEP::MARX','(516)632-8102','','','','','',''),('Erich W. VARNES','varnes@fnal.gov','(520) 626-0217, (630) 840-8340','','','University of Arizona','ALGORITHMS TOP','8/22/2007','varnes'),('Anne KERNAN','kernan@ucrph0.ucr.edu','(909)787-5023 (630)840-2882','','','','','',''),('Becky KNOL','becky@fnal.gov','(630)840-2039','','','','','',''),('Robbie SMITS','CSA::SMITS','(510)486-5451','','','','','',''),('Ricardo HERNANDEZ','ricardo@d0sgi9.fnal.gov','(630)840-8597 [52-5]747700','','','','','',''),('Bob HIVELY','hively@fnal.gov','(630)840-4467','','','','','',''),('Ann-Sofie WIREN','wiren@fnald0.fnal.gov','','','','','','',''),('John ELLISON','john.ellison@ucr.edu ellisonj@fnal.gov','(951)827-4301','','http://phyun0.ucr.edu/~ellison','University of California, Riverside','SILICON TOP WZ','7/20/2004','hagopian'),('Joel STEINBERG','','(520)621-9740','','http://','University of Arizona','','4/22/1998','nunez'),('Robert SNIHUR','snihur@fnal.gov','(847)467-3660 (630)840-8454/8325','(773)395-3944','http://www-d0.fnal.gov/~snihur/Welcome.html','NONE','QCD','2/12/2001','buchholz'),('Jill PERKINS','perkins@fnald0.fnal.gov','(630)840-5631 (817)272-2815','','http://','University of Texas, Arlington','','5/7/1998','nunez'),('Dan MARKLEY','dmarkley@fnal.gov','(630)840-2849/p992','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Mark STROVINK','strovink@lbl.gov','(510)486-7087 (630)840-8715','(510)486-8079','http://www-d0.fnal.gov/~strovink/','Lawrence Berkeley National Laboratory','ALGORITHMS B_PHYSICS NEW ONLINE QCD SILICON SOFTWARE_INFRA TOP WZ','5/19/2000','strovink'),('Kathy STREETS','kathy@bnl.gov kathys@fnald0.fnal.gov','(516)344-3285','(516)474-3532','http://www.rhic.bnl.gov/~kathy','NONE','','2/13/2001','serban'),('Sun Kee KIM','skkim@fnald0.fnal.gov skkim@phyc.snu.ac.kr','(630)840-8571 82-2-880-6594','','http://','Seoul National University, Korea','','5/6/1998','nunez'),('Steven WASSERBAECH','wasser@u.washington.edu','(206)685-1752 (Univ of Washington)','','http://www-d0.fnal.gov/~wasser/','No longer working for D0','ALGORITHMS MUON','5/11/2005','jonckheere'),('Vasken HAGOPIAN','vasken@hep.fsu.edu vasken@fnald0.fnal.gov','(850)644-3734/(630)840-8384','Formerly Florida State','http://','No longer working for D0','','1/9/2008','jonckheere'),('Vijay KAPOOR','kapoor@fnal.gov','','','','','','',''),('Irina MARINOV','marinov@fnal.gov','(630)840-3066 (802)388-3711','','','','','',''),('Mark ADAMS','adams@fnal.gov adams@uic.edu','(312)996-3403 (630)840-2179','(630)232-7459','http://www.uic.edu/~adams/index.html','University of Illinois, Chicago','CALORIMETER MUON WZ','9/9/2002','adams'),('Vladimir MANANKOV','manankov@fnal.gov','011-7(095)939-5889','','http://www.sinp.msu.ru','No longer working for D0','','5/25/2005','dudko'),('DAB - Counting Room 211 (MCH)','','inside:3897/by-door:2834','','','','','',''),('Piotr STOPA','stopa@indyk1.ifj.edu.pl','(4812)33-3366','','','','','',''),('Sy MARGULIES','','','','http://www-d0.fnal.gov/ac/public_html/memorial/margulies/margulies.html','NONE','FIBER_TRACKER','3/20/2003','adams'),('Chuck BROWN','chuckb@fnal.gov','(630)840-3202','','','','','',''),('Djoko WIRJAWAN','djoko@datam1.fnal.gov jvw6156@tam2000.tamu.edu','(630)840-8028','','http://','Texas A&M University','','7/27/1999','eschmitt'),('Maria NUNEZ','nunez@fnal.gov','(630)840-8277(DAB5)','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Boaz KLIMA','klima@fnal.gov','(630) 840-2323','(708) 358-0860','http://home.fnal.gov/~klima/boaz_home.html','Fermi National Accelerator Laboratory','TOP','5/9/2006','klima'),('Mike MATULIK','matulik@fnal.gov','(630)840-4091','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Sarah Durston JOHNSON','johnsosa@ulv.edu','(909)593-3511x4432','','http://faculty.ulv.edu/~johnsosa/','','','7/20/2001','durston'),('Leonid SERGEEVICH','vert@axnua.jinr.dubna.su','(007)096-21-63516','','','','','',''),('Bill FREEMAN','wfree@fnal.gov','(630)840-3020/p0325','','http://','Fermi National Accelerator Laboratory','','1/21/2006','diehl'),('Brent MAY','may@fnald0.fnal.gov NUHEP::MAY','(630)840-5266 (847)491-8612','','http://','NONE','','2/12/2001','buchholz'),('DAB - Bob Morrison/Pete Simon','','2851','','','','','',''),('Freedy NANG','nang@fnal.gov','(630)840-3835/8349','','http://','University of Arizona','','4/22/1998','nunez'),('Maris ABOLINS','abolins@pa.msu.edu','(517)884-5556 (630)840-3983','','http://www.pa.msu.edu/~abolins','Michigan State University','TRIGGER','5/5/2008','linneman'),('Sunghwan AHN','shahn@fnal.gov shahn@kodel.korea.ac.kr','(630) 840 2453 +82-2-3290-4277','','http://','Korea University, Korea','','10/7/2004','shahn'),('Ki Suk HAHN','','','','','NONE','','12/20/2001','ferbel'),('Johnny GREEN','jbgreen@fnal.gov','(630)840-3392/2817/p0985','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Do-Wan KIM','dwkim@fnald0.fnal.gov','(630)840-8571/8634','','','','','',''),('Mark KOZLOVSKY','mkozlovsky@fnal.gov','(630)840-3786','','http://','Fermi National Accelerator Laboratory','','5/12/1998','nunez'),('Vladimir PODSTAVKOV','podstvkv@fnal.gov','(630)840-2855','','http://','Fermi National Accelerator Laboratory','MUON','11/25/1998','podstvkv'),('Srinivas Gerendla','srinivas_ger@hotmail.com','630-840-8581','318-251-2645','http://','Louisiana Tech University','','8/27/1999','emay'),('Ken STOX','stox@fnal.gov','(630)840-5215','','','','','',''),('Gene FISK','hefisk@fnal.gov','(630)840-4095','','http://','Fermi National Accelerator Laboratory','','4/15/1998','WWW'),('Serban PROTOPOPESCU','serban@bnl.gov serban@fnal.gov','(631)344-3721 (630)840-6833','','http://www-d0.fnal.gov/~serban','Brookhaven National Laboratory','ALGORITHMS PRESHOWER','5/28/2002','hagopian'),('Barbara CAMANZI','VAXFE::BARBARA CAMANZI@fnal.gov','011-39-532-781879 (630)840-4482','','','','','',''),('Mirek FATYGA','fatyga@fnald0.fnal.gov','(630)840-8701','','','','','',''),('Edgar JENKINS','UAZHEP::JENKINS','(520)621-6820(*)','','','','','',''),('Natalia SOTNIKOVA','','','','','No longer working for D0','','5/25/2005','dudko'),('Rich CANTAL','rlcantal@fnal.gov','(630)840-8044','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Dong ZHAO','dongzhao@lucent.com','','','http://','NONE','SOFTWARE_INFRA','8/24/1998','jonckhee'),('Dahua ZHANG','zhangdh@fnald0.fnal.gov','(630)840-8339','','','','','',''),('Pavel ERMOLOV','ermolov@npi.msu.su','011-7(095)939-3064','','http://','Moscow State University, Russia','','5/6/1998','nunez'),('Anna GOUSSIOU','goussiou@fnal.gov','Fermilab: (630) 840-4062','','','University of Washington','','3/14/2008','goussiou'),('Joan NAPOLITANO','NAPOLITANO@sbhep.physics.sunysb.edu','(631)632-8095','','http://','State University of New York, Stony Brook','','11/1/1999','dean'),('Alvaro SERNA','serna@fnal.gov','(630)840-5199 [57]63-349892','','','Universidad de Los Andes, Colombia','','6/9/2001','gomez'),('Oleg ABDRASHITOV','olegabu@fnal.gov olegabu@phys.columbia.edu','(212)865-3956 (630)840-4210','','','','','',''),('John REILLY','jr2@fnal.gov','(708)510-1665','','','','','',''),('Yury GORNUSHKIN','gornushkin@fnald0.fnal.gov','(630)840-2989/3851 (096)216-3795','','','','','',''),('John RUTHERFOORD','rutherfo@arizona.edu UAZHEP::RUTHERFO','(520)621-2657','','http://','University of Arizona','','4/22/1998','WWW'),('Wing-Hang CHOI','choi_w@fnal.gov','(630)840-8757','','http://','No longer working for D0','','11/15/2006','tuts'),('Andrei TALALAEVSKII','andreit@fnal.gov','(631)632-8296','','http://','State University of New York, Stony Brook','PRESHOWER','1/8/2001','andreit'),('Natalie ROE','CSA::NATALIE','(510)486-6380','','','','','',''),('Brajesh CHOUDHARY','brajesh@fnal.gov','011-91-11-27667036 (Delhi), 3062/3025 (FNAL)','','http://','Delhi University, Delhi, India','CALORIMETER TOP','9/11/2005','brajesh'),('Randy DARDEN','rdarden@engin.umich.edu','(313)936-2868 (630)840-3768','','http://','NONE','','8/24/1998','qianj'),('Naba MONDAL','naba@fnal.gov nkm@tifr.res.in','(630)840-3590 (Fermi) [91-22]2280-4545 (India)','','http://www.hecr.tifr.res.in/~nkm','Tata Institute of Fundamental Research, India','MUON NEW','3/8/2004','naba'),('Eberhard VON GOELER','vongoeler@hex.neu.edu','(617)373-2937 (630)840-8594','','http://','NONE','','2/13/2001','darien'),('Barbara EDMONSON','bke@fnal.gov','(630)840-3695','','','','','',''),('Steve REUCROFT','reucroft@neu.edu','(617)373-2940','','http://','No longer working for D0','','1/9/2008','barberis'),('Yaroslav KULIK','skulik@fnal.gov','(630)840-2280','','http://www-d0.fnal.gov/~skulik','State University of New York, Stony Brook','SILICON WZ','8/4/2000','skulik'),('Joan GUIDA','guida@fnald0.fnal.gov','(630)840-8316/2818','(630)393-9336','','','','',''),('Ralph KUEHN','rek@tyndall.physics.purdue.edu','(765)494-0824 (630)840-5039','','','','','',''),('Alan RIDDIFORD','riddif@fnal.gov','(630)840-4996','','','','','',''),('Jerry BLAZEY','gblazey@niu.edu','NIU: (815)753-6480 FNAL: (630)840-2342 CEL:(630)-715-9363','(630)557-2821','http://niuhep.physics.niu.edu/~blazey','Northern Illinois University','','1/9/2004','blazey'),('Bruno MANSOULIE','DPHVX2::MANSOULIE','33-1-6908-2636','','','','','',''),('Dave STOKER','stoker@.fnal.gov stoker@sunny.ps.uci.edu','(949)824-2933','','http://','NONE','','4/29/2002','jonckheere'),('Alexei VOLKOV','volkov@fnal.gov','(630)840-2785 095-925-2634','','','','','',''),('David KOLTICK','PURDUE::KOLTICK','(765)494-5557 (630)840-5261','','http://','Purdue University','','5/6/1998','nunez'),('Doug NORMAN','norman@fnal.gov','(630)840-8268','','http://','Texas A&M University','','5/6/1998','nunez'),('Ming Xiong LIU','ming@ox1.phy.bnl.gov','(516)344-4222','','http://','NONE','','2/13/2001','serban'),('Tony SPADAFORA','CSA::SPADAFORA','(510)486-7445 (630)840-3954/8061','','','','','',''),('John SCULLI','NYUHEP::SCULLI','(212)998-7744 (630)840-2779','','','NONE','','5/1/1998','WWW'),('Jerome SCHWINDLING','DPHVX2::SCHWIN','33-1-6908-7103','','','','','',''),('Gilvan ALVES','gilvan@fnal.gov gilvan@cbpf.br','(630)840-2454 011-55-21-2141-7376','','http://www-d0.fnal.gov/~gilvan/','CBPF/LAFEX, Brazil','MC QCD','3/1/2004','gilvan'),('Lourival MOREIRA','lourival@fnald0.fnal.gov','(630)840-2482 (011-55-21)284-3022','','','','','',''),('Tom HAELEN','haelen@urhep.pas.rochester.edu','','','','','','',''),('Orlando YNARES','ynares@fnal.gov','(630)840-8302 (708)307-7972','','','','','',''),('Tom TRIPPE','','','','http://d0lbln.lbl.gov/wwwd0/d0.html','No longer working for D0','ALGORITHMS SILICON TOP','5/9/2005','madaras'),('Ashutosh V. KOTWAL','kotwal@fnal.gov kotwal@phy.duke.edu','(919)660-2563','(919)384-9448','http://','No longer working for D0','CALORIMETER WZ','11/15/2006','tuts'),('Gary TROTTER','trotter@fnal.gov','(630)840-2027','formerly Fermilab','http://','No longer working for D0','','5/12/1998','nunez'),('Homero GUIMARAES','homero@fnal.gov homero@lafexsu1.lafex.cbpf.br','(630)840-8343 011-55-21-542-3837','','http://','NONE','','5/5/1998','nunez'),('Robert TAYLOR','','(516)344-2768','','','','','',''),('Randy RUCHTI','ruchti@undhep.hep.nd.edu','(219)631-7143 (630)840-5223','','http://','University of Notre Dame','','5/7/1998','nunez'),('Frederick LUEHRING','fred@oolitic.physics.indiana.edu','(812)855-1025 (630)840-2572','','','','','',''),('Thorsten HUEHN','huehn@fnal.gov huehn@ucrph0.ucr.edu','(630)840-2192/8596','','','','','',''),('Robert MORPHIS','morphis@physics.niu.edu morphis@fnal.gov','(815)753-0285 (630)840-2817','','','','','',''),('Philip BARINGER','baringer@ku.edu','630-840-8133 785-864-3953','','http://heplx3.phsx.ku.edu/~baringer/psb.html','University of Kansas','ALGORITHMS TOP','1/8/2008','baringer'),('Weixin GU','wxgu@fnald0.fnal.gov','(630)840-8339/8630 011-861-821-3344','','','','','',''),('David RITCHIE','ritchie@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','3/6/2001','jonckheere'),('Ricardo PIEGAIA','aia@df.uba.ar','(630)840-3501','(011)5411-4790-1219','http://','Universidad de Buenos Aires, Argentina','','8/13/2004','aia'),('Rich GENIK','','','','http://www-d0.fnal.gov/~genik/Welcome.html','No longer working for D0','NEW SILICON','5/10/2005','bertram'),('Emanuel MACHADO','','','','','No longer working for D0','','5/10/2005','jmbutler'),('Mukesh DHAMALA','mukesh@kuhep4.phsx.ukans.edu','(913)864-3084','','','','','',''),('Bryan LAUER','','','','http://high-energy.physics.iastate.edu','No longer working for D0','','5/10/2005','hauptman'),('Danilo PUSELJIC','puseljic@fnald0.fnal.gov','(630)840-8061','','','','','',''),('Ronald LIPTON','lipton@fnal.gov','(630)840-4132 page (630) 266-8242','(708) 445-3772','http://','Fermi National Accelerator Laboratory','SILICON','4/14/2000','lipton'),('Edgar C. de OLIVEIRA','','','','http://','NONE','','2/13/2001','gilvan'),('Rod ENGELMANN','engelmann@sbhep.physics.sunysb.edu','(631)632-8598 (630)840-3105','','http://','State University of New York, Stony Brook','','11/1/1999','dean'),('Harry L. MELANSON','melanson@fnal.gov','(630)840-3383','formerly Fermilab','http://d0server1.fnal.gov/users/melanson/www/index.html','No longer working for D0','ALGORITHMS QCD WZ','11/2/1999','melanson'),('Yubing LUO','luoyb@fnald0.fnal.gov','(212)854-3366 (630)840-8757','','','','','',''),('Ken JOHNS','johns@fnal.gov','(630)840-8340 (520)621-6791','','http://hound.physics.arizona.edu/johns.htm','University of Arizona','MUON TOP TRIGGER','8/11/1999','johns'),('Juan Pablo NEGRET','jnegret@uniandes.edu.co negret@fnal.gov','[57-1]332-4500 (630)840-5199','57-1-2837408','http://wwwprof.uniandes.edu.co/~jnegret/default.htm','Universidad de Los Andes, Colombia','B_PHYSICS MUON','8/8/2000','negret'),('Nagarajan KRISHNAN','rajan@fnald0.fnal.gov','(630)840-8236','','','','','',''),('Christopher BOSWELL','boswell@UCRPH0.UCR.EDU','(630)840-2192/8596 (909)787-3570','','','','','',''),('Vishnu ZUTSHI','zutshi@fnal.gov','(630)840-5764 (815)753-3080','','http://','Northern Illinois University','CALORIMETER MC','4/29/2003','zutshi'),('Ming-Jen YANG','yang@fnal.gov','(630)840-3724','','','','','',''),('Emmanuel GOUVEIA','','','','http://','No longer working for D0','','5/12/2005','hadley'),('DAB - Counting Room 309 (West)','','2837/2817/2818/2819','','','','','',''),('Alexandr N. PERYSHKIN','sarsha@fnal.gov','(630)840-2230/8298','','','','','',''),('Dave IMSLAND','FNALV::IMSLAND','(630)840-8649','','','','','',''),('Gerardo HERRARA','gherrara@cinvesmx','[52-5]754-6801','','','','','',''),('B.S.ACHARYA','acharya@fnal.gov acharya@tifr.res.in','[91-22]2280 4545(*) (630)840-8598','[91-22]2280 4872','http://www-d0.fnal.gov/~acharya/','Tata Institute of Fundamental Research, India','B_PHYSICS MUON','11/7/2003','acharya'),('Erik RAMBERG','ramberg@fnal.gov','(630)840-5731','','','','','',''),('Antonio COLLANTES','','','','','','','6/9/2001','gomez'),('Frederic KRAL','CSA::JFKRAL','(510)486-7435','','','','','',''),('Ilan Y. LEVINE','ilan@surf.sno.laurentian.ca','','','http://www-d0.fnal.gov/~levine/','Purdue University','','9/29/1998','jonckhee'),('Soon Yung JUN','syjun@fnald0.fnal.gov','(630)840-5222/8455','','','','','',''),('Andrew GREEN','agreen@fnal.gov','(now at MINOS, Indiana)','','http://high-energy.physics.iastate.edu','No longer working for D0','NEW','5/10/2005','hauptman'),('Bob LANOU','lanou@physics.brown.edu','(401)863-2632','','http://','No longer working for D0','','5/9/2005','partridge'),('John FEATHERLY','featherly@fnal.gov','(630)840-4508/2817/page536-1888','(708)820-3609','','','','',''),('Mark GALLI','mgalli@fnal.gov','(630)840-5204 (815)758-0385','','','','','',''),('Paul RUBINOV','rubinov@fnal.gov','(630)840-4383 5631','(630)697-4983','http://','Fermi National Accelerator Laboratory','FIBER_TRACKER','12/12/2005','rubinov'),('Dale BEUTEL','beutel@fnald0.fnal.gov','(630)840-8131 (815)758-0067','','','','','',''),('Sten HANSEN','hansen@fnal.gov','(630)840-4027','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Roy KERTH','CSA::KERTH','(510)486-6662','','','','','',''),('Tom LACKOWSKI','','(630)840-3640','','','','','',''),('Patrick LEDU','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('James BIERLEIN','bierlein@fnald0.fnal.gov','(630)840-5265','','','','','',''),('Pierre PETROFF','petroff@fnal.gov','1 630 840 6447','1 630 840 3547','http://www-d0.fnal.gov/~petroff','Laboratoire de l Accelerateur Lineaire, France','ALGORITHMS CALORIMETER WZ','8/2/2004','petroff'),('Leigh AUSTIN','FNALD0::AUSTIN','(630)840-8340 (520)621-4275','','','','','',''),('Rick PASSAGLIA','rickp@fnald0.fnal.gov','','','','','','',''),('Ryuji YAMADA','yamada@fnal.gov','(630)840-3660','','http://','Fermi National Accelerator Laboratory','','5/12/1998','nunez'),('Alexander VOROBIEV','vorobiev@m9.ihep.su','(630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('DAB - Lobby 401','','2844/2817/2818/2819','','','','','',''),('Vladimir VANIEV','vaniev@mx.ihep.su vaniev@fnald0.fnal.gov','7-095-925-1489 (630)840-8570','','','','','',''),('Harrison B. PROSPER','harry@hep.fsu.edu harry@fnal.gov','(850)644-6760/8308 (630)840-8301/8308','Formerly Florida State','http://','No longer working for D0','','12/21/2007','jonckheere'),('Linc READ','alr@fnal.gov','(630)840-4274','','','','','',''),('Jack MARTIN','nemat@fnal.gov','(630)840-4802','','http://needmore.physics.indiana.edu/~iuhep/','No longer working for D0','','5/11/2005','zieminsk'),('Petr NEUSTROEV','neustr@fnal.gov neustr@pnpi.spb.ru','(630)840-5072 (630)840-2982','+7(813-71)20167','http://','Petersburg Nuclear Physics Institute, Russia','MUON','5/12/2005','loboden'),('Valeri TOKMENIN','tokmenin@fnal.gov tokmenin@nu.jinr.ru','(630)840-2982 7-096-21-63103','','http://','Joint Institute for Nuclear Research, Russia','MUON','5/8/2001','sabirov'),('Kristina LEHMANN','lehmann@d0tng.fnal.gov lehmann@niuhep.physics.niu.edu','(630)840-2342','','','','','',''),('Mikhail MERKINE','merkinm@fnal.gov','(630)840-8630 011-7(095)939-5948','','http://','Moscow State University, Russia','','5/6/1998','nunez'),('Bob GOODWIN','FNAL::ALMOND::GOODWIN','(630)840-4416','','','','','',''),('Nikolai TERENTYEV','teren@fnal.gov','(630)840-3601 7-812-294-9143','','','','','',''),('Vipin BHATNAGAR','vipin@fnal.gov vipin@pu.ac.in','+91-172-2541241 (PH)/2783336 (FAX)','x3449 (FERMILAB)','http://vipin.puhep.res.in/','Panjab University, India','CALORIMETER DATA_MANAGE MUON TOP','2/5/2007','sonya'),('Iain BERTRAM','bertram@fnal.gov','(630)840-5264 44-1524-593611','','http://www-d0.fnal.gov/~bertram','Lancaster University, United Kingdom','B_PHYSICS NEW SOFTWARE_INFRA TRIGGER','5/10/2005','bertram'),('Peter MAZUR','FNAL::ADCALC::MAZUR','(630)840-3274','','','','','',''),('Don LINCOLN','lucifer@fnal.gov lincoln@fnal.gov','(630)840-5218','','http://www-d0.fnal.gov/~lucifer','Fermi National Accelerator Laboratory','FIBER_TRACKER QCD','5/9/2005','lucifer'),('Hardware Repair','','(630)840-4373','','','','','',''),('Yuri GERSHTEIN','gerstein@fnal.gov','(630)840-3784, (630) 840-8384','','http://www.hep.fsu.edu/~gerstein/','Florida State University','','1/11/2005','gerstein'),('Herbert GREENLEE','greenlee@fnal.gov','(630)840-3618','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Brad ABBOTT','babbott@fnal.gov','FNAL (630)840-3724 OU (405)325-3961 ext 36335','','http://www.nhn.ou.edu/~abbott/','University of Oklahoma','','11/3/2004','babbott'),('Prajakta P SINGH','prajakta@fnald0.fnal.gov','(630)840-8302 (815)753-1772','','','','','',''),('Alexander EFIMOV','efimov@fnald0.fnal.gov','(630)840-8570','','','','','',''),('Wlodek GURYN','guryn@rsgi02.rhic.bnl.gov','(516)344-3878','','http://','NONE','','2/13/2001','serban'),('Anatoli EFREMOV','efremov@thsun1.jinr.dubna.su','(007)096-21-65678','','','','','',''),('Eric H. SMITH','esmith@fnal.gov smith@phyast.nhn.ou.edu','(630)840-3724 (405)325-3961','','http://','No longer working for D0','','5/27/2005','gut'),('Edward KISTENEV','kistenev@fnal.gov','','','','','','',''),('Vladimir BURTOVOY','burtovoy@fnal.gov burtovoy@mx.ihep.su','(630)840-8570 7-095-925-1489','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Julius SOLOMON','','','','http://hepalpha1.phy.uic.edu/','NONE','','3/20/2003','adams'),('Denise SAWICKI','','','','','NONE','','12/20/2001','ferbel'),('Dawn Dammern MUELLER','dammern@fnald0.fnal.gov NIUHEP::DMUELLER','(630)840-8131 (815)753-1772','','','','','',''),('Liang-ping CHEN','lchen@fnald0.fnal.gov/CSA::LCHEN','(630)840-8061 (510)486-7161','','','','','',''),('Nikolai JOURAVLEV','zhuravl@nusun.jinr.dubna.su','(007)096-21-65631','','','','','',''),('Derek GAU','drgau@fnald0.fnal.gov','(630)840-5261 (317)494-5390','','','','','',''),('Terry HEURING','','','','http://','NONE','','2/16/2001','hagopian'),('Martin MASON','','Martin has graduated from the UCR group','','http://','University of California, Riverside','','11/15/1999','heinson'),('Justin BENDICH','CSA::BENDICH','(510)486-6927','','','','','',''),('Padma S NAGARAJA','nagarp@fnald0.fnal.gov','011-91-11-676526 (630)840-3899','','','','','',''),('George FANOURAKIS','fanourakis@fnal.gov','(630)840-8729','','','','','',''),('Christian EBERSBERGER','ebersber@aipmzu.physik.uni-mainz.de','','','http://','unknown','','4/26/2006','gweber'),('Sergei LOS','los@fnald0.fnal.gov','7-095-925-2634 (630)840-5072','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Manuel MARTIN','manuel@fnal.gov, tartist40@aol.com, manuelmartin@home.com','(630)840-8314','formerly at NIU','http://d0server1.fnal.gov/users/manuel/','No longer working for D0','FIBER_TRACKER PRESHOWER TRIGGER WZ','11/16/2006','hedin'),('Hugh E. MONTGOMERY','mont@fnal.gov','(630)840-4708','','http://www-d0.fnal.gov/~mont/mont_home.html','Fermi National Accelerator Laboratory','','2/8/2007','jonckheere'),('Dave TOBACK','toback@fnal.gov','','','','No longer working for D0','','5/12/2005','hadley'),('Sean MCNULTY','mcnulty@fnal.gov','(630)840-2945','','','','','',''),('Kamel BAZIZI','bazizi@fnald0.fnal.gov','(716)275-8617','','','','','',''),('Sergei GURZHIEV','gurzhiev@fnal.gov gurzhiev@mx.ihep.su','(630)840-8570 011-7(096)771-3989','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Marc M. BAARMAND','baarmand@sbhep.physics.sunysb.edu baarmand@fnal.gov','(516)632-7988','','http://','State University of New York, Stony Brook','B_PHYSICS TOP','11/26/1999','baarmand'),('Philippe LAURENS','laurens@pa.msu.edu','(517)884-5522','','http://www.pa.msu.edu/people/laurens','Michigan State University','ONLINE TRIGGER','5/5/2008','linneman'),('Gabriele GARZOGLIO','garzogli@fnal.gov','630-840-6470','formerly Fermilab','http://','No longer working for D0','','1/31/2001','jonckheere'),('Suman Bala BERI','suman@pu.ac.in suman.bala@cern.ch suman@fnal.gov','+91-172-2534471 +91-172-2541741','+91-172-2771645','http://www.puhep.res.in/','Panjab University, India','TOP','11/24/2003','suman'),('Harold EVANS','evans@fnal.gov hgevans@indiana.edu','3859(FNAL) (812)856-3828(Indiana)','','http://hep.physics.indiana.edu/~hgevans/','Indiana University','','11/21/2005','evans'),('Hao-Wei XU','xu@fnald0.fnal.gov','(630)840-2722','','','NONE','','',''),('Vladimir GLEBOV','vgle@lle.rochester.edu','','','','NONE','','12/20/2001','ferbel'),('John SKEENS','RIPHYS::SKEENS','(713)528-2159(*)','','','','','',''),('Chris SHAFFER','','','','','NONE','','2/16/2001','hagopian'),('Ransom STEPHENS','stephens@uta.edu rstephens@fnal.gov','(817)272-2814 (630)840-8599','(817) 561-4682','http://www-hep.uta.edu/hep/stephens/Stephens.html','University of Texas, Arlington','','5/7/1998','nunez'),('Elizabeth BRILLHART','brillhart@fnald0.fnal.gov','(812)855-4089 (630)840-2572','','','','','',''),('Wesley SMART','smart@fnal.gov','(630)840-4779','','','','','',''),('DAB - Lobby 501','','2841/2817/2818/2819','','','','','',''),('Geoff FORDEN','UAZHEP::FORDEN','(520)621-4274','','','','','',''),('N. BISWAS','biswas@undhep.hep.nd.edu','(219)631-6542(*)','','http://www-d0.fnal.gov/ac/public_html/memorial/memorial.html','NONE','','9/7/1999','gallas'),('Jim BISHOP','bishop@undhep.hep.nd.edu','(219)631-5657','','http://www.hep.nd.edu/bishop.html','University of Notre Dame','ONLINE','5/7/1998','bishop'),('Oliver BARDON','bardon@fnal.gov','(630)840-2573','','http://','No longer working for D0','','5/9/2005','darien'),('Sudhindra MANI','mani@ucdhep.ucdavis.edu','(530)752-8785 (630)840-2931','(530)750-1008','http://','University of California, Davis','D033 FIBER_TRACKER MC NEW TRIGGER WZ','7/27/1999','jonckhee'),('Rick HANCE','hance@fnal.gov','(630)840-3898/P-0801','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('George GINTHER','ginther@fnal.gov','(630)840-6337 (630)840-2263 Numeric Pager (630)218-3217','(630)896-5885','http://www-d0.fnal.gov/~ginther/GG.htm','University of Rochester','FIBER_TRACKER PRESHOWER SILICON','7/1/2003','ginther'),('Simon FOO','','','','http://','NONE','','2/16/2001','hagopian'),('Andre SZNAJDER','sznajder@fnal.gov','55-21-587-7551','','http://','Universidade do Estado do Rio de Janeiro, Brazil','','4/30/1998','lima'),('Jun CHEN','jchen@fnald0.fnal.gov','','','','','','',''),('Bernd BERG','berg@hep.fsu.edu','(850)644-6246 (630)840-2825','','http://','No longer working for D0','','5/10/2005','hagopian'),('IB4 - EC FACTORY','','(630)840-2152','','','','','',''),('Dan OWEN','','','','http://www-d0.fnal.gov/ac/public_html/memorial/owen/danowen.html','No longer working for D0','CALORIMETER TRIGGER','3/1/2005','linneman'),('Vladimir MEDOVIKOV','medovikov@mx.ihep.su','(095)925-2634 (630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Marcel DEMARTEAU','demarteau@fnal.gov','(630)840-2840','','http://','Fermi National Accelerator Laboratory','SILICON TOP WZ','12/12/2005','marcel'),('Yuri MIKHAILOV','mikhailov@mx.ihep.su','7-095-925-1489 (630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Erfan AMIDI','amidi@fnal.gov','(630)840-2573/8594 (617)373-4878','','','','','',''),('Jaehoon YU','jaehoonyu@uta.edu','(817)272-2814/2266 at UTA, (630)840-8308 at FNAL','','http://www-hep.uta.edu/~yu','University of Texas, Arlington','ALGORITHMS B_PHYSICS DATA_MANAGE NEW ONLINE QCD SOFTWARE_INFRA TRIGGER WZ','3/9/2005','yu'),('Pablo YEPES','yepes@physics.rice.edu','(713)348-5942 (630)840-2406','','http://','Rice University','','1/21/2008','corcoran'),('Vladimir CHALOUPKA','vladi@u.washington.edu','(206)543-8965 (Univ of Washington)','','http://','No longer working for D0','','5/11/2005','jonckheere'),('Paul QUINTAS','quintas@fnal.gov','(630)840-8592','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Philippe BAILLY','bailly@lpnhep.in2p3.fr','+33(1)44.27.41.74 (630)840-8740','','http://','NONE','CALORIMETER','9/17/2002','bassler'),('Alan JONCKHEERE','jonckheere@fnal.gov','(630)840-3158','(630)801-0243','http://www-d0.fnal.gov/~jonckheere/index.real.html','Fermi National Accelerator Laboratory','ALGORITHMS NEW ONLINE SOFTWARE_INFRA','4/6/2006','jonckheere'),('Henry LUBATTI','lubatti@phys.washington.edu','(206)543-8964-Seattle; (630)840 6690-Fermilab','','http://','University of Washington','MUON','5/9/2000','lubatti'),('Kathy FATYGA','hodel@fnald0.fnal.gov','(630)840-2764','','','','','',''),('Se Byeong LEE','sblee@fnal.gov','630-840-6088','','http://','Korea University, Korea','','2/14/2001','jonckheere'),('Guoliang WANG','wanggl@fnald0.fnal.gov','(850)644-0431','','http://','NONE','','4/16/1998','WWW'),('Sergei ZIMIN','zimin@mx.ihep.su zimin@fnal.gov','7-095-925-1489 (630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Peter GONCHAROV','goncharov@fnald0.fnal.gov','(630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Dave HEDIN','hedin@niu.edu','(815)753-6483 (630)840-8131','','http://www.physics.niu.edu/~hedin','Northern Illinois University','MUON NEW','6/2/1999','hedin'),('Boris BALDIN','baldin@fnal.gov','(630)840-8704/8224','(708)416-7983','http://','Fermi National Accelerator Laboratory','','4/15/1998','WWW'),('Josh NORTEN','norten@fnald0.fnal.gov','(630)840-8131 (815)753-1772','','','','','',''),('P. M. SOOD','pmsood@fnald0.fnal.gov','(630)840-3899 91-172-541741','','http://','NONE','','11/12/2000','hagopian'),('Dhiman CHAKRABORTY','dhiman@fnal.gov','(630)840-8569 (630)452-6368','','http://www-d0.fnal.gov/~dhiman','Northern Illinois University','ALGORITHMS NEW SOFTWARE_INFRA TOP','7/13/2001','dhiman'),('Daria ZIEMINSKA','daria@indiana.edu','(812)855-4986 (630)840-2656','','http://needmore.physics.indiana.edu/~daria','Indiana University','ALGORITHMS B_PHYSICS MUON TRIGGER','7/16/2003','hagopian'),('David VITITOE','vititoe@fnald0.fnal.gov','(617)377-4671','','','','','',''),('Richard ASTUR','astur@fnald0.fnal.gov/RASTUR@fnal.gov','(630)840-8388','','','','','',''),('Courtney LANNERT','lannert@fnald0.fnal.gov','(630)840-8701','','','','','',''),('Alberto SANTORO','santoro@fnal.gov santoro@uerj.br','011-55-21-2587.7454','formerly UERJ, BR','http://www.santoro.uerj.br/','No longer working for D0','QCD','3/19/2007','jonckheere'),('Geoff MANNING','gmanning@fnal.gov','(630)840-5407','','','','','',''),('Hung NGUYEN','hnguyen@fnal.gov Hung_Q_Nguyen@brown.edu','Summer Student with Greg Landsberg','','http://','No longer working for D0','','5/9/2005','partridge'),('Gregory FOSTER','foster@fnald0.fnal.gov','(630)840-8388 (516)632-8095','','','','','',''),('Ernie MALAMUD','malamud@fnal.gov','(630)840-4833','','','','','',''),('Evgueni ZVEREV','zverev@fnal.gov zverev@nealab.npi.msu.su','(630)840-8630 011-7(095)939-5889','','http://','Moscow State University, Russia','','5/6/1998','nunez'),('Tevfik MENTES','tmentes@sbhep.physics.sunysb.edu','','','http://','State University of New York, Stony Brook','','9/16/1999','dean'),('Pierrick HANLET','hanlet@fnal.gov','(630)840-8382','(630)355-7750','http://www-d0.fnal.gov/~hanlet','University of Texas, Arlington','QCD','3/4/2002','hanlet'),('DAB - Counting Room 311 (MCH)','','inside:2842/by-door:8294','','','','','',''),('Kaushik DE','kaushik@uta.edu','(817)272-2813/(630)840-8382','(817)276-9082','http://heppc1.uta.edu/kaushik/kaushik.htm','University of Texas, Arlington','CALORIMETER D033 NEW','1/12/2000','kaushik'),('Mark BAERT','baert@fnal.gov','(640)840-2084','','','','','',''),('Marcello LOPEZ','marlo@fnal.gov','','','','','','',''),('Seamus CLARK','seamus@fnal.gov','(630)840-5643 (212)854-5784','','','','','',''),('Lewis Taylor GOSS','ltgoss@fnald0.fnal.gov','(630)840-3702 (409)845-5490','','http://','Texas A&M University','','5/6/1998','nunez'),('Steve WIMPENNY','wimpenny@phyd0.ucr.edu','(951)827-3868 (951)827-5033 (630)840-8763','(951)485-7576','http://www.physics.ucr.edu/faculty_staff/faculty_pages/wimpenny.html','University of California, Riverside','TOP WZ','7/24/2006','wimpenny'),('Natarajan PANCHAPAKEASN','panchu@fnald0.fnal.gov','91-11-7257793 (630)840-3899','','','','','',''),('Jim COCHRAN','cochran@fnal.gov','(515) 294-9018','','http://','Iowa State University','TOP','8/23/1999','cochran'),('John PETERSON','jrpeters@fnald0.fnal.gov','(630)840-8757','','http://','No longer working for D0','','11/15/2006','tuts'),('Ted SCALISE','CSA::SCALISE','(510)486-5055','','','','','',''),('Chyi-Chang MIAO','cmiao@fnal.gov cmiao@hep.brown.edu','','','http://www-d0.fnal.gov/~cmiao','No longer working for D0','TRIGGER','5/9/2005','partridge'),('DAB - Lobby 601','','2843/2817/2818/2819','','','','','',''),('Wei CHEN','left D0','','','','NONE','','9/16/1999','dean'),('Krzysztof L. GENSER','genser@fnal.gov MS318','(630)840-8278','','','unknown','','3/7/2006','genser'),('Shuichi KUNORI','kunori@fnal.gov','(630)840-8346','formerly Maryland','http://','No longer working for D0','','4/11/2007','jonckheere'),('Huishun MAO','mao@fnal.gov maohs@mail.ihep.ac.cn','(630)840-8339 011-8610-6821-3344(ext.2918)','','http://','IHEP, Beijing, China','','7/30/2001','hagopian'),('Petros RAPIDIS','rapidis@fnal.gov','Formerly FNAL','','http://d0server1.fnal.gov/users/Rapidis/Rapidis.html','No longer working for D0','SILICON','10/12/2006','jonckheere'),('Rob AVERY','avery@fnald0.fnal.gov NUHEP::AVERY','(708)491-8607 (630)840-5221','','','','','',''),('Evgeny KOZLOVSKY','Evgeny.Kozlovsky@ihep.ru','(630)840-8570','','http://','Institute for High Energy Physics, Russia','MUON','5/12/2005','bezzubov'),('Winston KO','ko@fnal.gov','(916)752-1283 (630)840-2931','','http://','University of California, Davis','','5/6/1998','nunez'),('Armand ZYLBERSTEJN','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','ALGORITHMS D033 MC WZ','5/11/2005','besancon'),('James K. WALKER','','(850)392-6689','','','','','',''),('Michael R. STOLZ','stolz@fnal.gov','(630)840-8060','','http://','Fermi National Accelerator Laboratory','','5/12/1998','nunez'),('Colin DALY','daly@fnal.gov daly@u.washington.edu','(206)543-6226','','http://','University of Washington','','4/10/2006','jonckheere'),('Yuying SHAO','shaoyy@fnal.gov','(630)840-8339','','','','','',''),('Paul PADLEY','padley@physics.rice.edu','713-348-4703','','http://dacnet.rice.edu/~ricephys/Faculty/?FDSID=573','Rice University','','2/7/2000','padley'),('Vladimir TETERIN','tvv@nusun.jinr.dubna.su','7(096)21-62121 (630)840-2989','','','','','',''),('Rick VAN KOOTEN','rickv@fnal.gov rvankoot@indiana.edu','812-855-0903, 812-855-2650 (Indiana) 630-840-2572 630-840-3859 (FNAL) 812-360-2634 (Cell)','812-335-8929, 812-360-2634 (cell)','http://www.physics.indiana.edu/faculty/VanKooten.shtml','Indiana University','B_PHYSICS FIBER_TRACKER NEW ONLINE','12/6/2007','rickv'),('Jose N MONTANHA','','','','http://','No longer working for D0','FIBER_TRACKER QCD','11/16/2004','gilvan'),('Daniel KARMGARD','karmgard@fnal.gov','(630)840-8384','(630)840-3342','http://www-d0.fnal.gov/~karmgard/homepage.html','University of Notre Dame','NEW','7/22/1999','karmgard'),('Mikhail MATVEEV','matveev@fnald0.fnal.gov','(630)840-5072/2982','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Timothy CULBERTSON','tculbert@fnald0.fnal.gov','(630)840-2817','','http://','NONE','','2/13/2001','hedin'),('Vemuri NARASIMHAM','vsn@tifr.res.in vsn@d0mino.fnal.gov','630-840-3590 630-840-5419','630-840-4236','http://','Tata Institute of Fundamental Research, India','MUON','11/16/2001','vsn'),('Peter NEMETHY','NYUHEP::NEMETHY','(212)998-7747','','','','','',''),('Raul Hernandez MONTOYA','raul@fnald0.fnal.gov','(630)840-8597 011-525-747-7097','','http://','No longer working for D0','','5/10/2005','castilla'),('Daniel CHARNAY','charnay@in2p3.fr','011(334)78-93-08-80','','http://','','','4/6/1998','jonckhee'),('Gordon WATTS','gwatts@fnal.gov','630-840-8701, 206-543-4186, cell 312-560-4873, ICQ 34539950','','http://d0.phys.washington.edu/~gwatts/','University of Washington','ALGORITHMS NEW ONLINE SOFTWARE_INFRA TOP TRIGGER','2/17/2002','gwatts'),('Horst WAHL','wahl@hep.fsu.edu wahl@fnal.gov','(850)644-3509 (630)840-2825/8384','(850)386-2239, FNAL site56: 5683,5635','http://www.hep.fsu.edu/~wahl','Florida State University','CALORIMETER NEW QCD TRIGGER','3/9/2008','wahl'),('E. Walter ANDERSON','ewa@fnal.gov/ISUMMA::ANDERSON','(515)294-2823 (630)840-4062','','http://','Iowa State University','','5/6/1998','nunez'),('Herman CEASE','cease@fnalu.fnal.gov physcease@minna.acc.iit.edu','(630)840-3089','formerly Fermilab','http://','No longer working for D0','','5/12/1998','nunez'),('Christina HEBERT','agleue@fnal.gov','','','http://','No longer working for D0','ALGORITHMS SILICON TOP','3/1/2006','baringer'),('Tianchi ZHAO','tianchi@phys.washington.edu','(206)368-9136','','http://','University of Washington','','4/14/1998','nunez'),('Seung-Chan AHN','ahn@fnal.gov','(630)840-8734','(708)393-2599','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Thomas M. MCKIBBEN','','','','','NONE','','3/20/2003','adams'),('Ties BEHNKE','VXCERN::BEHNKE','','','','','','',''),('David JOYCE','joyce@fnal.gov','','','','','','',''),('Kristal MAURITZ','','','','http://high-energy.physics.iastate.edu','No longer working for D0','QCD','5/10/2005','hauptman'),('Lynn BAGBY','bagby@fnal.gov','(630)840-3100','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Gregor GEURKOV','geurkov@hep.brown.edu','(630)840-2638','','http://','No longer working for D0','','5/9/2005','partridge'),('Brian L. WINER','winer@fnald0.fnal.gov','(630)840-8757 (212)854-8014 (914)591-8120','','','','','',''),('Bjoern SCHMEKEL','schmekel@fnal.gov','049-4121-71198','','','','','',''),('Steve CARABELLO','carabell@london.physics.purdue.edu SCARAB@fnald0.fnal.gov','(317)494-5394 (630)840-5261','','http://','Purdue University','','5/1/1998','thatcher'),('John YOOK','yook@bu.edu','(617)353-2600 (630)840-8705','','','','','',''),('Petr SICHO','sicho@fnal.gov','011(420)6605-2143 (630)840-4708','','','','','',''),('Gennady OBRANT','obrant@fnal.gov',' (630)840-6123 +7(813-71)46209','','http://www-d0.fnal.gov/~obrant/','Petersburg Nuclear Physics Institute, Russia','MUON','5/16/2005','loboden'),('Liang HAN','hanl@fnal.gov, hanl@ustc.edu.cn','x4384','','http://www-d0.ustc.edu.cn/hanl/','Univ of Science and Technology of China, Hefei','ALGORITHMS FIBER_TRACKER NEW TRIGGER WZ','6/11/2007','hanl'),('Ann HEINSON','heinson@fnal.gov ann.heinson@ucr.edu','(951)827-5712 (630)840-2192/8596/8763','','http://www-d0.fnal.gov/~heinson','University of California, Riverside','ALGORITHMS B_PHYSICS D033 MC NEW SILICON SOFTWARE_INFRA TOP TRIGGER WZ','8/31/2005','heinson'),('Annie JOLLIFF','annie@fnal.gov','(630)840-2854','','http://','No longer working for D0','','1/22/2006','diehl'),('Eric NEIS','neis@fnald0.fnal.gov','(630)840-8693 (313)763-7202','','','','','',''),('Sharon HAGOPIAN','hagopian@hep.fsu.edu hagopian@fnal.gov','(850)644-4777 (630)840-8384','','http://www-d0.fnal.gov/~hagopian/shagopian.html','Florida State University','MUON NEW SOFTWARE_INFRA','11/5/2004','hagopian'),('John KOWALSKI','kowalski@fnal.gov','(630)840-3444','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('John CORNELE','cornele@fnal.gov','(630)840-2817/p0184','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Sudeshna BANERJEE','sudeshna@tifr.res.in','011-91-22-215-2971:x2544','011-91-22-216-1148','http://','Tata Institute of Fundamental Research, India','NEW','10/13/1998','banerjee'),('Sergei CHEKULAEV','chekulaev@fnal.gov','(630)840-8570','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Bill WENZEL','CSA::WENZEL','(510)486-6918','','','','','',''),('Ulrich HEINTZ','heintz@bu.edu','(630) 840 8513 at FNAL (617) 353 9057 at BU','','http://physics.bu.edu/~heintz','Boston University','TOP TRIGGER','10/26/2007','heintz'),('Takahiro YASUDA','yasuda@fnal.gov','(630)840-6603','(630)718-1655','http://www-d0.fnal.gov/~yasuda/yasuda.html','Fermi National Accelerator Laboratory','ALGORITHMS MUON ONLINE WZ','3/23/1999','yasuda'),('Brian CONNOLLY','connolly@fnal.gov','(630)840-8384,(630)840-4062','(630)587-2958','http://www-d0.fnal.gov/~connolly','No longer working for D0','TOP TRIGGER','5/10/2005','hagopian'),('Benjamin OOSTRA','boostra@cdcnet.uniandes.edu.co','[57-1]283-9514(*)','','','','','',''),('Moacyr SOUZA','moacyr@fnal.gov moacyr@cbpf.br','(630)840-8449 011-55-21-21417384','Formerly CBPF/Lafex (Br)','http://','No longer working for D0','ALGORITHMS ONLINE QCD','1/9/2007','jonckheere'),('Lev DUDKO','dudko@fnal.gov','(630)840-3122 011-7(095)939-5881','','http://lev.art.ru','Moscow State University, Russia','TOP','5/25/2005','dudko'),('Jose Luis Gonzalez SOLIS','jluis@fnald0.fnal.gov','(630)840-8597 52-5-7546801','','http://','No longer working for D0','','5/10/2005','castilla'),('Andreas BISCHOFF','bischoff@phyhepsun1.ucr.edu','(909)787-3570 (630)840-8763','','','','','',''),('Alexandre SHKURENKOV','alexsh@fnal.gov','','','','','','',''),('Dave HUFFMAN','huffman@fnal.gov','(630)840-2273','','http://d0server1.fnal.gov/users/huffman/','Fermi National Accelerator Laboratory','CALORIMETER','7/12/1999','huffman'),('Freddie LANDRY Jr.','landry_f@d0tng.fnal.gov','','','http://','No longer working for D0','','3/1/2005','linneman'),('Tzu-Chung Frank HSIEH','MICH::HSIEH','(630)840-5400','(708)879-9613','http://','NONE','','8/24/1998','qianj'),('Mike SHUPE','UAZHEP::SHUPE','(520)621-2679','','http://','University of Arizona','','4/22/1998','WWW'),('Jim CHRISTENSON','christenson@fnal.gov','(630)840-4894','formerly Fermilab','http://','No longer working for D0','','9/23/1998','christen'),('Sarah ENO','eno@physics.umd.edu','(630)840-8346 (301)405-7179','','http://www2.physics.umd.edu/~eno/Default.htm','University of Maryland','','1/7/2004','sceno'),('J. Frederick (Fritz) BARTLETT','bartlett@fnal.gov','(630)840-4058','(630)377-3917','http://www-d0.fnal.gov/~bartlett','Fermi National Accelerator Laboratory','MUON ONLINE','7/16/1999','bartlett'),('Atsushi TAKETANI','taketani@fnal.gov','(630)840-2405','','','','','',''),('Bassar SABIROV','sabirov@fnal.gov sabirov@vxjinr.jinr.ru','840-2989 9-011-7-09621-62577',' 630-840-3438','http://nusun.jinr.ru/~dzero/','No longer working for D0','MUON','5/11/2005','yuyatsu'),('Bernard POPE','pope@pa.msu.edu pope@fnal.gov','(517)353-1695 (630)840-2314','(517)381-9039','http://www.pa.msu.edu/people/pope/','Michigan State University','CALORIMETER MC QCD TRIGGER','1/2/2002','pope'),('Shashikant DUGAD','shashi@fnal.gov','[91-22]215-2971/(630)840-3590','(630)840-4236','http://','Tata Institute of Fundamental Research, India','B_PHYSICS MUON','4/11/2001','shashi'),('Safak CINAR','cinar@fnald0.fnal.gov/SBHEP::SCINAR','(630)840-5636','','','','','',''),('P. Timothy COX','ptc@fnal.gov','(630)840-5405','','http://','NONE','','8/5/2004','gregsnow'),('Victor REECE','reece@utahep.uta.edu','(817)272-2811 (630)840-8599','','http://','University of Texas, Arlington','','5/7/1998','nunez'),('Richard BREEDON','breedon@fnald0.fnal.gov','(630)840-2931 (916)752-1620','','http://','University of California, Davis','','5/6/1998','nunez'),('John BUTLER','jmbutler@bu.edu','(617)353-8931 office, (617)353-6043 lab, (630)840-5224 PK151','Formerly Boston','http://hep.bu.edu/~jmbutler','No longer working for D0','D033 MUON TOP TRIGGER','10/4/2007','jonckheere'),('Sonya WRIGHT','sonya@fnal.gov','(630)840-4591','','http://','Fermi National Accelerator Laboratory','','4/15/1998','WWW'),('Steven WEAVER','weaver@fnald0.fnal.gov','(850)644-9957 (630)840-4928','','','','','',''),('Robert BARGER','','(630)840-2817','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('John BARILLA','','(630)840-2820','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('David BUTLER','','(630)840-2820','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Edward CHI','edchi@fnal.gov','(630)840-2879','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Joseph DAVIDS','','(630)840-2817/2820','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Ron DAVIS','','(630)840-2817','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('James FAGAN','jefagan@fnal.gov','(630)8402932/2820','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Rolando FLORES','','(630)840-2817','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('John FOGLESONG','fogie@fnal.gov','(630)840-2739','','http://','Fermi National Accelerator Laboratory','','10/25/2000','jonckheere'),('Donald FRIEMD','friend@fnal.gov','(630)840-2029','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Patrick HEALEY','healey@fnal.gov','(630)840-2817','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Carl LUNDBERG','Swede@fnal.gov','(630)840-8636','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Mike McKenna','mckenna@fnal.gov','840-2817','','http://','Fermi National Accelerator Laboratory','','9/7/2000','jrhoades'),('John NAJDZION','','(630)840-2820','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Rodgers RODGERS','','(630)840-2817','','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Rogers ROGERS','','','(630)840-2817','http://','Fermi National Accelerator Laboratory','','5/11/1998','nunez'),('Jim SEEMAN','','(630)840-2820','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('David E. SMITH','','(630)840-2817','formerly Fermilab','http://','No longer working for D0','','5/11/1998','nunez'),('Ernie VILLEGAS','villegas@fnal.gov','(630)840-3686','formerly Fermilab','http://','No longer working for D0','','5/12/1998','nunez'),('Arnaud DUPERRIN','duperrin@cppm.in2p3.fr','1-630-840-6828 or 6829 (outback)','+33-4-91-82-76-40','http://marwww.in2p3.fr/D0/Welcome.html','Centre de Physique des Particules de Marseille','ALGORITHMS B_PHYSICS NEW ONLINE SILICON TRIGGER','9/23/2003','jonckheere'),('Christopher J. MCBRIDE','cmcbride@fnal.gov','(630)840-3696','formerly Fermilab','http://','No longer working for D0','','5/12/1998','nunez'),('Yuchuan WANG','Yuchuan@bu.edu','','','','NONE','','7/15/2002','jmbutler'),('Gregorio BERNARDI','gregorio@in2p3.fr','+33(1)44.27.47.94 (630)840-8740','(773)744-8259','http://www-lpnhep.in2p3.fr/d0/gregorio','LPNHE, Universites Paris VI and VII, France','CALORIMETER TOP','9/17/2002','bassler'),('Ursula BASSLER','bassler@in2p3.fr','+33(1)44.27.47.94 o:(630)840-8740 c:+33(6).12.73.46.78','c:+33(6)12.73.46.78','http://www-lpnhep.in2p3.fr/d0/bassler','LPNHE, Universites Paris VI and VII, France','CALORIMETER TOP','5/31/2002','bassler'),('Bob OLIVIER','olivier@in2p3.fr','+49(40)8998-3560','','http://www-d0.fnal.gov/~olivier','No longer working for D0','CALORIMETER ONLINE TOP','12/1/2004','bassler'),('Mark BAILEY','mwb@fnal.gov','','','http://','NONE','','3/6/2001','jonckheere'),('Cristian OPAZO','opazo@pa.msu.edu cristian@d02ka.fnal.gov','(517)355-3519 (630)840-4008','(517)336-6946','http://www.pa.msu.edu/~opazo/dzero/tsim_l1frm.html','NONE','TRIGGER','2/22/2001','linneman'),('Mingcheng GAO','mcgao@fnal.gov','x8757 pager:(630)218-4777','','http://www-d0.fnal.gov/~mcgao','No longer working for D0','CALORIMETER WZ','11/15/2006','tuts'),('Michael MARTENS','martens@fnal.gov','Formerly FNAL','','http://','No longer working for D0','','10/12/2006','jonckheere'),('James HEINMILLER','jheinm1@xia.com',' (630)840-5219','formerly UIC','http://www-clued0.fnal.gov/~jheinm1','No longer working for D0','','3/27/2008','jonckheere'),('Michael AIVAZIS','aivazis@fnal.gov','','','http://','Fermi National Accelerator Laboratory','SOFTWARE_INFRA','5/20/1998','jonckhee'),('Jean Francois RENARDY','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Daniel MIKSA','dmiksa@fnal.gov','(630)840-6434 (815)748-7546','','http://','NONE','','2/13/2001','hedin'),('Patricia WAGNER','','','','http://','No longer working for D0','','3/1/2006','baringer'),('Hernan WAHLBERG','hwah@df.uba.ar','(541)782-1007 (630)840-8317','','http://','No longer working for D0','','5/11/2005','aia'),('Alejandro SZYNKMAN','hwah@df.uba.ar','(541)782-1007 (630)840-8317','','http://','No longer working for D0','','5/11/2005','aia'),('sijbrand DE JONG','sijbrand@hef.kun.nl','+31243652168','+31243791280','http://www.hef.kun.nl','Radboud University Nijmegen','ALGORITHMS B_PHYSICS DAQ_ELECTRONICS MC NEW SILICON SOFTWARE_INFRA TOP TRIGGER','2/15/2000','sijbrand'),('Frank LINDE','','','','','No longer working for D0','','5/12/2005','pdejong'),('Michael STRANG','strang@fnal.gov','(630) 840-4111','','http://www-d0.fnal.gov/~strang/','State University of New York, Buffalo','WZ','10/31/2005','strang'),('Zdenek KOTEK','kotek@fnal.gov','4202-8585443','','http://','Institute of Physics of Czech Academy of Sciences','','6/19/1998','WWW'),('Xiaofei SONG','song@fnal.gov','Formerly Northern Ill','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Gregory DAVIS','davisg@fnal.gov','Formerly Northwestern','630-585-9379','http://','No longer working for D0','FIBER_TRACKER QCD WZ','10/12/2006','jonckheere'),('Dookee CHO','dkcho@fnal.gov','630)840-8905','','http://www-d0.fnal.gov/~dkcho/','Boston University','','2/15/2005','dkcho'),('Kwok Ming CHAN','klchan@fnal.gov','(630)840-2546','','http://','University of Notre Dame','','8/3/2006','klchan'),('Zeno GREENWOOD','greenw@phys.latech.edu','(318)257-2302 (630)840-3383','(318)255-4988','http://www.phys.latech.edu/~greenw','Louisiana Tech University','CALORIMETER WZ','8/1/2005','greenwzd'),('Guennadi ALEXEEV','alexeev@fnal.gov alexeev@nu.jinr.ru','840-2989 9-011-7-09621-63795',' 9-011-7-09621-65944','http://nu.jinr.ru/~dzero','Joint Institute for Nuclear Research, Russia','MUON','5/8/2001','sabirov'),('Tommy LANDERS','','','','','No longer working for D0','','5/12/2005','hadley'),('Junguang LU','lujg@fanl.gov','8610-6821-3344ext.2998 (630)840-8339','','http://','IHEP, Beijing, China','','7/27/1999','jonckhee'),('Kyle TURNER','kturner@fnal.gov turnerkyle@hotmail.com','(630)840-8236','formerly Fermilab','http://','No longer working for D0','','7/27/1999','jonckhee'),('Sergey UVAROV','uvarovsl@fnal.gov uvarovsl@hep486.pnpi.spb.ru','(630)840-2982','7-812-7146549','http://www-d0.fnal.gov/~uvarovsl/','Petersburg Nuclear Physics Institute, Russia','MUON','5/10/2004','jonckheere'),('Zhong YU','zhongyu@fnal.gov z-yu@nwu.edu','(847)491-8612 (630)840-8454','','http://www-d0.fnal.gov/~zhongyu','NONE','','2/12/2001','buchholz'),('Therez KING','tking@fnal.gov t-king@nwu.edu','708-547-6582 (630)840-5221','','http://','NONE','','2/12/2001','buchholz'),('Peter VAN GEMMEREN','vangemme@fnal.gov','(630)840-8592','','http://','Fermi National Accelerator Laboratory','','7/27/1999','jonckhee'),('Rajesh NAIR','rajesh@cuphy3.phys.columbia.edu','212-854-3334','','http://','No longer working for D0','','11/15/2006','tuts'),('Jean-Francois GRIVAZ','grivaz@lal.in2p3.fr','33-1-64-46-83-98','33-6-62-19-22-85','http://www-d0.fnal.gov/~grivaz/','Laboratoire de l Accelerateur Lineaire, France','NEW','1/8/2004','grivaz'),('Daniela BAUER','dbauer@fnal.gov','+1-630-840-3859','','http://www-d0.fnal.gov/~dbauer','Imperial College, London','','3/14/2006','dbauer'),('Neal CASON','cason.1@nd.edu','574-631-6305','formerly Notre Dame','http://www.nd.edu/~ncason','No longer working for D0','B_PHYSICS FIBER_TRACKER','1/24/2008','jonckheere'),('Jennifer WEBSTER','jenweb@fnal.gov','402-436-7063','','http://','NONE','','8/5/2004','gregsnow'),('Volker BUESCHER','buescher@fnal.gov buescher@cern.ch','(630) 840-4533','','http://','Physikalisches Institut, Bonn University','','4/3/2007','buescher'),('Elizabeth SCHMITT','eschmitt@students.uiuc.edu','(630)840-8277','formerly Fermilab','http://','No longer working for D0','','7/27/1999','jonckhee'),('Kubantsev','kubants','840-8630','630-236-7656','http://www-d0.fnal.gov/~kubants','Northwestern University','SILICON','5/27/2005','bolton'),('Neville (Bill) REAY','reay@fnal.gov reay@phys.ksu.edu','(630)840-8630 (785)532-1638','','http://','No longer working for D0','SILICON','12/14/2005','bolton'),('Abdelouahab ABDESSELAM','','','','h','No longer working for D0','','5/10/2005','jaffre'),('Ronald SIDWELL','sidwell@fnal.gov','(630)840-8630 785-532-1639','formerly Kansas State','http://','No longer working for D0','SILICON','4/11/2007','jonckheere'),('Ariel SCHWARTZMAN','sch@fnal.gov','(630)840-4205 (609)258-4379','(630)544-7365','http://www-d0.fnal.gov/~sch','Princeton University','ALGORITHMS B_PHYSICS CALORIMETER TOP','8/6/2004','sch'),('Andre S. TURCOT','turcot@fnal.gov','Formerly BNL','(630) 840-6390','http://www-d0.fnal.gov/~turcot/welcome.html','No longer working for D0','ALGORITHMS NEW PRESHOWER TRIGGER','10/12/2006','jonckheere'),('Thais LUNGOV','lungov@fnal.gov','','55-11-3177-9063','http://','','','8/10/1999','emay'),('Igor VASILYEV','vasilyev@fnal.gov','(630)-840-8570','','http://','Institute for High Energy Physics, Russia','MUON','10/5/2001','vasilyev'),('Zhou ZHANG','zhozhang@sparky.ic.sunysb.edu','(631)216-2135','','http://','NONE','','9/28/2000','dean'),('Frank FILTHAUT','filthaut@fnal.gov F.Filthaut@science.ru.nl','+31-24-3652308','','http://www.hef.ru.nl/~filthaut/','Radboud University Nijmegen','ALGORITHMS B_PHYSICS DATA_MANAGE MC SILICON SOFTWARE_INFRA TRIGGER','9/17/2004','filthaut'),('George BASHINDJAGIAN','glb@d0chb.fnal.gov glb@mail.desy.de','(630)840-8630','','http://','Moscow State University, Russia','','7/27/1999','jonckhee'),('Lukas TOMASEK','tomasekl@fzu.cz','(630)840-8630','','http://','Institute of Physics of Czech Academy of Sciences','','7/27/1999','jonckhee'),('Charles LEGGETT','','','','http://d0lbln.lbl.gov/wwwd0/d0.html','No longer working for D0','ONLINE','5/9/2005','madaras'),('Naresh SEN','nareshs@rice.edu','2406','','http://','NONE','','2/21/2002','jonckheere'),('Richard DECOSTER','decoster@fnal.gov','630-840-4595','','http://','Fermi National Accelerator Laboratory','','7/27/1999','jonckhee'),('Armen VARTAPETIAN','vartap@uta.edu','817-272-2885 630-840-2691','Formerly UTA','http://','No longer working for D0','','7/9/2007','jonckheere'),('Daniel WHITESON','','','','http://d0lbln.lbl.gov/wwwd0/d0.html','No longer working for D0','ALGORITHMS NEW SILICON SOFTWARE_INFRA TRIGGER','5/9/2005','madaras'),('Kirill LUGOVSKI','kirill@fnal.gov','840-8570 011-7-0967-713556','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Alice BEAN','abean@ku.edu','(630)840-8630, (785) 864-4742','','http://','University of Kansas','ALGORITHMS SILICON','7/16/2003','hagopian'),('Frank LEHNER','lehnerf@fnal.gov','(630)840-5701','formerly Zurich','http://www-d0.fnal.gov/~lehnerf','No longer working for D0','','1/24/2008','jonckheere'),('Vassili AKIMOV','vassili.akimov@itep.ru','(630)840-8570','7(095)1259640','http://','No longer working for D0','','5/10/2005','safronov'),('Noel STANTON','stanton@phys.ksu.edu','(630)840-3132 (630)840-8630','(785)532-1641','http://','No longer working for D0','','12/14/2005','bolton'),('Stephanie BEAUCERON','beaucero@lpnhep.in2p3.fr','+33(1)44.27.23.28 (630)840-8740','','http://','LPNHE, Universites Paris VI and VII, France','','9/17/2002','bassler'),('Patrick BERGHAUS','berghaus@fnal.gov','(630)840-3001','532-2393','http://','No longer working for D0','','5/27/2005','bolton'),('James AMUNDSON','amundson@fnal.gov','(630)840-2430','formerly Fermilab','http://','No longer working for D0','','10/20/1998','emay'),('Hurol ASLAN','HUR@unlhep2.unl.edu','','(402)472-9879','http://','NONE','','8/5/2004','gregsnow'),('George Alverson','George.Alverson@cern.ch','630 840 2573 (FNAL), 617 373 2938 (Boston)','','http://','Northeastern University','','8/18/2000','alverson'),('Chunhui LUO','chuluo@indiana.edu','(630)840-2656 (630)840-4586','','http://www-d0.fnal.gov/~chuluo','Indiana University','B_PHYSICS MUON ONLINE TRIGGER','10/15/2002','chuluo'),('Vladimir SEROV','serov@fnal.gov serov@jlab.org','(630)840-8570','7(095)1259112','http://','No longer working for D0','','5/10/2005','safronov'),('Stilianos KESISOGLOU','kesisogl@fnal.gov','Formerly Brown','(630)231-1438','http://','No longer working for D0','','10/12/2006','jonckheere'),('Alexander MELNITCHOUK','melnit@fnal.gov','630-840-8597','630-840-3548','http://','University of Mississippi','ALGORITHMS SILICON','5/9/2005','partridge'),('Leonid VERTOGRADOV','vertov@fnal.gov','630-840-2989','1(096)(21)62707','http://','Joint Institute for Nuclear Research, Russia','B_PHYSICS MUON','12/3/2004','vertov'),('Christophe ROYON','royon@hep.saclay.cea.fr royon@fnal.gov','5503 6830','','http://','DAPNIA/SPP, SACLAY, France','','1/5/2002','royon'),('Xiangcheng MENG','MENGXC@fnal.gov','630-840-8339','86-10-68213344','http://','IHEP, Beijing, China','','12/9/1998','thatcher'),('Martin-Chassard Gisele','martin@lal.in2p3.fr','630-840-6448','33-164468327','http://','Laboratoire de l Accelerateur Lineaire, France','','11/30/1998','emay'),('Jacquier YVES','','','','http://','No longer working for D0','','5/10/2005','jaffre'),('Alain VALLEREAU','alainval@lpnhep.in2p3.fr','+33(1)44.27.41.74 (630)840-8740','','http://','NONE','CALORIMETER','9/17/2002','bassler'),('Levan BABUKHADIA','blevan@fnal.gov','(630)840-3105','','http://www-d0.fnal.gov/~blevan','State University of New York, Stony Brook','ALGORITHMS CALORIMETER PRESHOWER QCD TRIGGER','11/30/1999','blevan'),('HASSARD, John','hassard@fnal.gov j.hassard@ic.ac.uk','44-171-594-7792','','http://','Imperial College, London','','8/9/1999','thatcher'),('Newton DE OLIVEIRA','newtonol@fnal.gov','(630)840-2362','formerly UERJ, BR','http://','No longer working for D0','','4/11/2007','jonckheere'),('Andrew COOPER','acooper@fnal.gov','','','http://','Fermi National Accelerator Laboratory','','7/27/1999','jonckhee'),('Linda STUTTE','stutte@fnal.gov','(630)840-3108','(630)377-3917','http://home.fnal.gov/~stutte','Fermi National Accelerator Laboratory','','2/21/2006','stutte'),('Silvia TENTINDO-REPOND','silvia@fnal.gov','(630)840-2574','','http://','No longer working for D0','SILICON TOP TRIGGER','12/14/2006','blessing'),('Wendy TAYLOR','taylorw@yorku.ca wendyt@fnal.gov','(416) 736-2100 x77758','','http://www.hep.yorku.ca/taylorw','York University, Canada','B_PHYSICS CALORIMETER TRIGGER','2/8/2005','wendyt'),('Nikolay KUCHINSKY','','','','http://nusun.jinr.ru/~dzero/','No longer working for D0','MUON','5/11/2005','yuyatsu'),('Maria SORIN','hwah@df.uba.ar','(541)782-1007 (630)840-8317','','http://','No longer working for D0','','5/11/2005','aia'),('Shoua MOUA','moua@fnal.gov','(630)840-2084','','http://','Fermi National Accelerator Laboratory','','1/11/1999','emay'),('Aurelio JUSTE','juste@fnal.gov','x6565 (D0) x8630 (SiDet) (630) 722-0033 (Pager)','','http://','Fermi National Accelerator Laboratory','SILICON','8/29/2000','juste'),('Gustaaf BROOIJMANS','gusbroo@fnal.gov','(630)840-4269 (212)854-4527 (columbia) (914)591-2804 (nevis)','(773)517-1673 (cell)','http://www-d0.fnal.gov/~gusbroo','Columbia University','ALGORITHMS DAQ_ELECTRONICS MC NEW ONLINE SOFTWARE_INFRA TRIGGER','11/10/2003','gusbroo'),('Cynthia WIKE','wike@fnal.gov','(630)840-6098','formerly Fermilab','http://','No longer working for D0','','1/21/1999','emay'),('Daniel MIHALCEA','mihalcea@fnal.gov','(630)840-8630','(785)532-1693','http://','No longer working for D0','SILICON','5/27/2005','gut'),('Oleg KOUZNETSOV','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Marcel VREESWIJK','marcel.vreeswijk@cern.ch','Formerly NIKHEF','+31 299439619','http://www.nikhef.nl/user/h73','No longer working for D0','TOP','10/12/2006','jonckheere'),('Kors BOS','k.bos@nikhef.nl','Formerly NIKHEF','+31-35-7723265','http://www.nikhef.nl/~bosk/','No longer working for D0','ALGORITHMS MC MUON SOFTWARE_INFRA','10/12/2006','jonckheere'),('David COLLING','d.colling@ic.ac.uk colling@fnal.gov','(630)840-5701','','http://','Imperial College, London','','12/19/1999','colling'),('Peter RATOFF','p.ratoff@lancaster.ac.uk','44-1-524-593649','','http://www.lancs.ac.uk/depts/physics/staff/pnr.htm','Lancaster University, United Kingdom','','5/10/2005','bertram'),('Jeremy SIMMONS','jeremys@piocon.com jeremys@fnal.gov','630-840-8317 815-263-3649','','http://','','','4/29/2003','jeremys'),('Paul BALM','','','','','No longer working for D0','ALGORITHMS B_PHYSICS MUON TRIGGER','5/12/2005','pdejong'),('Vladimir TURTIKOV','turtikov@fnal.gov','630-840-5640','','http://','No longer working for D0','','11/21/2006','stolin'),('Bram WIJNGAARDEN','dwijngaa@fnal.gov','','','','No longer working for D0','B_PHYSICS SILICON','2/18/2008','sijbrand'),('Onne PETERS','','','','','No longer working for D0','B_PHYSICS MUON','5/12/2005','pdejong'),('Xiaoling FAN','fanxl@fnal.gov','(630)840-8325','(847)467-3083','http://','NONE','','2/12/2001','buchholz'),('Evelyne LEBRETON','evelyne@in2p3.fr','+33(1)44.27.23.26','','http://www-lpnhep.in2p3.fr/d0/evelyne','No longer working for D0','MC','12/1/2004','bassler'),('Jose Ganzalez','jluis@fnal.gov','(630)840-8597','(52-5)7540143','http://','No longer working for D0','','5/10/2005','castilla'),('Maarten LITMAATH','litmaath@fnal.gov','(630)840-6467','','http://','Fermi National Accelerator Laboratory','ONLINE','1/11/2000','litmaath'),('William Pritchard','pritchard@fnal.gov','(630)840-3370','','http://','Fermi National Accelerator Laboratory','','2/26/1999','emay'),('Jean RHOADES','jrhoades@fnal.gov','(630)840-5400','formerly Fermilab','http://','No longer working for D0','','7/27/1999','jonckhee'),('Qichun XU','xuq@umich.edu','(630)840-8581','734-763-7209','http://','University of Michigan','TOP','7/29/1999','xuq'),('Yimei HUANG','yimeih@umich.edu','formerly U of Mich','734-763-7209','http://','No longer working for D0','','10/12/2006','jonckheere'),('Dehong ZHANG','dhzhang@fnal.gov','Formerly FNAL','630-266-9402 (pager)','http://','No longer working for D0','ONLINE','10/12/2006','jonckheere'),('Francois TOUZE','touze@lal.in2p3.fr','0033164468410','','http://www.lal.in2p3.fr','Laboratoire de l Accelerateur Lineaire, France','ALGORITHMS','3/22/1999','touze'),('Viktor ABAZOV','abazov@fnal.gov abazov@nu.jinr.ru','840-2989 9-011-7-09621-63707','9-011-7-09621-48951','http://','Joint Institute for Nuclear Research, Russia','MUON','5/8/2001','sabirov'),('Ehren FOSS','','','','http://','No longer working for D0','','5/9/2005','jmbutler'),('Willem VAN LEEUWEN','W.vanLeeuwen@nikhef.nl','+31-20-5925013','+31-299-652499','http://www.nikhef.nl/~a03/','NIKHEF, Netherlands','ALGORITHMS MC SOFTWARE_INFRA','2/13/2001','bosk'),('Tibor KURCA','kurca@in2p3.fr','+33(4)72.44.85.01 (630)840-8740','','http://','Institut de Physique Nucleaire de Lyon, France','','1/15/2003','kurca'),('Petra KRIVKOVA','krivkova@fnal.gov krivkova@hp01.troja.mff.cuni.cz','630-840-8786','00420-2-21912438','http://','Charles Univ, Center for Particle Physics, Prague','','7/2/2005','lokajick'),('Alexander STOLIN','astolin@fnal.gov','(630)840-6435','095-129-9446','http://','IHEP, Beijing, China','','3/31/1999','emay'),('Serguei KOULECHOV','No longer at Dzero','(630)840-6435','095-129-9446','http://','No longer working for D0','','5/11/2005','bezzubov'),('Steven DOULAS','doulas@fnal.gov','Formerly Northeastern','(617)373-3073','http://','No longer working for D0','','10/12/2006','jonckheere'),('Toby BURNETT','tburnett@u.washington.edu','206-543-8963','206-632-8758','http://phys.washington.edu/~burnett','University of Washington','','4/12/1999','burnett'),('Mariano MIRANDA','','','','http://','No longer working for D0','','11/16/2004','gilvan'),('Kathleen JOHNSTON','johnstin@phys.latech.edu','(630)840-8599','(318)257-4358','http://','Louisiana Tech University','','4/14/1999','emay'),('Valentin KOUZNETSOV','vkuznet@fnal.gov','Valentin has left the UCR group','','http://www-d0.fnal.gov/~vkuznet/','University of California, Riverside','SILICON','8/31/2005','heinson'),('Trevor BACON','bacon@fnal.gov','(630)840-2817','44 171 594 7802','http://','','','4/14/1999','emay'),('Juan ESTRADA','estrada@fnal.gov','Formerly FNAL','(630)761-0994','http://','No longer working for D0','','10/12/2006','jonckheere'),('Roberto BROWN','','','','','NONE','','2/16/2001','hagopian'),('Igor CHURIN','inch@fnal.gov churin@nu.jinr.ru','(630)840-4716','(630)840-3474','http://www-d0.fnal.gov/~inch','Joint Institute for Nuclear Research, Russia','MUON','4/26/2005','inch'),('Jim FITZMAURICE','jpfitz@fnal.gov','(630)840-4011','','http://','Fermi National Accelerator Laboratory','','11/10/2000','fuess'),('Amy CIHAK','cihak@fnal.gov','(630)840-8302','formerly Fermilab','http://','No longer working for D0','','4/14/1999','emay'),('Thomas REGAN','regan@fnal.gov','(630)840-5768','','http://','Fermi National Accelerator Laboratory','','4/14/1999','emay'),('Donald GOLOSKIE','goloskie@fnal.gov','(630)840-2277','formerly Fermilab','http://','No longer working for D0','','4/14/1999','emay'),('Angie Greviskes','angie@fnal.gov','(630)840-3581','','http://','No longer working for D0','','1/22/2006','diehl'),('Elizabeth MAY','emay@fnal.gov','630-840-8277','formerly Fermilab','http://','No longer working for D0','','11/15/1999','emay'),('Auguste BESSON','abesson@in2p3.fr','840-2825 +33-4-76-28-40-67','','http://isnwww.in2p3.fr/d0/members/besson/besson.html','No longer working for D0','NEW','11/19/2006','sajot'),('Pavel DEMINE','demine@in2p3.fr','was LPSC, Grenoble','','http://','No longer working for D0','ALGORITHMS NEW','10/12/2006','jonckheere'),('Jean-Claude DURAND','','','','http://','','','4/19/1999','jonckhee'),('Nirmalya PARUA','parua@fnal.gov','6308406792','','http://www-d0.fnal.gov/~parua','Indiana University','CALORIMETER','3/19/2007','jonckheere'),('Adam YURKEWICZ','yurkewic@fnal.gov','Formerly Stony Brook','','http://www-clued0.fnal.gov/~yurkewic','No longer working for D0','CALORIMETER','10/12/2006','jonckheere'),('Leslie GROER','groer@fnal.gov','(630)840-5587','(630) 208-8151','http://home.fnal.gov/~groer','No longer working for D0','CALORIMETER','11/15/2006','tuts'),('Stephanie McDade','mcdade@fnal.gov','630-840-8453','','http://','Fermi National Accelerator Laboratory','','5/19/1999','emay'),('Lance KING','kingl@hep.fsu.edu','630-840-8384','850-644-0020','http://','NONE','','4/29/2002','hagopian'),('Tatiana ZAKORYUCHKINA','zakor@mvxtne.decnet.ihep.su','096-774-3760 (630)840-6435','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Julia EATON','','','','','NONE','','12/20/2001','ferbel'),('Xuan NGUYEN','npxuan@eudoramail.com','Formerly Notre Dame','219-631-8232','http://www.nd.edu/~nxuan','No longer working for D0','FIBER_TRACKER MUON NEW','10/12/2006','jonckheere'),('Beatriz Gonzalez PINEIRO','pineiro@pa.msu.edu','','517-432-1668','http://','NONE','','2/22/2001','linneman'),('Joan MONTESANO','','','','','NONE','','12/20/2001','ferbel'),('Marc BUEHLER','buehler@fnal.gov','630-840-6900','','http://heplab2.phy.uic.edu/physics/Zee_jets.html','University of Virginia','','8/30/2005','buehler'),('Andrew ASKEW','askew@fnal.gov','630-840-8301 (D0Trailers),630-840-8849 (HighRise), 630-898-1824(H)','630-898-1824','http://','Florida State University','FIBER_TRACKER WZ','10/24/2005','askew'),('Viacheslav STOLIN','stolin@fnal.gov','630-840-5640','7-095-129-9542','','Institute for Theoretical & Exp. Physics, Russia','MUON','5/10/2005','safronov'),('Joshua KALK','kalk@pa.msu.edu','630 840-2829','formerly Mich State','http://www.pa.msu.edu/~kalk/cgi/welcome.cgi','No longer working for D0','CALORIMETER TRIGGER','1/8/2007','jonckheere'),('Adrian VALDEZ','valdez@fnal.gov','630-840-6603','formerly Fermilab','http://','No longer working for D0','ONLINE','7/26/1999','valdez'),('Lidija ZIVKOVIC','lidiaz@fnal.gov lidiaz@nevis.columbia.edu','#4269','','http://','Columbia University','ALGORITHMS CALORIMETER NEW','8/7/2006','lidiaz'),('Gregory GRAHAM','ggraham@fnal.gov','','formerly Fermilab','','No longer working for D0','','5/12/2005','hadley'),('Suen HOU','suen@fnal.gov','630-840-8268 734-764-4437','','http://www-d0.fnal.gov/~suen','University of Michigan','PRESHOWER SILICON','1/19/2000','suen'),('Jundong HUANG','juhuang@indiana.edu','Formerly Indiana','','http://','No longer working for D0','','10/12/2006','jonckheere'),('ILLINGWORTH, Robert','illingwo@fnal.gov','630-840-2350','','http://www-d0.fnal.gov/~illingwo/','Fermi National Accelerator Laboratory','','11/7/2002','illingwo'),('Zhong-Min WANG','zwang@fnal.gov zwang@sbhep.physics.sunysb.edu','630-840-5298','','http://','State University of New York, Stony Brook','MC WZ','4/4/2000','zwang'),('Trevor DECKER','decker@nhn.ou.edu','405-942-2722 630-840-3724','','http://','No longer working for D0','','5/27/2005','gut'),('Konstantinos PAPAGEORGIOU','papageo@fnal.gov','(630) 840-2139 (312) 996-5909','(630) 778 0 744','http://www-d0.fnal.gov/~papageo/home.html','NONE','','7/16/2002','gjdavies'),('Gregory UHRHAN','uhrhan@fnal.gov','630-840-2332','formerly Fermilab','http://','No longer working for D0','','7/27/1999','jonckhee'),('Brent ANDERSON','banderso@fnal.gov brent.anderson@valpo.edu','630-840-8453','formerly Fermilab','http://','No longer working for D0','','7/27/1999','jonckhee'),('Drew WILSON','dwilson@fnal.gov','573-441-9094 630-840-8885','','http://','','','7/27/1999','jonckhee'),('Georgiy ALKHAZOV','alkhazov@fnal.gov alk@pnpi.spb.ru','(630)840-4319 +7(813-71)46582','','http://hepd.pnpi.spb.ru/hepd/structure/people/alkhazov_ru.html','Petersburg Nuclear Physics Institute, Russia','MUON','5/12/2005','loboden'),('Kwame BOWIE','bowie@fnal.gov','(630)840-6499','','http://','','','7/27/1999','jonckhee'),('Sergio NOVAES','novaes@fnal.gov','+55-11-3177-9002 +55-11-8115-2100','+55-11-3288-5556','http://www.ift.unesp.br/users/novaes/','Universidade Estadual Paulista, Brazil','','11/30/2004','novaes'),('Pierre BONAMY','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Hai HUANG','hhuang@fnal.gov huanghai@bu.edu','formerly Boston U','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Michiel VOGELVANG','','','','','No longer working for D0','','5/12/2005','pdejong'),('Sergey ZVYAGINTSEV','zvyagint@fnal.gov','(630)840-8570','','http://','Institute for High Energy Physics, Russia','MUON','5/11/2005','bezzubov'),('John PARSONS','parsons@nevis.columbia.edu','914-591-2820','','http://www.nevis.columbia.edu/~parsons/','Columbia University','','2/18/2001','parsons'),('Jamieson OLSEN','jamieson@fnal.gov','x2779','(630) 400-4001','http://home.fnal.gov/~jamieson','Fermi National Accelerator Laboratory','FIBER_TRACKER TRIGGER','3/31/2006','jamieson'),('Juan Carlos SANABRIA','','','','','','','6/9/2001','gomez'),('Alfonso RODRIGUEZ','rodriguez@sist.fnal.gov','505-645-3489 630-840-3851','','http://','','','7/27/1999','jonckhee'),('BACON, Trevor','bacon@fnal.gov t.bacon@ic.ac.uk','44 171 594 7802 5701','','http://','Imperial College, London','','8/9/1999','thatcher'),('David TANNER','tanner@fnal.gov David.Tanner@cern.ch','(630)840-8612 44-1524-593058','','http://','','','7/27/1999','jonckhee'),('Sung-Yong YOON','','','','','NONE','','12/20/2001','ferbel'),('Bernie ROY','royb@fnal.gov','630-840-4595 305-271-3382','','http://','','','7/27/1999','jonckhee'),('Daniel OLIS','dolis@fnal.gov','630-840-6475','formerly Fermilab','http://','No longer working for D0','','8/6/1999','emay'),('Nicholas HODSON','hodson@fnal.gov hodson@albert.physics.neu.edu','617-373-3375 630-840-4922','','http://','No longer working for D0','','5/9/2005','darien'),('BEUSELINCK, Raymond','beuselin@fnal.gov r.beuselinck@imperial.ac.uk','+44-20-7594-7809 5701','','http://','Imperial College, London','','5/10/2005','beuselin'),('Kevin BLACK','kmblack@buphy.bu.edu','formerly Boston U','','http://budoe.bu.edu/~kmblack','No longer working for D0','SILICON TOP TRIGGER','10/12/2006','jonckheere'),('Sergey KORJENEVSKI','skorj@fnal.gov','630-840-3370','','http://','University of Rochester','','1/30/2004','jonckheere'),('Bing ZHOU','bzhou@fnal.gov bzhou@umich.edu','734)763-7209 (630)840-8581','','http://','University of Michigan','','7/27/1999','jonckhee'),('Frederic DELIOT','frederic.deliot@cea.fr','(630)840-6830 33-1-69-08-66-28','','http://www-clued0.fnal.gov/~deliot/','DAPNIA/SPP, SACLAY, France','MUON TOP','9/19/2007','deliot'),('Edward PASCUZZI','pascuzzi@panix.com','631-759-7202','','http://','State University of New York, Stony Brook','','9/28/2000','dean'),('Sylvain NEGRONI','negroni@cppm.in2p3.fr','011-33-4.91.82.72.33 (630)840-6447','','http://','NONE','CALORIMETER MC NEW','2/13/2001','enagy'),('Shaohua FU','shfu@fnal.gov','x8757','','http://','Fermi National Accelerator Laboratory','','12/13/2005','shfu'),('Huaming WANG','wanghm@fnal.gov','','','http://','NONE','','9/26/2002','buchholz'),('Carlos AVILA','cavila@uniandes.edu.co avila@fnal.gov','[57-1]332-4500 (630)840-5199','','http://wwwprof.uniandes.edu.co/~cavila/','Universidad de Los Andes, Colombia','QCD','6/12/2001','gomez'),('Geoff SAVAGE','savage@fnal.gov','6554','630.718.1286','http://www-d0.fnal.gov/~savage','Fermi National Accelerator Laboratory','ONLINE','10/1/1999','savage'),('Alex KOUBAROVSKI','alex_k@fnal.gov','630-840-6827','formerly Moscow State','http://','No longer working for D0','ALGORITHMS','4/11/2007','jonckheere'),('Andrey SHCHUKIN','schukin@fnal.gov','(630) 840-8570 (630) 840-2775','','http://','Institute for High Energy Physics, Russia','MUON NEW','11/16/2006','schukin'),(' Roy RAY','first name is misspelled','','','http://','unknown','','1/21/2006','diehl'),('Kirsten MOORE','kmoore@pa.msu.edu','840-8751','','http://','NONE','','2/22/2001','linneman'),('doe','','','','http://','','','10/6/1999','angie'),('Frederic MACHEFERT','Frederic.Machefert@in2p3.fr','','(33) 1 60 11 86 99','http://','NONE','','10/30/2000','bassler'),('Aliaksei KHAKHLOU','khokhlov@fnal.gov','630-840-6435','375-172-262-193','http://','NONE','','10/8/1999','emay'),('David EVANS','evansde@fnal.gov','','','http://','No longer working for D0','B_PHYSICS','5/10/2005','bertram'),('Machefert FREDERIC','','','','http://','NONE','','10/30/2000','bassler'),('Eric SMITH','esmith@fnal.gov','630-840-3724','405-325-3961','http://','No longer working for D0','','5/27/2005','gut'),('Christopher LESHER','clesher@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','6/19/2001','jonckheere'),('Sabine CREPE-RENAUDIN','crepe@in2p3.fr','630-840-6447','33-4-76-28-40-67','http://','LPSC, Grenoble FR','','4/21/2003','jonckheere'),('Jon ANDERSON','jpander@fnal.gov','630-840-4595','formerly Fermilab','http://','No longer working for D0','','2/7/2000','jpander'),('Charles GLINIEWICZ','ceglin@fnal.gov','630-840-2573','617-373-2958','http://','No longer working for D0','','5/9/2005','darien'),('Eduardo GREGORES','gregores@fnal.gov eduardo.gregores@ufabc.edu.br','+55(11)4437-1600#439','+55(11)9247-9580','http://www-d0.fnal.gov/~gregores','Universidade Federal do ABC, Brazil','QCD SOFTWARE_INFRA','1/23/2008','gregores'),('William SHEPHARD','Shephard.1@nd.edu wshephard@sbcglobal.net','Formerly Notre Dame','','http://www.physics.nd.edu/Faculty/shephard.html','No longer working for D0','B_PHYSICS FIBER_TRACKER','10/12/2006','jonckheere'),('Yuriy MEREKOV','merekov@fnal.gov','630-840-2989','9-011-7-09621-62698','http://','Joint Institute for Nuclear Research, Russia','B_PHYSICS','5/8/2001','sabirov'),('Sergey UZUNYAN','serguei@fnal.gov serguei@nicadd.niu.edu','D0:630-840-8314 NIU:815-7536485','815-7545675','http://www-d0.fnal.gov/~serguei','Northern Illinois University','ALGORITHMS MC MUON NEW ONLINE TRIGGER','1/12/2004','serguei'),('Vologin ALEXANDER','','','','','No longer working for D0','','5/25/2005','dudko'),('Alexander KUPCO','kupco@fnal.gov','630-840-8786','420-2-26662692','http://','Institute of Physics of Czech Academy of Sciences','','10/11/1999','emay'),('Vadim PETOUKHOV','petukhov@fnal.gov','','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Michel JAFFRE','jaffre@lal.in2p3.fr','','','http://','Laboratoire de l Accelerateur Lineaire, France','','10/12/1999','jonckhee'),('Melissa RIDEL','','','','','No longer working for D0','','5/10/2005','jaffre'),('Chafik DRIOUICHI','chafik@fnal.gov','','','http://','No longer working for D0','','5/10/2005','asman'),('John Doe','','','','http://','','','10/15/1999','angie'),('Liye LI','liye@niuhep.physics.niu.edu','630-840-8701 815-753-6268','847-748-7652','http://','NONE','SOFTWARE_INFRA','2/13/2001','hedin'),('Jean RENARDY','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Phalla NONG','nong@pa.msu.edu','','','','NONE','','7/23/2002','linneman'),('Eric HAZEN','hazen@bu.edu','630-840-3148','617-353-4117','http://','Boston University','','11/2/1999','emay'),('Mossadek TALBY','talby@cppm.in2p3.fr','33-491827631, 630-840-6447','formerly CPPM (Marseille)','http://','No longer working for D0','','1/8/2007','jonckheere'),('Ben JERVIS','','','','','NONE','','7/16/2002','gjdavies'),('William DAVIS','wld@fnal.gov','630-840-6607','','http://','Fermi National Accelerator Laboratory','','11/12/1999','emay'),('Douglas FONG','fong@nscpmail.umd.edu fong@physics.umd.edu','','301-405-6068','http://','No longer working for D0','','6/1/2005','sceno'),('Lisa BJORNDAL','lisab@fnal.gov','840-3939 631-632-8095','','http://','State University of New York, Stony Brook','','4/27/2000','jrhoades'),('Reiner HAUSER','rhauser@fnal.gov','','','','Michigan State University','','5/5/2008','linneman'),('Drew MEYER','ddmeyer@attglobal.net (was UTA)','817-535-4604','','http://','No longer working for D0','','3/8/2005','jonckheere'),('Dugan ONEIL','dugan_oneil@sfu.ca','604-291-5623','604-467-6323','http://www-d0.fnal.gov/~oneil','Simon Fraser University, Canada','SILICON TOP TRIGGER','7/3/2003','oneil'),('Reginald PERRY','perry@eng.fsu.edu','850-644-3509','','http://','No longer working for D0','','5/10/2005','hagopian'),('Panyam NAGARAJ','pn@tifr.res.in','91-22-215-2971','','http://','Tata Institute of Fundamental Research, India','','1/7/2000','jrhoades'),('Avtandyl KHARCHILAVA','avto@fnal.gov','1-716-645-2017 ext 245','','http://www-d0.fnal.gov/~avto','State University of New York, Buffalo','FIBER_TRACKER MC NEW SOFTWARE_INFRA TOP','10/31/2005','avto'),('John RHA','rhaj0@netzero.net','John has left the UCR group','562-402-7733','http://','University of California, Riverside','SILICON','12/7/2000','heinson'),('Thomas PAUL','tom.paul@hepmail.physics.neu.edu','','','http://','No longer working for D0','','5/9/2005','darien'),('Nicholas KIRSCH','nkirsch@fnal.gov','x4911 617-373-2648','','http://','No longer working for D0','','5/9/2005','darien'),('Maruf MUMINOV','nemat@fnal.gov','(630)840-4802','','http://needmore.physics.indiana.edu/~iuhep/','No longer working for D0','','5/11/2005','zieminsk'),('Barbro ASMAN','bar@physto.se','+46-8-55 37 8665','','http://www.physto.se','Stockholm University','','5/10/2005','asman'),('Frederic VILLENEUVE-SEGUIER','villeneu@fnal.gov','','formerly Imperial College','http://','No longer working for D0','','2/14/2008','jonckheere'),('Aleksei SHISHKIN','shishkin@fnal.gov shishkin@nu.jinr.ru','840-2989 9-011-7-09621-63103','formerly JINR, RU','http://','No longer working for D0','MUON','4/11/2007','jonckheere'),('William KAHL','bkahl@d0mino.fnal.gov kahl@suhep.phy.syr.edu','840-2406 785-532-1644','','http://','No longer working for D0','','5/27/2005','bolton'),('Flera RIZATDINOVA','flera@d0mino.fnal.gov rizatdinova@cern.ch','840-2196 785-532-1664','','http://','Oklahoma State University','SILICON','11/17/2006','bolton'),('Joergen SJOELIN','sjolin@physto.se','840-2817 46-8-674-70-92','','http://','No longer working for D0','','5/10/2005','asman'),('Alexander KHANOV','khanov@fnal.gov','(405)744-2404 (630)840-2314','','http://www-d0.fnal.gov/~khanov','Oklahoma State University','','1/9/2008','khanov'),('Kishma MEYERS','','','','','NONE','','2/16/2001','hagopian'),('Shweta LOLAGE','','','','http://','NONE','','2/16/2001','hagopian'),('Lorenzo FELIGIONI','lorenzo@buphy.bu.edu','formerly Boston U','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Alan STONE','alstone@fnal.gov','Formerly U Illinois Chicago','(630) 892-0878','http://home.fnal.gov/~alstone','No longer working for D0','TRIGGER','10/12/2006','jonckheere'),('Steve MUANZA','muanza@in2p3.fr muanza@fnal.gov','+33472448270 (+16308406448)','','http://www-clued0.fnal.gov/~muanza','Institut de Physique Nucleaire de Lyon, France','MC NEW','11/16/2006','muanza'),('Chawn HARLOW','harlow@physics.arizona.edu','520-621-6818','','http://','University of Arizona','','2/2/2000','jrhoades'),('Rafael SA','','','','http://','No longer working for D0','','11/16/2004','gilvan'),('Antonio PEREIRA','','','','','No longer working for D0','','11/16/2004','gilvan'),('Raphael MACHADO','','','','http://','No longer working for D0','','11/16/2004','gilvan'),('Natalia OSIPOVA','','','','','unknown','','5/16/2005','loboden'),('Ron RAY','rray@fnal.gov','840-8090','','http://','Fermi National Accelerator Laboratory','','2/3/2000','jrhoades'),('Juan Fernando LIZARAZO','','','','','','','6/9/2001','gomez'),('Sarosh FATAKIA','','formerly Boston U','','http://www-d0.fnal.gov/~sfatakia','No longer working for D0','','10/12/2006','jonckheere'),('Michael EADS','eads@fnal.gov','8884','','http://www-clued0.fnal.gov/~eads/index.html','University of Nebraska','','8/13/2005','eads'),('Jamil EGDEMIR','jamil@grad.physics.sunysb.edu','','','http://','NONE','','4/24/2003','jonckheere'),('Bryan SMITH','brsmith@fnal.gov','840-2406','Rice University','http://www-d0.fnal.gov/~brsmith','No longer working for D0','','1/21/2008','corcoran'),('William LEE','billl@fnal.gov','840-2490','','http://','Fermi National Accelerator Laboratory','','1/14/2007','hedin'),('Igor PROKHOROV','','','','http://nusun.jinr.ru/~dzero/','No longer working for D0','','5/11/2005','yuyatsu'),('Samuel SILVERSTEIN','silver@physto.se','840-2817 (+468)164667','','http://www.physto.se/~silver','No longer working for D0','NEW SILICON','5/10/2005','asman'),('Victor MINOR','vminor@fnal.gov','840-2332','','http://','Fermi National Accelerator Laboratory','','2/22/2000','jrhoades'),('Ryan HOOPER','hooper@fnal.gov','Formerly Brown','','http://','No longer working for D0','FIBER_TRACKER NEW','10/12/2006','jonckheere'),('Zunjian KE','kezj@fnal.gov kezj@mail.ihep.ac.cn','840-8339 86-10-68236069','','http://','IHEP, Beijing, China','','3/7/2001','jonckheere'),('Qi AN','anqi@nevis.columbia.edu','914-519-2857','','http://','No longer working for D0','','11/15/2006','tuts'),('Gavin DAVIES','g.j.davies@ic.ac.uk','840-2491 44-207-594-7806','','http://','Imperial College, London','','12/18/2001','gjdavies'),('Victor RYKALIN','rykalin@fnal.gov','840-8630 70967713026','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Xiaonan LI','lixn@fnal.gov','840-8339 86-10-68236046','','http://','IHEP, Beijing, China','','2/24/2000','jrhoades'),('Carley MARTINS','cmartins@fnal.gov','840-2454','','http://','Universidade do Estado do Rio de Janeiro, Brazil','','3/1/2000','jrhoades'),('Patrice LEBRUN','lebrun@in2p3.fr','','','http://','Institut de Physique Nucleaire de Lyon, France','CALORIMETER MC','7/28/2003','plebrun'),('Mikhail BATOURITSKIY','batur@fnal.gov batur@inp.minsk.by','840-2989 9-011-7-09621-63103','','http://','Joint Institute for Nuclear Research, Russia','MUON','5/9/2001','sabirov'),('Thang NGUYEN','thang@fnal.gov','840-8453','','http://','Fermi National Accelerator Laboratory','','3/3/2000','jrhoades'),('Burair KOTHARI','burair@fnal.gov','Formerly Columbia','','http://','No longer working for D0','B_PHYSICS MC MUON NEW SOFTWARE_INFRA TRIGGER','10/12/2006','jonckheere'),('James FAST','jfast@fnal.gov','Formerly FNAL','','http://','No longer working for D0','B_PHYSICS SILICON','10/12/2006','jonckheere'),('Chunhuih HAN','chunhuih@fnal.gov','x8268 734-763-7526','','http://www-d0.fnal.gov/~chunhuih','University of Michigan','PRESHOWER TOP','3/7/2002','chunhuih'),('Harald FOX','fox@fnal.gov','840-6623','+49 761 203 5933','http://','Physikalisches Institut, Universitaet Freiburg','SILICON WZ','5/19/2006','fox'),('Vivek JAIN','vj@bnl.gov','Formerly BNL','','http://','No longer working for D0','B_PHYSICS MC TRIGGER','10/12/2006','jonckheere'),('Kyoung Hee KIM','khkim@fnal.gov','840-6912','','http://','Korea University, Korea','SILICON','1/11/2002','khkim'),('Benjamin MIKESH','mikesh@fnal.gov','','','http://','No longer working for D0','','5/9/2005','partridge'),('Yi DAI','ydai@fnal.gov','','','http://','NONE','SILICON','8/1/2001','twyatt'),('Randal LEITER','RLeiter@fnal.gov','840-3889 617-338-8922','','http://','No longer working for D0','','5/9/2005','darien'),('Liujin PEI','lpei@fnal.gov','840-4333','formerly Fermilab','http://','No longer working for D0','','3/29/2000','jrhoades'),('Kareem KAZKAZ','kareem@fnal.gov','206-543-6886 (Univ of Washington)','','http://','No longer working for D0','','5/11/2005','jonckheere'),('Igor CHVABOVITCH','chvabovi@fnal.gov','840-3633 011-7-096-7-713776','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Freya BLEKMAN','fblekman@fnal.gov','2177 when at FNAL','formerly Imperial College','http://www-d0.fnal.gov/~fblekman','No longer working for D0','DAQ_ELECTRONICS SILICON TOP','2/14/2008','jonckheere'),('Sean MATTINGLY','sean@fnal.gov','Formerly Brown','','http://www-d0.fnal.gov/~sean','No longer working for D0','','10/12/2006','jonckheere'),('Supriya JAIN','sjain@fnal.gov','630-840-3724','(630) 462 0296','http://','University of Oklahoma','TOP','5/27/2005','sjain'),('Dimitrios SIDERIS','sideris@fnal.gov','840-5701 44-20-7-5947815','','http://','NONE','','7/16/2002','gjdavies'),('Dorothee SCHAILE',' dorothee.schaile@physik.uni-muenchen.de','0049-89-2891-4148','','http://www.etp.physik.uni-muenchen.de/','LMU Munich','','1/26/2004','schailed'),('Marian ZDRAZIL','zdrazil@fnal.gov','840-6750 631-632-8296','Formerly Stony Brook','http://','No longer working for D0','SILICON','3/27/2008','jonckheere'),('Muriel PIVK','pivk@in2p3.fr','(33)1.44.27.23.28 (630)840-8740','','http://','NONE','CALORIMETER TOP','2/6/2001','bassler'),('Thomas NUNNEMANN','nunne@fnal.gov','+1-630-840-3696','+49-89-289-14156','http://','LMU Munich','ALGORITHMS FIBER_TRACKER MC NEW SOFTWARE_INFRA TOP WZ','3/12/2006','nunne'),('Yildirim MUTAF','mutafy@fnal.gov','Formerly Stony Brook','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Michael HILDRETH','mikeh@fnal.gov','(630) 840-2853 (FNAL), (574) 631-6458 (ND)','','http://www-d0.fnal.gov/~mikeh','University of Notre Dame','ALGORITHMS FIBER_TRACKER NEW TOP WZ','2/2/2007','josta'),('Donald ARNOLD','arnold@fnal.gov','840-2871','formerly Fermilab','http://','No longer working for D0','','5/1/2000','jrhoades'),('Terry WYATT','twyatt@fnal.gov','630-840-4242, +44-161-275-4173','+44-161-427-2340','http://www.hep.man.ac.uk/~wyatt/','University of Manchester, United Kingdom','','8/22/2007','twyatt'),('Graham WILSON','graham@fnal.gov graham@heplx2.phsx.ku.edu','785-864-5231 630-840-6836 630-840-5261','785-841-5714','http://','University of Kansas','FIBER_TRACKER NEW TRIGGER','5/23/2005','graham'),('Gavin HESKETH','ghesketh@fnal.gov','630 840 2573','','http://www-d0.fnal.gov/~ghesketh','Northeastern University','ALGORITHMS MUON QCD SILICON TOP WZ','9/22/2003','ghesketh'),('Lionel PEYRICHOUX','peyricli@fnal.gov','840-8598 817-272-2706','','http://','University of Texas, Arlington','','5/10/2000','jrhoades'),('Syed AHMED','naeema@fnal.gov','','','','No longer working for D0','DAQ_ELECTRONICS MC ONLINE QCD SILICON','2/18/2008','sijbrand'),('Thomas TREFZGER','Trefzger@mail.uni-mainz.de','+1-630-840-6902','Institute of Physics, Mainz','http://','No longer working for D0','CALORIMETER MUON','1/8/2008','tapprogg'),('Fei LU','nemat@fnal.gov','(630)840-4802','','http://needmore.physics.indiana.edu/~iuhep/','No longer working for D0','','5/11/2005','zieminsk'),('Iouri KHARJEEV','kharzh@fnal.gov','840-6435 7-09621-62121','','http://','Joint Institute for Nuclear Research, Russia','','10/2/2000','jonckhee'),('Robert GROUP','group@hep.fsu.edu','644-1492','','http://','NONE','','4/29/2002','hagopian'),('Atilla GONENC','','','','','NONE','','2/16/2001','hagopian'),('Jose Lazoflores','laflores@fnal.gov','Formerly Florida State','','http://www-d0.fnal.gov/~laflores/','No longer working for D0','FIBER_TRACKER NEW PRESHOWER','10/12/2006','jonckheere'),('Yuri LEBEDEV','ylebedev@hep.fsu.edu','','','http://','NONE','','4/29/2002','hagopian'),('Burnham STOKES','stokes@hep.fsu.edu','850-644-3776','','http://','NONE','','4/29/2002','hagopian'),('Frederick BALAGADDE','bala@fnal.gov','840-8318','','http://','NONE','','7/12/2000','jrhoades'),('Sinjini SENGUPTA','ssinjini@fnal.gov','Formerly Florida State','','http://','No longer working for D0','SILICON WZ','10/12/2006','jonckheere'),('Kavin Modi','modik@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','5/26/2000','jonckhee'),('William RAY','wray@rice.edu','(713)348 4703','Rice University','http://','No longer working for D0','','1/21/2008','corcoran'),('Alison NDULUTE','ndulute@fnal.gov','630-840-6554','formerly Fermilab','http://','No longer working for D0','','5/26/2000','jonckhee'),('Christian Zeitnitz','zeitnitz@physik.uni-wuppertal.de','+49(202)4393088','','http://','Fachbereich Physik, University of Wuppertal','','11/20/2006','wicke'),('Raimund STROHMER','Raimund.Stroehmer@Physik.Uni-Muenchen.DE','At Fermilab: +1 (630) 840 3696 840-3696 In Munich: +49 89 289 14168','','','LMU Munich','ALGORITHMS MUON NEW TRIGGER','4/4/2006','raimund'),('Karishma MEHTA','kmehta@fnal.gov','840-8302','formerly Fermilab','http://','No longer working for D0','','6/2/2000','jrhoades'),('Julie KALK','jtorborg@fnal.gov','840-3383','','http://','Louisiana Tech University','WZ','8/1/2005','jtorborg'),('Vitaliy MIKHAYLOV','','','','http://nusun.jinr.ru/~dzero/','No longer working for D0','','5/11/2005','yuyatsu'),('Wendy WOOD','wendyw@physics.umd.edu','','','','No longer working for D0','','5/12/2005','hadley'),('Morgan LETHUILLIER','morgan@in2p3.fr','840-2831 33-4-72-44-8348','','http://www-d0.fnal.gov/~morganl/','No longer working for D0','','11/16/2006','muanza'),('Jerome SAJOT','jsajot@fnal.gov','840-6447 33-476-284-4067','','http://','No longer working for D0','','11/19/2006','sajot'),('Christopher INNES','bopinnes@fnal.gov','','','http://','NONE','','1/3/2003','jonckheere'),('Moustapha THIOYE','thioye@fnal.gov','840-6792 631-632-8095','','http://','State University of New York, Stony Brook','','6/19/2000','thioye'),('Tulika BOSE','tulika@fnal.gov','401-863-3611','','http://www-d0.fnal.gov/~tulika','Brown University','B_PHYSICS DAQ_ELECTRONICS MUON ONLINE TRIGGER','1/25/2006','tulika'),('Robert McIntosh','rmcintos@fnal.gov','840-8131 815-753-6490','formerly at NIU','http://www-d0.fnal.gov/~rmcintos','No longer working for D0','','11/16/2006','hedin'),('Emily Wu','emilywu@fnal.gov','840-6496 847-987-3693','','http://','NONE','','6/8/2000','jrhoades'),('Ia IASHVILI','iashvili@fnal.gov','1-716-645-2017 ext 194, 1-630-840-8319','',' ','State University of New York, Buffalo','ALGORITHMS MC SILICON TOP WZ','3/7/2007','iashvili'),('Andrew GROVER','grover@hep.brown.edu','','','','No longer working for D0','','5/9/2005','partridge'),('Juan DELGADO','','','','','No longer working for D0','','5/12/2005','hadley'),('Nicholas WEYDERT','nweydert@fnal.gov','840-2779 815-827-3382','','http://','NONE','','2/13/2001','hedin'),('Alonso GUTIERREZ','agutie@fnal.gov','','','http://','No longer working for D0','','1/21/2006','diehl'),('Vandana VERMA','verma@fnal.gov','840-8131 815-753-6483','formerly at NIU','http://','No longer working for D0','','11/16/2006','hedin'),('Axel NAUMANN','axel@fnal.gov','','','','Radboud University Nijmegen','','2/18/2008','sijbrand'),('Ivan HEREDIA-DeLaCRUZ','iheredia@fnal.gov','840-4477','','http://www-clued0.fnal.gov/~iheredia','CINVESTAV, Mexico','B_PHYSICS DAQ_ELECTRONICS FIBER_TRACKER','5/11/2008','jjesus'),('John LEE','jlee@fnal.gov','','','','NONE','','7/23/2002','linneman'),('Rob PAULSON','rpaulson@fnal.gov','840-8308','','http://','Fermi National Accelerator Laboratory','','6/14/2000','jrhoades'),('Li ZHOU','zhouli@fnal.gov','840-5587 212-854-8147','','http://','No longer working for D0','','11/15/2006','tuts'),('Eric ESSMAN','epessman@lbl.gov','510-486-7944','','http://','Lawrence Berkeley National Laboratory','','2/23/2001','madaras'),('Usha Gururaja RAO','ushaven@fnal.gov','(630)840-4586','formerly at NIU','http://','No longer working for D0','MUON','11/16/2006','hedin'),('Aaron ODOM','aodom@fnal.gov','840-8594 617-373-2763','','http://','No longer working for D0','','5/9/2005','darien'),('Aneta IORDANOVA','aneta@fnal.gov','840-5404 312-996-5355','','http://hepalpha1.phy.uic.edu/','NONE','','3/20/2003','adams'),('Stephen ANDERSON','nemat@fnal.gov','(630)840-4802','','http://needmore.physics.indiana.edu/~iuhep/','No longer working for D0','','5/11/2005','zieminsk'),('John GARDNER','','Formerly Kansas','','http://','No longer working for D0','PRESHOWER SILICON WZ','10/12/2006','jonckheere'),('Andrew LOBBAN','alobban@alum.mit.edu','840-3370 773-534-6300','formerly Fermilab','http://','No longer working for D0','','6/22/2000','jrhoades'),('Margaret LEWIS','mlewis3@nd.edu','840-2278 559-278-8344','','http://','NONE','','6/22/2000','jrhoades'),('Andrew Alton','dalton@fnal.gov','(605)274-4924','','Augustana College. Visitor with the','University of Michigan','FIBER_TRACKER PRESHOWER QCD WZ','11/10/2006','dalton'),('Dale STENTZ','dstentz@coe.edu','840-4062 515-294-8572','','http://','Iowa State University','','6/27/2000','jrhoades'),('James Derrick CONNER','physconn@fnal.gov','840-6371','formerly Fermilab','http://','No longer working for D0','','6/27/2000','jrhoades'),('Eric CHABANAT','chabanat@fnal.gov','840-6448 33-4-72-43-27-50','','http://','NONE','','6/27/2000','jrhoades'),('Sridhar SANKA','sanka @cse.uta.edu','840-2691 817-272-2811','','http://','University of Texas, Arlington','','6/28/2000','jrhoades'),('Michele PETTENI','mpetteni@fnal.gov','x2491','formerly Imperial College','http://','No longer working for D0','','2/14/2008','jonckheere'),('Jesus Garro','egarro@fnal.gov','840-8630 7296000','formerly Fermilab','http://','No longer working for D0','','6/30/2000','jrhoades'),('Jonas STRANDBERG','jonas@fnal.gov','5400','3342','http://','University of Michigan','NEW SILICON TOP','9/20/2006','jonas'),('Maciej PRZYBYCIEN','maciej@lotus.phys.nwu.edu','840-8454','','http://','No longer working for D0','','5/12/2005','buchholz'),('Sherry TOWERS','stowers@purdue.edu','Formerly Stony Brook','','http://www.towersconsulting.com','No longer working for D0','ALGORITHMS B_PHYSICS SILICON TOP','10/12/2006','jonckheere'),('Florian BEAUDETTE','','','','','No longer working for D0','','5/10/2005','jaffre'),('Denis ZOTKIN','zotkin_j@monet.npi.msu.su','840-8630 7-095-939-3064','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Michael Clements','clements@fnal.gov','','Formerly Brown','http://','No longer working for D0','','3/19/2008','jonckheere'),('Michael CHERRY','beast@fnal.gov','840-6476','','http://','Fermi National Accelerator Laboratory','','7/18/2000','jrhoades'),('Alexandr KLIMENKO','akk@fnal.gov','(630) 840-8570','formerly IHEP Protvino','http://','No longer working for D0','','3/19/2007','jonckheere'),('Hans WILLUTZKI','willutzk@fnal.gov','840-3983 631-344-3737','','http://','No longer working for D0','','11/16/2006','serban'),('Diana BONHAM','diana@fnal.gov','840-6299','formerly Fermilab','http://','No longer working for D0','','7/20/2000','jrhoades'),('Joe BOYD','boyd@fnal.gov','(630)840-8275','','http://www-d0.fnal.gov/~boyd/','Fermi National Accelerator Laboratory','','5/22/2001','jonckheere'),('Melanie LE DU','mledu@fnal.gov','840-3565 517-353-1677','','http://','NONE','','2/22/2001','linneman'),('Alexandre ZABI','','','','','No longer working for D0','','11/15/2006','jaffre'),('Jojy VARGHESE','jojyv@hotmail.com','840-2691 817-272-2811','','http://','University of Texas, Arlington','','7/26/2000','jrhoades'),('Biao HUANG','bug@fnal.gov','x8630','','http://www-d0.fnal.gov/~bug/','No longer working for D0','SILICON','10/12/2006','jonckheere'),('Jean-Paul MARTIN','','','','','No longer working for D0','','5/16/2008','muanza'),('Ruchika NAYYAR','ruchika@fnal.gov rnayyar@physics.du.ac.in','','','http://','Delhi University, Delhi, India','','5/19/2008','jonckheere'),('Monika LYNKER','mlynker@iusb.edu','630-840-5223','formerly Notre Dame','http://www.iusb.edu/~mlynker','No longer working for D0','FIBER_TRACKER','4/11/2007','jonckheere'),('Lauri Loebel CARPENTER','lauri@fnal.gov','(630)840-2214','','http://home.fnal.gov/~lauri','','','7/27/2000','jonckhee'),('Breese QUINN','quinn@phy.olemiss.edu','(662)915-1398','','http://','University of Mississippi','SILICON TOP','7/25/2005','quinn'),('Jonathan HAYS','haysjm@fnal.gov','+44 (0) 20 759 41551','','http://','Imperial College, London','ALGORITHMS CALORIMETER TRIGGER WZ','11/28/2006','haysjm'),('Andrei Nomerotski','nomerot@fnal.gov','x8795','formerly Fermilab','http://d0server1.fnal.gov/users/nomerot/www/Welcome.html','No longer working for D0','B_PHYSICS NEW SILICON','12/9/2003','nomerot'),('Andriy ZATSERKLYANIY','zatserkl@fnal.gov','x8323','formerly NIU','http://','No longer working for D0','','4/11/2007','jonckheere'),('Pierre-Antoine DELSART','delsart@ipnl.in2p3.fr','33-4-72-44-85-01','','http://','No longer working for D0','','11/16/2006','muanza'),('Jerome COSS','cossj@fnal.gov jerome.coss@gmail.com','33-4-72-44-84-43','Formerly IPN Lyon','http://','No longer working for D0','','5/30/2007','jonckheere'),('Laurent MIRABITO','mirabito@in2p3.fr','840-2931 003-347-243-1481','','http://','NONE','','12/20/2002','plebrun'),('Christos LEONIDOPOULOS','christos@fnal.gov','Formerly Columbia','','http://www.nevis.columbia.edu/~christos','No longer working for D0','B_PHYSICS TRIGGER','10/12/2006','jonckheere'),('Tomasz WLODEK','tomw@bnl.gov','','','http://','NONE','','10/8/2002','jonckheere'),('Kostas PAPAGEORGIOU','papageo@fnal.gov','','','http://www-d0.fnal.gov/~papageo/home.html','NONE','B_PHYSICS FIBER_TRACKER TOP TRIGGER','3/20/2003','adams'),('Reinhard SCHWIENHORST','schwier@fnal.gov','MSU: 517-884-5566 D0: 630-840-6811','','http://www-d0.fnal.gov/~schwier/','Michigan State University','TOP TRIGGER','5/5/2008','linneman'),('Vladimir KORABLEV','korablev@fnal.gov','(630)840-8570','formerly IHEP, Protvino','http://','No longer working for D0','MUON','3/19/2007','jonckheere'),('Eckhard VON TOERNE','evt@fnal.gov','(785)-532-1638 532-1644','','http://www.phys.ksu.edu/personal/evt/','Physikalisches Institut, Bonn University','B_PHYSICS NEW SILICON TOP','12/14/2005','evt'),('Georg MIKUS','gumikus@umich.edu','840-3702 734-761-5043','','http://','University of Michigan','','9/26/2000','jrhoades'),('Eduard DE LA CRUZ-BURELO','eduard@fnal.gov','x4477','','http://www-d0.fnal.gov/~eduard/','University of Michigan','B_PHYSICS','6/6/2005','eduard'),('Andrey POBEDINSKIY','pobed@fnal.gov','840-8570 0967-713-793','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Ricardo RAMIREZ-GOMEZ','ramirezg@fnal.gov','(630)840-5199','','http://d0server1.fnal.gov/users/ramirezg/www/index.html','Universidad de Los Andes, Colombia','DAQ_ELECTRONICS','12/18/2002','ramirezg'),('Peter JOHNSON','pkj@fnal.gov','','','http://','Fermi National Accelerator Laboratory','','10/3/2000','jonckhee'),('Victor BODYAGIN','deceased - 18 Dec 2003','(630)-840-2691 011-7-095-939-5197','(630)-840-3475','http://','No longer working for D0','','2/22/2005','jonckheere'),('Tim CHRISTIANSEN','Tim.Christiansen@fnal.gov','+1-630-840-3696 (home: +1-630-753-0487)','+1-630-753-0487','http://www-d0.fnal.gov/~tim/','LMU Munich','MUON NEW TRIGGER','2/18/2002','tim'),('Raymond GELHAUS','rgelhaus@fnal.gov','Formerly UC Riverside','','http://www-d0.fnal.gov/~rgelhaus','No longer working for D0','ALGORITHMS B_PHYSICS','10/12/2006','jonckheere'),('Claude GUYOT','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Mark HOHLFELD','hohlfeld@fnal.gov','','','http://','Physikalisches Institut, Bonn University','','4/3/2007','mundal'),('Karl JAKOBS','karl.jakobs@uni-freiburg.de','840-8716 +49 - 761 -203-5713','+49 - 7661 - 907114','http://','Physikalisches Institut, Universitaet Freiburg','CALORIMETER NEW','10/3/2003','jakobs'),('Stephanie BAFFIONI','baffioni@cppm.in2p3.fr','840-6829 00-33-491-82-76-40','','http://','NONE','','4/13/2004','jonckheere'),('Karel SMOLEK','smolek@fnal.gov','Formerly Czech Technical University','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Michel MUR','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Roman OTEC','otec@fnal.gov','840-8786 420-2-231-1333','','http://','Czech Technical University','','3/9/2004','otec'),('Xin ZHAO','','','','','No longer working for D0','','3/1/2006','baringer'),('Gilles FARRACHE','farrache@cc.in2p3.fr','33-4-78-93-08-80','','http://','NONE','','10/20/2000','jrhoades'),('Karel SOUSTRUZNIK','soustruz@fnal.gov','(630)-840-8786','','http://www-d0.fnal.gov/~soustruz','Charles Univ, Center for Particle Physics, Prague','TOP','7/2/2005','lokajick'),('Alexandre LOBODENKO','loboden@fnal.gov','(630)840-2462 +7(813-71)46843','','http://','Petersburg Nuclear Physics Institute, Russia','MUON WZ','5/16/2005','loboden'),('Brian DAVIES','daviesbg@fnal.gov b.g.davies@lancaster.ac.uk','Formerly Lancaster, UK','','http://','No longer working for D0','ALGORITHMS','10/12/2006','jonckheere'),('Benjamin BECKETT','beckettb@fnal.gov','840-4595 44-1524-593-278','Formerly Lancaster','http://','No longer working for D0','','5/13/2008','jonckheere'),('Manas MAITY','','','','http://','No longer working for D0','','5/10/2005','jmbutler'),('Stanislav NEMECEK','nemecek@fnal.gov','840-8786 420-2-6605-2675','','http://','Institute of Physics of Czech Academy of Sciences','','11/3/2000','jrhoades'),('Dmitriy BANDOURINE','bandurin@fnal.gov','(630)840-2196','(630)717-5530','','Kansas State University','ALGORITHMS MUON QCD','3/21/2008','bandurin'),('Smain KERMICHE','kermiche@cppm.in2p3.fr','(630)-840-6829 (Muon lab) +33.4.9182.7247 (CPPM)','','http://','Centre de Physique des Particules de Marseille','','2/14/2001','kermiche'),('Shawn KWANG','','','','','No longer working for D0','','5/12/2005','hadley'),('Junjie ZHU','junjie@fnal.gov','630-840-4097','','http://','State University of New York, Stony Brook','WZ','11/11/2004','junjie'),('Lev UVAROV','uvarov@fnal.gov','(630)840-5072 (630)840-2982 +7(813-71)46859','','http://red.pnpi.spb.ru/~uvarov','Petersburg Nuclear Physics Institute, Russia','MUON','5/12/2005','loboden'),('Sergey POROKHOVOI','porokh@fnal.gov','840-2989 9-011-7-09621-67563','','http://','Joint Institute for Nuclear Research, Russia','MUON','5/8/2001','sabirov'),('David MEDER','David.Meder@uni-mainz.de meder@fnal.gov','Formerly Mainz','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Benjamin WILLIAMS','ben@fnal.gov','840-8118 318-257-4358','','http://','Louisiana Tech University','','11/17/2000','jrhoades'),('Selahattin GUZEL','sguzel@gguol.ggu.edu','559-325-8604','','http://','NONE','','11/17/2000','jrhoades'),('Karen PETROSYAN','karen@fnal.gov','840-8581 318-257-3092','','http://','Louisiana Tech University','','11/22/2000','jrhoades'),('Emmanuelle PEREZ','eperez@hep.saclay.cea.fr','Formerly DAPNIA/SPP Saclay','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Joseph STEELE','steele@fnal.gov','(630)840-6912','','http://','Louisiana Tech University','','8/17/2004','steele'),('Simon DEAN','sdean@fnal.gov','8321','','http://www.hep.man.ac.uk/~sdean','No longer working for D0','SILICON','11/15/2006','twyatt'),('Marco CARRASCO','carrasco@fnal.gov','x4477','630-428-3169','http://','CINVESTAV, Mexico','','4/24/2007','jonckheere'),('Arnaud BALANDRAS','balandra@ipnl.in2p3.fr','','','http://','NONE','','12/20/2002','plebrun'),('Qun YU','yuqun@fnal.gov','840-8581 318-257-3092','','http://','Louisiana Tech University','','1/5/2001','jrhoades'),('Ian BLACKLER','imcb@fnal.gov','Formerly Imperial College London','','http://www-d0.fnal.gov/~imcb','No longer working for D0','','10/12/2006','jonckheere'),('Laurent SCHOEFFEL','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('William SELIGMAN','seligman@nevis.columbia.edu','914-591-2823','','http://','Columbia University','','1/8/2001','jrhoades'),('Pierrick MICOUT','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Anatoly EVDOKIMOV','evdokim@fnal.gov','(630)8408449','(630)2296796','http://www-selex.fnal.gov/~evdokimo/','Brookhaven National Laboratory','ALGORITHMS PRESHOWER','3/16/2008','evdokim'),('Stephen BURKE','','','','http://','No longer working for D0','','5/10/2005','bertram'),('Vladimir LIPAEV','lipaev@fnal.gov','(630)840-8570','','http://','Institute for High Energy Physics, Russia','MUON','5/11/2005','bezzubov'),('Jeffrey TEMPLE','jtemple@physics.arizona.edu','x8340','Formerly Arizona','http://www-clued0.fnal.gov/~jtemple','No longer working for D0','MUON','1/22/2008','jonckheere'),('Joseph KOZMINSKI','kozminski@pa.msu.edu jkozmins@fnal.gov','630-840-3983','','http://','Northern Illinois University','','10/12/2006','jonckheere'),('Joshua DYER','dyer@pa.msu.edu','','','http://a-s.clayton.edu/jdyer/default.html','Michigan State University','','5/5/2008','linneman'),('Stefan SOLDNER-REMBOLD','soldner@fnal.gov','630-840-8321 (Outback)/ +44-161-275-4151 (Manchester)','+44-1457-810406','http://www.hep.man.ac.uk/','University of Manchester, United Kingdom','MUON NEW','5/10/2005','soldner'),('Vladimir SAMOILENKO','samoylen@fnal.gov','840-8570 7-0967-713-776','','http://','No longer working for D0','','5/11/2005','bezzubov'),('Michael BUSSMANN','michael.bussmann@physik.uni-muenchen.de','49-89-2891-4133','','http://','LMU Munich','','1/25/2001','jrhoades'),('Rachel KNAPP','rhk13@columbia.edu','212-854-3366','','http://','No longer working for D0','','11/15/2006','tuts'),('Marco VERZOCCHI','mverzocc@fnal.gov','(630) 840-3289','(773) 680-2574','http://www-d0.fnal.gov/~mverzocc/Welcome.html','Fermi National Accelerator Laboratory','','7/27/2005','mverzocc'),('Bruno THOORIS','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Johannes ELMSHEUSER','elmsheus@fnal.gov','Formerly Munich','','http://www-clued0.fnal.gov/~elmsheus','No longer working for D0','MUON','10/12/2006','jonckheere'),('Jiri BYSTRICKY','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','formerly Saclay','http://besancon.home.cern.ch/besancon/','No longer working for D0','','7/12/2007','jonckheere'),('Arvindh LALAM','lalam@fnal.gov','','','http://','No longer working for D0','','5/10/2005','hagopian'),('Boris TUCHMING','tuchming@fnal.gov','+33 1 69 08 97 78 (Saclay) +1 630 840 6830 (Fnal)','','http://','DAPNIA/SPP, SACLAY, France','','7/18/2006','tuchming'),('Marie-Claude COUSINOU','cousinou@cppm.in2p3.fr','630-840-6829 33 4 91827268','','http://','Centre de Physique des Particules de Marseille','CALORIMETER MC NEW WZ','2/13/2001','cousinou'),('Pilippe CROS','cros@lal.in2p3.fr cros@fnal.gov','630 840 2931','','http://','NONE','CALORIMETER DAQ_ELECTRONICS FIBER_TRACKER PRESHOWER TRIGGER','2/19/2003','jonckheere'),('Vaclav VRBA','vrba@fzu.cz','','','http://','Institute of Physics of Czech Academy of Sciences','','2/6/2001','jonckheere'),('Paul DE JONG','Paul.de.Jong@nikhef.nl','Formerly NIKHEF','','http://www.nikhef.nl','No longer working for D0','','10/12/2006','jonckheere'),('Joseph Boon KUAH','kuahbk@umich.edu','840-8674 734-936-6688','','http://www-personal.engin.umich.edu/~kuahbk','University of Michigan','QCD TOP TRIGGER','2/13/2001','jonckheere'),('Sten HELLMAN','sten@physto.se','+46 8 16 46 28','','http://www.physto.se/~sten/','No longer working for D0','','5/10/2005','asman'),('Thomas HEBBEKER','hebbeker@physik.rwth-aachen.de','','+49 241 80 27331','http://www.physik.rwth-aachen.de/~hebbeker/','RWTH Aachen, III. Phys. Inst. A, Aachen, Germany','MUON NEW WZ','9/9/2001','hebbeker'),('Sung Woo YOUN','swyoun@fnal.gov, swyoun@northwestern.edu','630-840-2415','','http://','Northwestern University','B_PHYSICS SILICON','1/31/2006','swyoun'),('Tim BOLTON','tbolton@ksu.edu bolton@phys.ksu.edu','785-532-1664','','http://','Kansas State University','B_PHYSICS NEW QCD SILICON WZ','5/27/2005','bolton'),('Martin GRUNEWALD','mwg@fnal.gov','3948','','http://www-d0.fnal.gov/~mwg','University College Dublin','ALGORITHMS MUON SOFTWARE_INFRA TOP TRIGGER WZ','5/10/2005','mwg'),('Xiaojian ZHANG','zhangxj@mail.nhn.ou.edu','630-840-3724','630-778-9962','http://www.nhn.ou.edu/~zhangxj','No longer working for D0','B_PHYSICS','5/27/2005','gut'),('Terrence TOOLE','toole@fnal.gov','(630)840-2321','','http://www-clued0.fnal.gov/~toole','University of Maryland','TRIGGER','3/11/2002','toole'),('Bram A.P. VAN RENS','bram@lotus.phys.northwestern.edu','','','http://','NONE','','9/26/2002','buchholz'),('Bradley KAY','britboy@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','3/15/2001','jonckheere'),('Eugene GALYAEV','egalyaev@fnal.gov egalyaev@nd.edu justmail@mail.ru','(630)840-4369','formerly Notre Dame','http://','No longer working for D0','B_PHYSICS FIBER_TRACKER QCD','1/24/2008','jonckheere'),('Seong Jong HONG','sjhong@kodel.korea.ac.kr','','','http://','Korea University, Korea','ALGORITHMS NEW TOP','4/25/2001','shong'),('Jerome NAPPA','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Douglas CHAPIN','dpchapin@fnal.gov','Formerly Brown','','http://','No longer working for D0','DAQ_ELECTRONICS QCD','10/12/2006','jonckheere'),('Jyothsna RANI','jyothsna@fnal.gov','Formerly Tata','(630)840-4236','http://www-clued0.fnal.gov/~jyothsna','No longer working for D0','ALGORITHMS MC','10/12/2006','jonckheere'),('Eric MYERS','myers@fnal.gov','734-647-5463 630-840-3702','','http://www.umich.edu/~myers/','University of Michigan','PRESHOWER SOFTWARE_INFRA','9/11/2001','myers'),('Lukas PHAF','','','','','No longer working for D0','TOP','5/12/2005','pdejong'),('Rodney WALKER','rodney.walker@ic.ac.uk','','','http://','Imperial College, London','SOFTWARE_INFRA','4/19/2001','walker'),('Christina SKOWRONSKI','christys@fnal.gov','','','http://','No longer working for D0','','5/9/2005','partridge'),('Yi JIANG','yijiang@fnal.gov','630-840-5701(office), 630-393-2110(Home)','UMich then USTC','http://','No longer working for D0','','5/31/2006','jonckheere'),('Yury POGORELOV','ypogorel@fnal.gov','','','http://','University of Notre Dame','','4/20/2001','jonckheere'),('Anna LIPNIACKA','','','','','No longer working for D0','MC NEW SILICON','5/10/2005','asman'),('Todd Adams','tadams@fnal.gov','850-644-7159 630-840-8384','','http://www.hep.fsu.edu/~tadams/','Florida State University','MUON NEW','9/13/2001','tadams'),('Bernard LAVIGNE','lavigne@fnal.gov','','','http://','Laboratoire de l Accelerateur Lineaire, France','','4/30/2001','jonckheere'),('Victor KORESHEV','koreshev@fnal.gov','(630)840-8570','','http://','Institute for High Energy Physics, Russia','MUON','5/11/2005','bezzubov'),('Graziano MASSARO','massaro@fnal.gov','','','http://','NIKHEF, Netherlands','','5/1/2001','jonckheere'),('Andre SOPCZAK','sopczak@fnal.gov','','','http://','Lancaster University, United Kingdom','','5/1/2001','jonckheere'),('Kirsten GOLDMANN','goldmann@fnal.gov','(630)-840-5247','','Was Wuppertal','No longer working for D0','TOP','4/6/2005','jonckheere'),('Arnulf QUADT','quadt@fnal.gov','+1-630-840-2336','','http://www.cern.ch/~quadt','Physikalisches Institut, Bonn University','MUON SILICON TOP WZ','5/10/2005','quadt'),('Antoine KOUCHNER','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Klaus HAMACHER','hamacher@fnal.gov','formerly Wuppertal','','http://','No longer working for D0','','10/10/2006','jonckheere'),('Alexandre DYCHKANT','dyshkant@fnal.gov','','','http://','Northern Illinois University','','5/4/2001','jonckheere'),('Prolay Kumar MAL','prolay@fnal.gov','(630)-840-2522','','http://','University of Washington','MUON TOP','2/11/2008','jonckheere'),('Jahred ADELMAN','jahred@fnal.gov','','','http://','No longer working for D0','','5/9/2005','partridge'),('Kyle STEVENSON','stevenkj@fnal.gov','Formerly Indiana','','http://www-d0.fnal.gov/~stevenkj/home.html','No longer working for D0','FIBER_TRACKER TRIGGER','10/12/2006','jonckheere'),('Avdhesh CHANDRA','avdhesh@fnal.gov','630-840-8596','630-840-3579','http://','University of California, Riverside','B_PHYSICS SILICON','2/23/2006','avdhesh'),('Seong SHIM','wing@fnal.gov','','','http://','Iowa State University','','5/15/2001','jonckheere'),('Daniel BLOCH','bloch@in2p3.fr','+33-3-88-10-62-62','','http://','IPHC Strasbourg, France','','5/16/2001','bloch'),('Thomas PLAGGE','tplagge@fnal.gov tplagge@iastate.edu','6088','(319)230-6744 (cell)','http://www.public.iastate.edu/~tplagge','Iowa State University','','5/24/2001','tplagge'),('Nguyen Mong GIAO','nmgiao@fnal.gov nmgiao@hcm.vnn.vn','630-840-5438 848-897-1069','Formerly HoChiMinhCity','http://','No longer working for D0','','12/14/2006','jonckheere'),('Francois CHARLES','fcharles@fnal.gov','','deceased - formerly IPHC Strasbourg','http://','No longer working for D0','','6/27/2007','jonckheere'),('Denis GELE','gele@fnal.gov','','','http://','IPHC Strasbourg, France','','5/17/2001','jonckheere'),('Isabelle RIPP-BAUDOT','ripp@in2p3.fr','33.3.88.10.63.75','','','IPHC Strasbourg, France','','5/21/2001','ripp'),('Walter GEIST','geist@fnal.gov','x6845','','http://','IPHC Strasbourg, France','','2/5/2007','sonya'),('Abdenour LOUNIS','abl@fnal.gov','Formerly Strasbourg','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Bawo DAIBO','daibo@fnal.gov','(646)408-8894','','http://','No longer working for D0','','11/15/2006','tuts'),('Rama CALAGA','rcalaga@fnal.gov','','','http://','State University of New York, Stony Brook','','5/22/2001','jonckheere'),('Gary MILES','','','','http://','No longer working for D0','','3/1/2006','baringer'),('Markus Klaus Warsinsky','warsinsk@physik.uni-bonn.de','','','','No longer working for D0','','5/10/2005','quadt'),('Trang HOANG','trangh@fnal.gov','8384, 8301','','http://','Florida State University','CALORIMETER WZ','5/25/2006','wahl'),('Shaun DIGGS','diggs@fnal.gov','','','http://','Fermi National Accelerator Laboratory','','5/25/2001','jonckheere'),('Seth-Emil BARTEL','sethemil@fnal.gov','630/840-4062','847/882-0838','http://','Iowa State University','','5/30/2001','sethemil'),('Osazonamen IGBINOSUN','osazonam@fnal.gov','','','','NONE','','12/20/2001','ferbel'),('Huishi DONG','hdong@fnal.gov','630-840-5546','630-836-0109','http://www-d0.fnal.gov/~hdong','State University of New York, Stony Brook','','7/24/2002','hdong'),('Jason WENNERBERG','jasonw@fnal.gov','','','http://','No longer working for D0','','11/16/2006','adams'),('Markus KLUTE','klute@fnal.gov','5045','(630) -','http://www-clued0.fnal.gov/~klute','No longer working for D0','MUON SILICON TOP','5/10/2005','quadt'),('Yann COADOU','yann@sfu.ca yann@fnal.gov','+1.604-291 3051','formerly Simon Fraser','http://','No longer working for D0','ALGORITHMS TOP TRIGGER','4/11/2007','jonckheere'),('Fred NELSON','fnelson@fnal.gov','','University of Kansas','http://','No longer working for D0','','1/8/2008','baringer'),('Ryan WIERZBICKI','fizzmaj@fnal.gov','','','http://','NONE','','7/19/2002','hedin'),('Michelle RESCHKE','mreschke@fnal.gov','(630) 840 8454','','http://www-d0.fnal.gov/~mreschke/mainExaminePage.html','Brown University','','10/27/2005','mreschke'),('Jacob BARANDES','jabaran@fnal.gov','','','http://','No longer working for D0','','11/15/2006','tuts'),('Han DO','dhan@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','6/7/2001','jonckheere'),('Yannick ARNOUD','arnoud@in2p3.fr','','+33 4 76 28 41 54','http://arnoud.home.cern.ch/arnoud/','LPSC, Grenoble FR','NEW','8/7/2004','arnoud'),('Marie LOPEZ DEL PUERTO','mlpuerto@fnal.gov','','','http://','Fermi National Accelerator Laboratory','','6/11/2001','jonckheere'),('Serge SUSHKOV','sushkov@fnal.gov','','','http://','No longer working for D0','','5/15/2005','hebbeker'),('Cassandra FALLSCHEER','cfallsch@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','6/22/2001','jonckheere'),('Norbert WERMES','wermes@uni-bonn.de','+49-228-73-3533','','http://hep1.physik.uni-bonn.de','Physikalisches Institut, Bonn University','','11/16/2006','wermes'),('Michael KOBEL','kobel@physik.uni-bonn.de','','','','No longer working for D0','','5/10/2005','quadt'),('Alan GLEUE','agleue@fnal.gov','','','http://','No longer working for D0','','3/1/2006','baringer'),('Brian GLEIM','gleim@fnal.gov','','','http://','California State University, Fresno','','6/19/2001','jonckheere'),('Yury SHCHEGLOV','scheglov@fnal.gov scheglov@pnpi.spb.ru','(630) 840-5072, (630) 840-6562, +7 (81371) 46908','','http://dbserv.pnpi.spb.ru/~mishelev/raredecays/scheglov','Petersburg Nuclear Physics Institute, Russia','B_PHYSICS MUON','12/27/2007','scheglov'),('Samuele SANGIORGIO','samuele@fnal.gov','','','http://','Fermi National Accelerator Laboratory','','6/21/2001','jonckheere'),('DeLynn BETTENCOURT','delynn@fnal.gov','','209-634-8273','http://','California State University, Fresno','','6/21/2001','delynn'),('Wenli FAN','nemat@fnal.gov','(630)840-4802','','http://needmore.physics.indiana.edu/~iuhep/','No longer working for D0','','5/11/2005','zieminsk'),('Isaac HALL','ihall@fnal.gov','(630)840-2780','','','Michigan State University','B_PHYSICS TOP TRIGGER','5/17/2007','ihall'),('Adebayo OLOWOYEYE','bayo@fnal.gov','','','http://','Indiana University','','6/27/2001','jonckheere'),('Benjamin WIGGINS','bwiggins@fnal.gov','8485','4917','http://','No longer working for D0','','5/9/2005','darien'),('Ulla BLUMENSCHEIN','blumen@fnal.gov','Formerly Frieburg','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Leonard CHRISTOFEK','leonard@fnal.gov','','630-896-1205','http://www-clued0.fnal.gov/~leonard','Brown University','SILICON TOP TRIGGER','8/28/2006','leonard'),('Tord EKELOF','Tord.Ekelof@tsl.uu.se','','','http://','Uppsala University','','7/10/2001','jonckheere'),('John GAEBLER','jgaebler@fnal.gov','','Rice University','http://','No longer working for D0','','1/21/2008','corcoran'),('Chris JOZWIAK','jozwiak@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','7/10/2001','jonckheere'),('Martin WEGNER','wegner@fnal.gov','5439','(630) 897-7430','http://','No longer working for D0','MUON NEW TRIGGER','5/15/2005','hebbeker'),('Carsten NOEDING','noeding@fnal.gov','Formerly Frieburg','++49 6131 39-24384','http://www.uni-mainz.de/~noedc000','No longer working for D0','TRIGGER','10/12/2006','jonckheere'),('Gennady BORISOV','bgv@fnal.gov','3914','','http://','Lancaster University, United Kingdom','','1/14/2002','bgv'),('Markus WOBISCH','wobisch@fnal.gov','x2344','formerly FNAL','http://www-d0.fnal.gov/~wobisch','Louisiana Tech University','MUON TOP','4/11/2007','jonckheere'),('Brian COX','coxb@hep.man.ac.uk','Formerly Manchester UK','','http://www.hep.man.ac.uk/~coxb/home.html','No longer working for D0','','10/12/2006','jonckheere'),('Makoto TOMOTO','tomoto@fnal.gov','Formerly FNAL','','http://','No longer working for D0','FIBER_TRACKER','10/12/2006','jonckheere'),('Meta BINDER','meta@fnal.gov','Formerly Munich','','http://www-clued0.fnal.gov/~meta/','No longer working for D0','MUON NEW','10/12/2006','jonckheere'),('David LEICHTMAN','code@fnal.gov','206-221-6273 (Univ of Washington)','206-853-7639','http://','No longer working for D0','','5/11/2005','jonckheere'),('Dane SKOW','dane@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','8/16/2001','jonckheere'),('Vivian ODELL','odell@fnal.gov','3172','formerly FNAL','http://home.fnal.gov/~odell','No longer working for D0','','10/9/2007','jonckheere'),('Jeremy WADE','','','','http://','No longer working for D0','','3/1/2006','baringer'),('Sara STRANDBERG','lager@fnal.gov','5400','','http://www.physto.se/~sara','Stockholm University','SILICON TOP','7/13/2006','lager'),('Ming YAN','yanm@fnal.gov','630-840-2321','','http://www.wam.umd.edu/~yanm/','University of Maryland','','8/5/2002','yanm'),('Peter MATTIG','mattig@fnal.gov','','','http://','Fachbereich Physik, University of Wuppertal','','8/17/2001','jonckheere'),('Anil KUMAR','akumar@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','8/21/2001','jonckheere'),('Christian SCHMITT','schmittc@fnal.gov','formerly Wuppertal','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Torsten HARENBERG','harenber@fnal.gov','+49 202 439 3521','','http://','No longer working for D0','','1/9/2008','mattig'),('Christophe CLEMENT','clement@fnal.gov','(work:) +1(630)840-5400 (home:) (630)840-3342','Formerly Stockholm Univ','http://www-clued0.fnal.gov/~clement','No longer working for D0','ALGORITHMS MUON SILICON TOP','7/9/2007','jonckheere'),('Chung Khim LAE','laeck@fnal.gov','(301)405-6058','','http://','NONE','','11/21/2001','jonckheere'),('Marumi KADO','','','','','No longer working for D0','','1/28/2005','madaras'),('Fermin REYGADAS','fermin@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','8/31/2001','jonckheere'),('Hendrik BARTKO','hbartko@fnal.gov','','','http://','No longer working for D0','SILICON','11/16/2006','adams'),('Robert ZITOUN','zitoun@fnal.gov','(630)8402694','(708)7630645','http://','State University of New York, Stony Brook','','9/5/2001','zitoun'),('Sophie TRINCAZ-DUVOID','trincaz@lpnhep.in2p3.fr','+33(1)44.27.73.81 (630)840-8740','Formerly LPNHE, Paris','http://','No longer working for D0','','4/11/2007','jonckheere'),('Zhengguo ZHAO','zhengguo@fnal.gov','formerly U of Mich','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Shabnam JABEEN','jabeen@fnal.gov','630 840 4613','','http://www-d0.fnal.gov/~jabeen/','Boston University','','3/8/2006','jabeen'),('Nadia LAHRICHI','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','formerly Saclay','http://besancon.home.cern.ch/besancon/','No longer working for D0','','7/12/2007','jonckheere'),('Alexis COTHENET','cothenet@fnal.gov','','formerly CPPM (Marseille)','http://','No longer working for D0','','3/25/2008','jonckheere'),('Denis CALVET','calvet@fnal.gov','','','http://','DAPNIA/SPP, SACLAY, France','','9/11/2001','jonckheere'),('Paul COLAS','pluquet@cea.fr','(630)840-6448 33-1-6908-6626','','http://besancon.home.cern.ch/besancon/','No longer working for D0','','5/11/2005','besancon'),('Bernard ANDRIEU','andrieu@in2p3.fr','+33(1)44.27.23.21 (630)840-8740','','http://','LPNHE, Universites Paris VI and VII, France','','9/17/2002','bassler'),('Patrice VERDIER','verdier@ipnl.in2p3.fr pverdier@fnal.gov','+33-4-72448501 FNALx6852','','http://','Institut de Physique Nucleaire de Lyon, France','','5/10/2005','jaffre'),('Sergey BURDIN','burdin@fnal.gov','x4062','formerly FNAL','http://','Lancaster University, United Kingdom','B_PHYSICS SILICON','4/11/2007','jonckheere'),('Karim ERRAHMANE','errahman@fnal.gov','','','http://','No longer working for D0','','11/19/2006','sajot'),('Alex KULYAVTSEV','aik@fnal.gov','x3946','formerly Fermilab','http://','No longer working for D0','','9/21/2001','aik'),('Ivan CABALLERO','ivcabal@fnal.gov','','','http://','Universidad de Los Andes, Colombia','','9/24/2001','jonckheere'),('Tuan VU ANH','vuanh@fnal.gov vuanh@lal.in2p3.fr','formerly LAL (Fr)','','http://','No longer working for D0','','10/2/2007','jonckheere'),('Jasen HUTCHENS','hutchens@fnal.gov','(Work Study)','','http://','NONE','','10/23/2003','jonckheere'),('Sebastien GREDER','greder@fnal.gov','','','http://','IPHC Strasbourg, France','TOP','2/19/2008','jonckheere'),('Gleb (Erusalimtsev) PANOV','ega@fnal.gov','2989','3298','http://','Joint Institute for Nuclear Research, Russia','MUON','6/17/2002','ega'),('Jaewon PARK','jwpark@fnal.gov','(630) 840 2453','','http://www-d0.fnal.gov/~jwpark','Korea University, Korea','','12/12/2001','jwpark'),('Sehwook Lee','merciful@fnal.gov','630-840-6088','','http://www-clued0.fnal.gov/~merciful, http://enrico-fermi-jr.physics.iastate.edu/~swlee','Iowa State University','ALGORITHMS TOP','11/6/2007','merciful'),('Gustavo Otero y GARZON','gotero@fnal.gov','(630)840-2830','','http://','Fermi National Accelerator Laboratory','SILICON TOP','4/21/2008','jonckheere'),('Kazu HANAGAKI','kazu@fnal.gov','Formerly from Fermilab','','http://','No longer working for D0','','11/27/2006','diehl'),('Bastiaan Warnaar','','','','','No longer working for D0','','5/12/2005','pdejong'),('Karthik GOPALRATNAM','karthik@fnal.gov','','','http://','University of Texas, Arlington','','10/5/2001','jonckheere'),('Jovan MITREVSKI','jmitrevs@fnal.gov','(630) 840-8010','(312) 560-2344','http://','Columbia University','TOP','6/29/2004','jmitrevs'),('Per JONSSON','jonsson@fnal.gov','(630)-840-8388','','http://www-d0.fnal.gov/~jonsson/','Imperial College, London','','3/25/2004','jonsson'),('Gabriella GAUDIO',' ggaudio@u.washington.edu ggaudio@fnal.gov','6690','formerly U of Washington','http://','No longer working for D0','TOP','3/19/2007','jonckheere'),('Markus SCHUMACHER','schumach@fnal.gov','','','','No longer working for D0','','5/10/2005','quadt'),('Tobias GOLLING','TFGolling@lbl.gov','Formerly Bonn','','http://','No longer working for D0','B_PHYSICS CALORIMETER MUON TOP TRIGGER','10/12/2006','jonckheere'),('Gerard SAJOT','sajot@in2p3.fr','33 4 76 28 40 67','','http://www-d0.fnal.gov/~sajot','LPSC, Grenoble FR','ALGORITHMS NEW','4/21/2003','jonckheere'),('Michiel SANDERS','msanders@fnal.gov','(630) 840-8740','','http://','LPNHE, Universites Paris VI and VII, France','','10/10/2006','msanders'),('Susanne KERSTEN','kersten@fnal.gov','','','http://','No longer working for D0','','11/20/2006','wicke'),('Subhendu CHAKRABARTI','subhendu@fnal.gov','x5503 x6830','x4794','http://','DAPNIA/SPP, SACLAY, France','TOP','3/3/2008','subhendu'),('Antony ANTONY','','','','','No longer working for D0','','5/12/2005','pdejong'),('Girish NATHAN','girish@fnal.gov','713-348-3382','','http://','NONE','','1/8/2003','jonckheere'),('Yevgeniy YEN','yen@fnal.gov','formerly Wuppertal','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Parker WITTMAN','pwittman@fnal.gov','','','http://','Indiana University','','11/7/2001','jonckheere'),('Tamsin EDWARDS','tamsin@fnal.gov','Formerly Manchester UK','','http://www.hep.man.ac.uk/~tamsin','No longer working for D0','','10/12/2006','jonckheere'),('Emily NURSE','nurse@fnal.gov','was Manchester, UK','','http://www.hep.man.ac.uk/~emily/','No longer working for D0','WZ','6/13/2005','jonckheere'),('Martijn MULDERS','mulders@fnal.gov','2351','formerly FNAL','http://','No longer working for D0','MUON TOP TRIGGER WZ','3/19/2007','jonckheere'),('Ngoc Minh TRAN','tmngoc@fnal.gov','Prev: HochiminhCity and NIU','','http://','No longer working for D0','','2/8/2006','jonckheere'),('Christopher BARNES','cbarnes@fnal.gov','Formerly Imperial College London','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Eric THOMAS','ethomas@fnal.gov','','','http://','No longer working for D0','','12/14/2006','jonckheere'),('Diptansu DAS','diptansu@fnal.gov','','formerly Kansas State','http://','No longer working for D0','','5/13/2008','jonckheere'),('Marcia BEGALLI','begalli@fnal.gov','','','http://','Universidade do Estado do Rio de Janeiro, Brazil','','11/21/2001','jonckheere'),('Matthew BOWEN','mbowen@fnal.gov','(Univ of Washington)','','http://','No longer working for D0','','5/11/2005','jonckheere'),('Sudhir MALIK','malik@fnal.gov','','','http://','University of Nebraska','','6/3/2005','malik'),('Amber JENKINS','ajenkins@fnal.gov, amber.jenkins@imperial.ac.uk','Formerly Imperial College London','','http://www.hep.ph.ic.ac.uk/Group/Jenkins.html','No longer working for D0','','10/12/2006','jonckheere'),('Joel PIPER','piperj@fnal.gov','x6904','','http://','Michigan State University','NEW','9/14/2005','linneman'),('Venkatesh KAUSHIK','venkat@fnal.gov','817 272 5700','817 303 5146','http://','University of Texas, Arlington','ALGORITHMS B_PHYSICS D033 MUON SOFTWARE_INFRA WZ','1/6/2005','yu'),('Noah WALLACE','nwallace@fnal.gov','8340','','http://','University of Arizona','MUON','8/12/2002','nwallace'),('David LIU','dtliu@fnal.gov','','','http://','','','12/11/2001','jonckheere'),('Jodi WITTLIN','','','','http://','No longer working for D0','','5/10/2005','jmbutler'),('Pierre LUTZ','Pierre.Lutz@cern.ch','','','http://','DAPNIA/SPP, SACLAY, France','','12/18/2001','jonckheere'),('Jesus HERNANDEZ','vicente@fnal.gov','','','http://','No longer working for D0','','5/27/2005','bolton'),('Yan SONG','ysong@fnal.gov','817-272-2825','','http://page.to/song','University of Texas, Arlington','NEW','12/21/2001','ysong'),('Connie JONES','connie@pas.rochester.edu','(585)275-5306','','http://','University of Rochester','','3/18/2002','ferbel'),('Thei WIJNEN','wijnen@fnal.gov','','','http://','Radboud University Nijmegen','','12/26/2001','jonckheere'),('Jonathan SCHWARTZ','jonathan@fnal.gov jonathan_schwartz@brown.edu','','','http://','No longer working for D0','','5/9/2005','partridge'),('Mansoora SHAMIM','mansoora@fnal.gov','(630)840-2196','','http://','Kansas State University','NEW SILICON','1/20/2004','harderk'),('Mahsana AHSAN','mahsana@fnal.gov','(630)840-2196','','http://','Kansas State University','SILICON WZ','1/20/2004','harderk'),('Frank FIEDLER','ffiedler@fnal.gov','At Fermilab: +1 (630) 840 3696 In Mainz: +49 6131 39 25975','','http://','Institut fuer Physik, Mainz, Germany','','1/8/2008','tapprogg'),('Pedro Luis Manuel Podesta LERMA','podesta@fnal.gov','4477','4327','http://www-clued0.fnal.gov/~podesta','CINVESTAV, Mexico','B_PHYSICS MUON','10/15/2002','podesta'),('Geoffrey WATHEN','wathen@fnal.gov','','','http://','University of Arizona','','1/23/2002','jonckheere'),('Jason G. WEBB','jgwebb@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','1/23/2002','jonckheere'),('Jesse C GRAHAM','jcgraham@fnal.gov jesse_graham@brown.edu','','','http://','No longer working for D0','','5/9/2005','partridge'),('Matthew DOIDGE','msdoidge@fnal.gov','Formerly Lancaster, UK','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Alexander FINCH','finch@fnal.gov','','','http://','Lancaster University, United Kingdom','','2/7/2002','jonckheere'),('Jigang WANG','jigang@fnal.gov','','','http://www.physics.brown.edu/users/students/jigang','No longer working for D0','','5/9/2005','partridge'),('Lisa BERNTZON','berntzon@fnal.gov','Formerly CPP Marseille','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Lars SONNENSCHEIN','sonne@fnal.gov sonne@in2p3.fr','(630)840-8740 +33-1-4427-4794','','http://physics.bu.edu/~sonne http://lpnhe-d0.in2p3.fr/sonne','LPNHE, Universites Paris VI and VII, France','SILICON TOP TRIGGER','5/10/2005','gregorio'),('Nelli POUKHAEVA','nelli@fnal.gov','','','http://','No longer working for D0','','5/27/2005','bolton'),('Nurcan OZTURK','nurcan@fnal.gov','817-2723082','','http://','University of Texas, Arlington','NEW','3/3/2002','nurcan'),('Philipp SCHIEFERDECKER','schiefer@fnal.gov','+1 (630) 840 3696','formerly Munich','http://www.physik.uni-muenchen.de/~schiefer','unknown','TOP','1/8/2007','jonckheere'),('Marjorie CORCORAN','corcoran@fnal.gov corcoran@rice.edu','713-348-6078 630-840-4151','','http://','Rice University','','1/21/2008','corcoran'),('Horst SEVERINI','severini@fnal.gov','(405)325-3961x36359 (630)840-3272 (630)840-3724','(405)360-5272','http://www.nhn.ou.edu/~hs/','University of Oklahoma','','5/27/2005','severini'),('Mathieu AGELOU','agelou@fnal.gov','Formerly DAPNIA/SPP Saclay','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Sandeep Kumar GIRI','skgiri@fnal.gov','','','http://','Iowa State University','','3/20/2002','jonckheere'),('Carlos GARCIA','charly@fnal.gov','8716','formerly Rochester','http://','No longer working for D0','','1/9/2008','jonckheere'),('Terry ERICKSON','terickson@fnal.gov','630-840-4487','','http://','Fermi National Accelerator Laboratory','','8/28/2002','hagopian'),('Colleen YOSHIKAWA','cookie@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','3/26/2002','jonckheere'),('Christopher TULLY','tully@fnal.gov','4205','609 258 1534','http://home.fnal.gov/~tully','Princeton University','CALORIMETER TOP','5/7/2004','tully'),('Maxim ALEXEEV','','','','http://nusun.jinr.ru/~dzero/','No longer working for D0','','5/11/2005','yuyatsu'),('Daniil KIRILLOV','','','','http://nusun.jinr.ru/~dzero/','No longer working for D0','','5/11/2005','yuyatsu'),('George GOLOVANOV','golovang@fnal.gov','','','http://','Joint Institute for Nuclear Research, Russia','','4/11/2002','jonckheere'),('Vsevolod SAVCHENKO','','','','http://nusun.jinr.ru/~dzero/','No longer working for D0','','5/11/2005','yuyatsu'),('Daniel WICKE','wicke@fnal.gov','+1(630)840-5247 +49(202)4392861','','http://home.fnal.gov/~wicke','Fachbereich Physik, University of Wuppertal','MC TOP','11/20/2006','wicke'),('Michael COOKE','mpc@fnal.gov mpc@rice.edu','x4158','630-930-8125','http://','Rice University','FIBER_TRACKER TRIGGER WZ','1/26/2005','mpc'),('C. Joshua WANG','cjwang@fnal.gov cjwang@u.washington.edu','(206) 543-4429','University of Washignton','http://','No longer working for D0','','1/9/2008','lubatti'),('David PINEGAR','pinegar@fnal.gov','(Univ of Washington)','','http://','No longer working for D0','','5/11/2005','jonckheere'),('Venkat Chandrasekaran','venkatc@fnal.gov','','Rice University','http://','No longer working for D0','','1/21/2008','corcoran'),('Cristina GALEA','galea@fnal.gov','2177','','http://','Radboud University Nijmegen','','1/18/2003','galea'),('Elliott CHEU','echeu@fnal.gov','(630)840-8340 (520)621-4274','','http://www.physics.arizona.edu/~elliott','University of Arizona','','4/24/2002','echeu'),('William PONTIUS','wvp2001@columbia.edu','','','http://','No longer working for D0','CALORIMETER','11/15/2006','tuts'),('Jeremiah MANS','jmmans@fnal.gov','','','http://flywheel.princeton.edu/~jmmans/','No longer working for D0','','11/16/2006','sceno'),('Wade FISHER','wfisher@fnal.gov','630-840-8795','','http://','Fermi National Accelerator Laboratory','NEW SOFTWARE_INFRA TOP TRIGGER','12/12/2005','tully'),('Daniel TEYSSIER','teyssier@fnal.gov','','','http://','NONE','','12/20/2002','plebrun'),('Miroslav KOPAL','kopal@fnal.gov','x3272','formerly U of Oklahoma','http://','No longer working for D0','','12/10/2007','jonckheere'),('Daekwang KAU','dkau@fnal.gov','8384','Formerly Florida State','http://','No longer working for D0','','12/21/2007','jonckheere'),('Yurii MARAVIN','maravin@fnal.gov','(785) 317-6151','','http://www.phys.ksu.edu/personal/maravin','Kansas State University','NEW WZ','12/7/2005','maravin'),('Anne-Catherine LE BIHAN','Anne-Catherine.Le.Bihan@cern.ch','Formerly Strasbourg','','','No longer working for D0','','10/18/2006','bloch'),('Sahal YACOOB','sahal@fnal.gov','630-840-8367','847-971-7505','http://','Northwestern University','SILICON WZ','5/17/2005','sahal'),('David W.K. Lam','dlam@fnal.gov','x5223','','http://','University of Notre Dame','ALGORITHMS PRESHOWER TOP WZ','3/16/2006','dlam'),('Suharyo SUMOWIDAGDO','haryo@fnal.gov','(630)-840-8384','','http://www-d0.fnal.gov/~haryo','Florida State University','TOP','4/19/2008','haryo'),('Christian AUTERMANN','auterman@fnal.gov','x5439','Formerly at Aachen','http://www.physik.rwth-aachen.de/~auterman','No longer working for D0','','1/8/2007','jonckheere'),('Joseph MAROTTA','jpmarott@fnal.gov','','','http://','University of Arizona','','5/20/2002','jonckheere'),('Abaz KRYEMADHI','abaz@fnal.gov','Formerly Virginia','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Hong LUO','hongluo@fnal.gov','','','http://','University of Notre Dame','','5/21/2002','jonckheere'),('Derek STROM','dstrom@fnal.gov','8325','','http://','Northwestern University','B_PHYSICS ONLINE SILICON','5/13/2005','buchholz'),('Mariano ZIMMLER','zimmler@fnal.gov','','','http://','Fermi National Accelerator Laboratory','','5/23/2002','jonckheere'),('Dennis G SMOOT','','','','http://hepalpha1.phy.uic.edu/','NONE','','3/20/2003','adams'),('Daniela KAEFER','kaefer@fnal.gov','5439','Formerly at Aachen','http://','No longer working for D0','','12/14/2006','jonckheere'),('Joseph TUGGLE','','','','','unknown','','1/9/2007','demina'),('Lei Wang','leiwang@fnal.gov','630-840-5763','','http://','University of Maryland','','9/15/2004','leiwang'),('Joni JORGENSEN','','','','http://','No longer working for D0','','3/1/2006','baringer'),('Mark KANE','mkane@fnal.gov','','','http://','Iowa State University','','6/4/2002','jonckheere'),('Jan VAN WASEN','janvw@fnal.gov','(Mainz)','','http://','No longer working for D0','','5/11/2005','jonckheere'),('Thomas SCHWIERTZ','schwiet@fnal.gov','(Mainz)','','http://','No longer working for D0','','5/11/2005','jonckheere'),('Fabio DOMINGUEZ','fadomin@fnal.gov','','','http://','Universidad de Los Andes, Colombia','','6/14/2002','jonckheere'),('Borhan TLILI','tellili@in2p3.fr','','','http://','No longer working for D0','CALORIMETER MC NEW','11/16/2006','muanza'),('Robert BRADLEY','rbradley@fnal.gov','','','http://','Princeton University','','6/21/2002','jonckheere'),('Philip PEREA','perea@fnal.gov','Formerly UC Riverside','yeah right!','http://','No longer working for D0','TOP','10/12/2006','jonckheere'),('Jean-Roch VLIMANT','vlimant@lpnhep.in2p3.fr','+33(1)44.27.23.28 (630)840-8740','Formerly LPNHE, Paris','http://www-d0.fnal.gov/~vlimant','No longer working for D0','CALORIMETER TOP','4/11/2007','jonckheere'),('Jake KING','','','','http://','No longer working for D0','','3/1/2006','baringer'),('kalifa DIEME','','','','http://','No longer working for D0','','3/1/2006','baringer'),('Jiri KVITA','kvita@fnal.gov','2139','1-630-962-6077, +420774365167','http://www-clued0.fnal.gov/~kvita/','Charles Univ, Center for Particle Physics, Prague','CALORIMETER TOP','1/23/2008','kvita'),('Petr NOMOKONOV','','','','','No longer working for D0','','5/25/2005','dudko'),('Robert CLARE','robert.clare@ucr.edu clare@fnal.gov','951-827-5335','','http://','University of California, Riverside','SILICON WZ','7/20/2004','hagopian'),('Yuri ACHILLE','yachille@smtp.fnal.gov','301-985-6058','','http://','No longer working for D0','','6/1/2005','sceno'),('Logueswary Pachaiyappan','loggi@fnal.gov','','','http://','unknown','','11/16/2006','hedin'),('Peter Svoisky','psvoisky@fnal.gov','(630) 840-4366','','http://','University of Notre Dame','ALGORITHMS','8/3/2007','abid'),('Zhengyu JIN','fredjin@fnal.gov','','','http://','University of Michigan','','7/9/2002','jonckheere'),('Brian SABBEY','bsabbey@fnal.gov','Univ of Washington','','http://','No longer working for D0','','5/11/2005','jonckheere'),('Stefan ANDERSON','sanderso@fnal.gov','630-840-8513','Formerly Arizona','http://','No longer working for D0','','1/22/2008','jonckheere'),('Brendan CASEY','bcasey@fnal.gov','x5266 cell:(630)621-6610','(630)978-1490','http://','Brown University','','2/12/2007','bcasey'),('Hwi Dong YOO','hdyoo@fnal.gov','5677','','http://www-d0.fnal.gov/~hdyoo','Brown University','','3/7/2008','hdyoo'),('Jean-Pierre FROBERGER','jpfrober@fnal.gov','','','http://','IPHC Strasbourg, France','','8/9/2002','jonckheere'),('Angela BELLAVANCE','bellavan@fnal.gov','Office: x2284; Home: 898-1824','(630) 898-1824','http://www-d0.fnal.gov/~bellavan','Fermi National Accelerator Laboratory','ALGORITHMS SOFTWARE_INFRA TRIGGER WZ','3/19/2007','jonckheere'),('James DEGENHARDT','jdegenha@fnal.gov','8268','(734) 834 1255','http://','University of Michigan','WZ','9/22/2005','jdegenha'),('Guoan HU','ghu@fnal.gov','','','http://','Boston University','','9/10/2002','jonckheere'),('Julien Donini','donini@fnal.gov','','','http://','No longer working for D0','','11/16/2006','muanza'),('Torbjorn MOA','moa@fnal.gov','840-8630 46-8-164-654','Formerly Stockholm Univ','http://','No longer working for D0','','1/22/2008','jonckheere'),('Emmanuel BUSATO','busato@lpnhep.in2p3.fr','+33(1)44.27.23.28 (630)840-8740','Formerly LPNHE, Paris','http://lpnhe-d0.in2p3.fr/busato/','No longer working for D0','ALGORITHMS TOP','4/11/2007','jonckheere'),('Michael FRIEDMAN','mwfriedm@fnal.gov','630-840-2139','Rice University','http://www.owlnet.rice.edu/~mwfriedm/','No longer working for D0','FIBER_TRACKER','1/21/2008','corcoran'),('Thomas STAPELBERG','stapelbg@fnal.gov','','','http://','No longer working for D0','','5/15/2005','hebbeker'),('Bryan GMYREK','gmyrek@fnal.gov','','University of Arizona','http://','No longer working for D0','','1/8/2008','varnes'),('Peter BRYANT','','','','http://','No longer working for D0','','3/1/2006','baringer'),('Jan STARK','stark@fnal.gov','extension 6447','','http://','LPSC, Grenoble FR','CALORIMETER TOP','11/15/2003','stark'),('Patrick SKUBIC','skubic@fnal.gov','405-325-3961','','http://','University of Oklahoma','B_PHYSICS','5/27/2005','skubic'),('Otmar BIEBEL','biebel@fnal.gov','','','http://','LMU Munich','','10/10/2002','jonckheere'),('Chadd BAILEY','cbailey@fnal.gov','','','http://','No longer working for D0','','5/9/2005','darien'),('Fajer JAAFARI','fajer@fnal.gov','','','http://','University of Texas, Arlington','','10/18/2002','jonckheere'),('Jason KASPER','jkasper@fnal.gov','5224','Formerly Boston','http://','No longer working for D0','','10/9/2007','jonckheere'),('Scott RIGGS','riggs@fnal.gov','','','http://','No longer working for D0','','5/10/2005','hagopian'),('Kevin FLANNERY','flannery@fnal.gov','','formerly Fermilab','http://','No longer working for D0','','10/23/2002','jonckheere'),('Jeremy HERR','herrj@fnal.gov','734-647-5462','','http://www-d0.fnal.gov/~herrj/','University of Michigan','ALGORITHMS MUON PRESHOWER SOFTWARE_INFRA','12/18/2002','herrj'),('Brigitte VACHON','vachon@physics.mcgill.ca','x2960, 514-398-6478','formerly McGill','http://','No longer working for D0','TOP TRIGGER','4/17/2008','jonckheere'),('John T. ANDERSON','janderson@fnal.gov','x8885 x6566 x4333','formerly Fermilab','http://d0server1.fnal.gov/janderson/Public_Eng_Notes/default.html','No longer working for D0','FIBER_TRACKER','11/5/2002','jonckheere'),('Carsten MAGASS','magass@fnal.gov magass@physik.rwth-aachen.de','(630) 840 5439 (DAB5) +49 241 80 27316 (RWTH)','Formerly Aachen, GR','http://www.physik.rwth-aachen.de/~magass','No longer working for D0','NEW TRIGGER','1/22/2008','jonckheere'),('Stefan Ask','sask@fnal.gov','','','http://','No longer working for D0','','5/10/2005','asman'),('Mario CAMUYRANO','mario@fnal.gov','3606','Was UIC','http://','No longer working for D0','','5/31/2006','jonckheere'),('Timothy ANDEEN','tandeen@fnal.gov','x8325, cell:(847)471-3180','(847)471-3180','http://','Northwestern University','','6/18/2004','tandeen'),('Ingo TORCHIANI','torchian@fnal.gov','','','http://','Physikalisches Institut, Universitaet Freiburg','','3/18/2003','jakobs'),('Aran GARCIA-BELLIDO','aran@fnal.gov','(630) 840 8701','','http://www-clued0.fnal.gov/~aran/','University of Washington','','5/31/2004','aran'),('Chad JARVIS','cjarvis@fnal.gov','(630) 840-2280','','http://www-clued0.fnal.gov/~cjarvis','University of Maryland','WZ','9/15/2005','cjarvis'),('Yuriy IVANSHIN','','','was JINR, Russia','http://nusun.jinr.ru/~dzero/','No longer working for D0','MUON QCD','5/31/2006','jonckheere'),('Yuan HU','huy@fnal.gov','630-840-5262','','http://','State University of New York, Stony Brook','','11/27/2002','huy'),('Stephan WYNHOFF','wynhoff@fnal.gov','','','http://','Princeton University','','11/27/2002','jonckheere'),('Michal TOMASEK','tomasekm@fnal.gov','','','http://','Institute of Physics of Czech Academy of Sciences','','12/2/2002','jonckheere'),('Kristian HARDER','harderk@fnal.gov','(630)840-5477 (630)840-2196','cell:(630)649-4295','http://www-clued0.fnal.gov/~harderk','Kansas State University','B_PHYSICS SILICON TOP','1/20/2004','harderk'),('Didier VILANOVA','vilanova@fnal.gov','','','http://','DAPNIA/SPP, SACLAY, France','','12/3/2002','jonckheere'),('Marilyn AUDSLEY','audsley@fnal.gov','','','http://','Lancaster University, United Kingdom','','12/10/2002','audsley'),('Tim SCANLON','tim.scanlon@imperial.ac.uk','630 840 2418','','http://','Imperial College, London','','9/10/2004','ts297'),('Pedrame BARGASSA','bargassa@fnal.gov','Fermi 630-840-4151','','http://','Rice University','','1/25/2005','terickson'),('Lydia LOBO','lydia.lobo@imperial.ac.uk','(630) 840 2491','formerly Imperial College','http://','No longer working for D0','','1/8/2007','jonckheere'),('Philip LEWIS','pl297@fnal.gov','','formerly Imperial College','http://','No longer working for D0','','1/8/2007','jonckheere'),('Prashant BHAMIDIPATI','prashant@fnal.gov','','','http://','University of Texas, Arlington','','12/6/2002','jonckheere'),('Aleksander SHERSTNEV','sherstnv@fnal.gov','Moscow State','','http://','No longer working for D0','','5/9/2006','jonckheere'),('Amitabha DAS','adas@fnal.gov','(630)840-2930','','http://','University of Arizona','','8/8/2007','adas'),('Satyanarayana BHEESETTE','bsn@fnal.gov bsn@tifr.res.in','630-840-3590 91-22-2280-4545','630-840-4236','http://www.tifr.res.in/~bsn','Tata Institute of Fundamental Research, India','DAQ_ELECTRONICS MUON SILICON','6/7/2003','bsn'),('Arnd MEYER','meyera@fnal.gov','5439','','http://home.fnal.gov/~meyera','RWTH Aachen, III. Phys. Inst. A, Aachen, Germany','','1/19/2003','meyera'),('Piyali BANERJEE','piyali@fnal.gov','O-3590, H-4236','4236','http://','Tata Institute of Fundamental Research, India','','8/12/2005','piyali'),('Maren VAUPEL','vaupel@fnal.gov','','Formerly Wuppertal','http://','No longer working for D0','','12/21/2007','jonckheere'),('Ana SOLDNER-REMBOLD','soldnera@fnal.gov','','','http://','No longer working for D0','','11/15/2006','twyatt'),('Catherine BISCARAT','biscarat@fnal.gov biscarat@in2p3.fr','(+33) 4 72 44 84 43','Formerly IPN Lyon','http://www.cern.ch/cbiscara/','No longer working for D0','','10/9/2007','jonckheere'),('Peter LOVE','plove@fnal.gov','','+44-1524-593058','','Lancaster University, United Kingdom','','1/9/2003','plove'),('Britta TILLER','leon@fnal.gov','','','http://','LMU Munich','','1/13/2003','jonckheere'),('Michael WEBER','webermi@fnal.gov','(630)840-2139 pager:266-0561','(630) 208 0310','http://','Fermi National Accelerator Laboratory','SILICON TOP','11/20/2003','webermi'),('Sang-Joon LEE','sangjoon@fnal.gov','','Rice University','http://','No longer working for D0','','1/21/2008','corcoran'),('Viatcheslav SHARYY','shary@fnal.gov','+33 1 69 08 25 83','+33 1 64 46 24 89','http://','DAPNIA/SPP, SACLAY, France','CALORIMETER','9/9/2004','shary'),('Mikhail AROV','arov@fnal.gov','','formerly NIU','http://','Louisiana Tech University','','4/11/2007','jonckheere'),('David MAFFEI','dmaffei@fnal.gov','','','http://','No longer working for D0','','5/9/2005','darien'),('Paul TELFORD','ptelford@fnal.gov','Formerly Manchester UK','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Leah WELTY-RIEGER','lwelty@fnal.gov','','','http://','Indiana University','','1/16/2003','jonckheere'),('Jason RIEGER','jrieger@fnal.gov','','','http://','Indiana University','','1/16/2003','jonckheere'),('Luiz Mundim','mundim@fnal.gov','','','http://','Universidade do Estado do Rio de Janeiro, Brazil','','1/16/2003','jonckheere'),('Barry SPURLOCK','spurlock@fnal.gov','','','http://','University of Texas, Arlington','','1/18/2003','jonckheere'),('Vijay MURTHI','murthi@fnal.gov','630-840-3844','817-675-3741','http://omega.uta.edu/~vxm7387','University of Texas, Arlington','','1/21/2003','murthi'),('Parag MHASHILKAR','parag@fnal.gov','','','http://','University of Texas, Arlington','','1/21/2003','jonckheere'),('Susan BURKE','seb@fnal.gov','','Formerly Arizona','http://','No longer working for D0','','1/22/2008','jonckheere'),('Su-Jung PARK','spark@fnal.gov','formerly University of Rochester','','http://','No longer working for D0','','1/10/2008','spark'),('Anya MARAVINA','anya@fnal.gov','','','http://','unknown','','12/12/2005','diehl'),('Jean-Laurent AGRAM','Jean-Laurent.Agram@cern.ch','Formerly Strasbourg','','','No longer working for D0','','10/18/2006','bloch'),('Anne RYAN','amryan@fnal.gov','','','http://','No longer working for D0','','11/15/2006','twyatt'),('Jeong Kwon OH','jkoh@fnal.gov','','','http://','Korea University, Korea','','2/20/2003','jonckheere'),('Tae Jeong KIM','tjkim@fnal.gov','','','http://','Korea University, Korea','','2/20/2003','jonckheere'),('Ralf BERNHARD','ralf@fnal.gov','+1-630-840-4533','','http://wwwhep.physik.uni-freiburg.de/','Physikalisches Institut, Universitaet Freiburg','B_PHYSICS NEW SILICON','10/19/2007','ralf'),('Naomi LEWIN','','','','','No longer working for D0','','5/12/2005','hadley'),('Gwenael LE GORREC','legorrec@fnal.gov legorrec@in2p3.fr','','','http://','No longer working for D0','','11/19/2006','sajot'),('Carsten HENSEL','carsten@fnal.gov','(630)840-6836','Formerly Kansas','http://','No longer working for D0','','1/9/2008','jonckheere'),('Nathalie BLANC','nblanc@fnal.gov','33/ 472448501','','http://','No longer working for D0','','11/16/2006','muanza'),('Maria Elena POL','polme@fnal.gov polme@cbpf.br','55-21-21417253 (CBPF)','','http://','CBPF/LAFEX, Brazil','','10/18/2005','polme'),('Kevin WING','kwing@fnal.gov','','','http://','California State University, Fresno','','3/13/2003','jonckheere'),('Oana BOERIU','oana@fnal.gov','Formerly Notre Dame','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Hyunwoo KIM','hyunwoo@fnal.gov','1-630-840-8382','formerly UTA','http://','No longer working for D0','WZ','12/10/2007','jonckheere'),('Jan SVEC','svecj@fnal.gov','','','http://','Institute of Physics of Czech Academy of Sciences','','3/17/2003','svecj'),('Ivor FLECK','fleck@fnal.gov','Formerly Frieburg','','http://','No longer working for D0','TOP','10/12/2006','jonckheere'),('Matthew WETSTEIN','wetstein@fnal.gov','630-840-5252','','http://','University of Maryland','CALORIMETER WZ','11/21/2005','wetstein'),('Kevin KROENINGER','kroening@mppmu.mpg.de','+49-(0)89-32354-337','','http://','No longer working for D0','TOP','5/10/2005','quadt'),('haijiang GONG','hgong@fnal.gov','','','http://','State University of New York, Stony Brook','','3/21/2003','jonckheere'),('Robert HARRINGTON','harringt@fnal.gov','x8485','formerly Northeastern','http://','No longer working for D0','MUON TOP','3/19/2007','jonckheere'),('Valentin KUZMIN','kuzmin@fnal.gov','X2701','','http://','Moscow State University, Russia','SILICON','10/3/2006','kuzmin'),('Petr HOMOLA','phomola@fnal.gov','','','http://','Czech Technical University','','7/2/2005','lokajick'),('David HOVER','dhover@fnal.gov','','University of Kansas','http://','No longer working for D0','','1/8/2008','baringer'),('Norm BUCHANAN','buchanan@fnal.gov','8075','','http://www-d0.fnal.gov/~buchanan/','Florida State University','','12/10/2003','buchanan'),('Maksym TITOV','mtitov@fnal.gov','','','http://','DAPNIA/SPP, SACLAY, France','','3/19/2007','jonckheere'),('Iacovos (Jack) PILINAS','pilinas@fnal.gov','','','http://','No longer working for D0','','5/9/2005','darien'),('Benoit CLEMENT','ubik@fnal.gov','Formerly Strasbourg','','http://','No longer working for D0','ALGORITHMS TOP','10/12/2006','jonckheere'),('Alan MAGERKURTH','ajm36@fnal.gov','840-5701','','http://','University of Michigan','','12/1/2003','ajm36'),('Marine MICHAUT','mmichaut@fnal.gov mmichaut@cea.fr','5503 (FNAL) - +33 1 69 08 64 24 (Paris)','formerly Dapnia, Saclay','http://','No longer working for D0','','4/11/2007','jonckheere'),('Gabriel REDNER','','','','http://','No longer working for D0','','5/10/2005','jmbutler'),('Glenn LOPEZ','lopezg@fnal.gov','','','http://','University of Michigan','','5/16/2003','jonckheere'),('Brian WICKMAN','bwickman@fnal.gov','','','http://','University of Michigan','','5/16/2003','jonckheere'),('Jorge BENITEZ','benitez@fnal.gov','x6811','','http://','Michigan State University','','9/18/2006','benitez'),('Aws ABDO','abdo@fnal.gov','','','http://','No longer working for D0','','3/1/2005','linneman'),('Rahmi UNALAN','unalan@fnal.gov',' 630 840 8653','','http://','Michigan State University','','11/30/2004','linneman'),('Fenghua DENG','fenghua@fnal.gov','','','http://','No longer working for D0','','5/10/2005','hagopian'),('Rolf Erich BARIE','barie@fnal.gov','','','http://','No longer working for D0','','5/14/2005','buescher'),('Miao JUN','junmiao@fnal.gov','','','http://','No longer working for D0','','12/14/2006','blessing'),('Jan VALENTA','jvalenta@fnal.gov','8786','4898','http://','Institute of Physics of Czech Academy of Sciences','','5/31/2003','jvalenta'),('Timour TEN','t10@fnal.gov','','','http://','No longer working for D0','','11/16/2006','adams'),('Rajwant KAUR','rajwant@fnal.gov rajwant@puhep.res.in','630-840-3164','Formerly Panjab','http://webmail.puhep.res.in','No longer working for D0','TOP','2/19/2008','jonckheere'),('Jyotsna OSTA','josta@fnal.gov, josta@nd.edu','630-840-5223','','http://','University of Notre Dame','','8/29/2006','josta'),('Margaret GEPPERT','','','','http://','No longer working for D0','','5/10/2005','jmbutler'),('Per JOHANSSON','perj@fnal.gov','','','http://','No longer working for D0','','5/10/2005','asman'),('Vernon MILLER','vmiller@fnal.gov vmiller@physics.arizona.edu','520-621-4273','','http://www.u.arizona.edu/~vmiller/','University of Arizona','','6/5/2003','vmiller'),('Jasmine FOSTER','jfoster@fnal.gov','785-532-1644','','http://','No longer working for D0','B_PHYSICS','12/14/2005','bolton'),('Bradley CHASE','bchase@fnal.gov','','Rice University','http://','No longer working for D0','','1/21/2008','corcoran'),('Santiago Gonzalez GAITAN','santiago@fnal.gov','','','http://','Universidad de Los Andes, Colombia','','6/10/2003','jonckheere'),('Andrew LERNER','lerner@fnal.gov','','','http://','No longer working for D0','','6/1/2005','sceno'),('Christie CHEW','','','','','No longer working for D0','','5/12/2005','hadley'),('Jaeson MYERS','','','','http://','No longer working for D0','','3/1/2006','baringer'),('Sweta IYER','','','','','No longer working for D0','','5/12/2005','hadley'),('Vikranth VADDI','vikranth@fnal.gov','785 532 2266','785 770 3169','http://www.cis.ksu.edu/~vikranth','No longer working for D0','D033','12/14/2005','bolton'),('Pieter HOUBEN','phouben@fnal.gov','5034','','http://','NIKHEF, Netherlands','','3/10/2004','phouben'),('Srikanth SANKARAN','srikanth@fnal.gov','','','http://','No longer working for D0','','5/27/2005','bolton'),('Suresh KALMANI','kalmani@fnal.gov','','','http://','Tata Institute of Fundamental Research, India','','6/26/2003','jonckheere'),('Jiamin JIN','jiamin@fnal.gov','','','http://','No longer working for D0','','11/15/2006','tuts'),('Frederic CHANDEZ','fchandez@fnal.gov','','','http://','LPC, Univ Blaise Pascal, Clermont-Ferrand, France','','7/3/2003','jonckheere'),('Michel VETTERLI','vetm@triumf.ca','604-291-5488 604-222-7422','','http://','No longer working for D0','QCD TOP','1/29/2008','oneil'),('James MONK','jmonk@fnal.gov','Formerly Manchester UK','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Pascal GAY','gaypas@fnal.gov','','','http://','LPC, Univ Blaise Pascal, Clermont-Ferrand, France','','7/8/2003','jonckheere'),('Frederique BADAUD','badaud@fnal.gov','','','http://','LPC, Univ Blaise Pascal, Clermont-Ferrand, France','','7/8/2003','jonckheere'),('Philippe GRIS','gris@in2p3.fr pgris@fnal.gov','630-840-6829','','http://','LPC, Univ Blaise Pascal, Clermont-Ferrand, France','ALGORITHMS CALORIMETER NEW PRESHOWER TRIGGER','6/7/2004','pgris'),('Jason STEIN','jstein@fnal.gov','','','http://','No longer working for D0','','11/18/2006','buchholz'),('Arnold POMPOS','pompos@fnal.gov','Formerly Oklahoma','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Marion ERLEBACH','erlebach@fnal.gov','','','http://','LMU Munich','','7/15/2003','jonckheere'),('Mayukh DAS','mayukh@fnal.gov','3383 (was LaTech)','4220','http://','No longer working for D0','ALGORITHMS SILICON TRIGGER','7/12/2006','jonckheere'),('Luis MENDOZA','luismi@fnal.gov','','','http://','Universidad de Los Andes, Colombia','','8/6/2003','jonckheere'),('Jaime BETANCOURT','jabetan@fnal.gov','','','http://','Universidad de Los Andes, Colombia','','8/6/2003','jonckheere'),('Vitaly KHEYFETS','kheyfets@fnal.gov','','University of Kansas','http://','No longer working for D0','','1/8/2008','baringer'),('Carmen Miruna ANASTASOAIE','miruna@fnal.gov','','','http://none','No longer working for D0','SILICON','2/18/2008','sijbrand'),('Ngan MacDONALD','nganmac@fnal.gov','6305790800','','http://www.piocon.com','Fermi National Accelerator Laboratory','','8/7/2003','nganmac'),('Greg GIERING','giering@fnal.gov','','','http://','Louisiana Tech University','','8/7/2003','jonckheere'),('Marc-Andre PLEIER','pleier@fnal.gov','(630)840-8575','','http://','Physikalisches Institut, Bonn University','TOP','10/27/2005','hagopian'),('Meghan ANZELC','meghang@fnal.gov, meghan@lotus.phys.northwestern.edu','x8367','','http://','Northwestern University','B_PHYSICS','6/5/2006','meghang'),('Lotte WILKE','wilke@fnal.gov','','','http://','No longer working for D0','','11/24/2006','hebbeker'),('Sankalp JAIN','sankalp@fnal.gov','','','http://','University of Texas, Arlington','','9/16/2003','jonckheere'),('Aditya NISHANDAR','aditya@fnal.gov','','','http://','University of Texas, Arlington','','9/16/2003','jonckheere'),('Russell NECHES','rneches@fnal.gov','','','http://','No longer working for D0','','5/9/2005','darien'),('Jenny BOHME','bohme@fnal.gov','5247 ++49-202-439-3088','','http://','No longer working for D0','','11/20/2006','wicke'),('Vyacheslav RUD','rud@fnal.gov rud@sinp.msu.ru','Formerly Moscow State','(630) 840-4860','http://www-d0.fnal.gov/~rud','No longer working for D0','TOP','10/12/2006','jonckheere'),('Viacheslav BUNICHEV','bunichev@fnal.gov','','','http://','Moscow State University, Russia','','10/2/2003','jonckheere'),('Venkata EMANI','pramod@fnal.gov','','','http://','Louisiana Tech University','','10/2/2003','jonckheere'),('David JENKINS','djenkins@fnal.gov','','','http://','University of Texas, Arlington','','10/6/2003','jonckheere'),('Thomas GADFORT','tgadfort@nevis.columbia.edu','630-840-8010','(206) 351-4510','http://www-clued0.fnal.gov/~tgadfort','Columbia University','TOP','8/27/2007','tgadfort'),('Jessica LEVEQUE','leveque@fnal.gov','(630) 840-8340','Formerly Arizona','http://www-clued0.fnal.gov/~leveque','No longer working for D0','TOP','1/22/2008','jonckheere'),('Bengt LUND-JENSEN','lund@fnal.gov','','formerly KTH (Sweden)','http://','KTH, Royal Institute of Technology','','1/22/2008','jonckheere'),('Nikola MAKOVEC','makovec@fnal.gov','Formerly LAL, Fr','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Kirti RANJAN','kirti@fnal.gov','off.:630-840-3062, Res(Fermilab Village): 630-840-3449','630-840-3449','http://','Delhi University, Delhi, India','','5/26/2004','kirti'),('Ashish KUMAR','ashishk@fnal.gov','630-840-8319, x 5759','630-840-3449','http://','State University of New York, Buffalo','CALORIMETER NEW SILICON TOP','12/28/2005','ashishk'),('Yu FU','yfu@fnal.gov','','','http://','No longer working for D0','','12/14/2005','bolton'),('Marcus LEWIN','mplewin@fnal.gov','','Formerly Lancaster','http://','No longer working for D0','','1/12/2008','jonckheere'),('Yu-Hsiang LIN','yslin@fnal.gov','','+44-161-2754226','http://www.hep.man.ac.uk/~yslin','No longer working for D0','FIBER_TRACKER WZ','11/15/2006','twyatt'),('Jim LOUDIN','blgjimee@fnal.gov','Rice University','(713) 2692689','http://','No longer working for D0','','1/21/2008','corcoran'),('Oliver KRAFF','kraff@fnal.gov','','','http://','No longer working for D0','','5/15/2005','hebbeker'),('Charles ARMIJO','armijo@fnal.gov','','','http://','University of Arizona','','11/3/2003','jonckheere'),('Pieter VAN DEN BERG','pvdberg@fnal.gov','2177','','http://','NIKHEF, Netherlands','','1/18/2005','pvdberg'),('Kenneth HERNER','kherner@fnal.gov','x-8594','','http://www-clued0.fnal.gov/~kherner','State University of New York, Stony Brook','','7/11/2005','kherner'),('Justace CLUTTER','prophecy@fnal.gov prophecy@corpranet.net','(417)848-2042 (630)840-8133','(417)848-2042','http://','University of Kansas','B_PHYSICS SILICON TOP','8/3/2006','prophecy'),('Aurelien MENDES','mendes@fnal.gov','formerly CPPM (Marseille)','','http://','No longer working for D0','','1/8/2007','jonckheere'),('Lingyun YANG','nemat@fnal.gov','(630)840-4802','','http://needmore.physics.indiana.edu/~iuhep/','No longer working for D0','','5/11/2005','zieminsk'),('Zdenek HUBACEK','zhubacek@fnal.gov zdenek.hubacek@cern.ch zdenek.hubacek@email.cz','8786','','http://kmlinux.fjfi.cvut.cz/~hubacek','Czech Technical University','QCD','11/9/2006','zhubacek'),('Helena MALBOUISSON','helenam@fnal.gov','x2534','','http://','Universidade do Estado do Rio de Janeiro, Brazil','QCD','12/11/2007','helenam'),('Ana Carlolina Assis JESUS','acassis@fnal.gov','x3705','','http://','Universidade do Estado do Rio de Janeiro, Brazil','QCD','11/3/2005','helenam'),('Scott KOLYA','kolya@fnal.gov','','','http://','University of Manchester, United Kingdom','','12/5/2003','jonckheere'),('Renata RODRIGUES','renatar@fnal.gov','','','http://','Universidade do Estado do Rio de Janeiro, Brazil','','12/5/2003','jonckheere'),('Silke NELSON','duensing@fnal.gov','Formerly Florida State','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Philipp BIALLASS','biallass@fnal.gov','','','http://','No longer working for D0','','11/24/2006','hebbeker'),('Gregory Pawloski','pawloski@fnal.gov pawloski@rice.edu','x6827','','http://','Rice University','','8/30/2007','pawloski'),('Dominik DANNHEIM','dannheim@fnal.gov','','','http://','No longer working for D0','','11/15/2006','tuts'),('Stephen ROBINSON','slr@fnal.gov stephen.l.robinson@imperial.ac.uk','','','http://','Imperial College, London','','1/6/2004','jonckheere'),('Pavel POLOZOV','polozov@fnal.gov','630-840-5640','','','Institute for Theoretical & Exp. Physics, Russia','MUON','5/10/2005','safronov'),('Jameson GILL','jgill@fnal.gov','630-220-5611','formerly NIU (PB)','http://','No longer working for D0','','11/16/2006','hedin'),('Murilo Santana RANGEL','rangel@fnal.gov','x2454 or x2534','','http://www.cbpf.br/~rangel/','CBPF/LAFEX, Brazil','QCD','3/6/2006','rangel'),('Hendrik HOETH','hoeth@fnal.gov hoeth@physik.uni-wuppertal.de','+49(202)4392740','Formerly Wuppertal','http://','No longer working for D0','TOP','12/21/2007','jonckheere'),('Nils GOLLUB','gollub@fnal.gov','(630) 840-5400','Formerly Uppsala','http://','No longer working for D0','TOP','1/24/2008','jonckheere'),('Sascha CARON','scaron@fnal.gov scaron@physik.uni-freiburg.de scaron@cern.ch','Formerly Frieburg','','http://wwwhep.physik.uni-freiburg.de/~scaron','No longer working for D0','NEW SILICON TOP TRIGGER','10/12/2006','jonckheere'),('Philippe CALFAYAN','calfayan@fnal.gov philippe.calfayan@physik.uni-muenchen.de','','','http://','LMU Munich','','6/24/2005','calfayan'),('William WHITAKER','billwww@fnal.gov','559-278-8344','','http://','California State University, Fresno','','2/6/2004','jonckheere'),('Witlin','','','','','','','2/18/2004','kblack'),('Per HANSSON','perh@fnal.gov perh@particle.kth.se','','formerly KTH (Sweden)','http://','No longer working for D0','','1/24/2008','jonckheere'),('Dag GILLBERG','dgillber@fnal.gov dgillber@sfu.ca','','','http://','Simon Fraser University, Canada','','2/24/2004','jonckheere'),('Christian SCHWANENBERGER','schwanen@fnal.gov','+1-630-840-2336','','https://www.desy.de/~schwanen/','University of Manchester, United Kingdom','MC TOP','4/12/2006','soldner'),('Vincent LESNE','lesne@fnal.gov lesne@clermont.in2p3.fr','Formerly LPC, U Blaise Pascal','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Vlastislav HYNEK','hynek@fnal.gov hynek@fzu.cz','+420 22191 2434',' H 4898 O 2278','http://','Charles Univ, Center for Particle Physics, Prague','','12/10/2007','hynek'),('Claus Peter BUSZELLO','buszello@fnal.gov buszello@ic.ac.uk','','','http://','Imperial College, London','','9/12/2006','jonckheere'),('Teresa NEGRINI','','','','','No longer working for D0','','1/9/2007','demina'),('Samuel CALVET','scalvet@fnal.gov scalvet@morocco.in2p3.fr','','','http://','Laboratoire de l Accelerateur Lineaire, France','','11/9/2007','jonckheere'),('Alexei FERAPONTOV','aferapon@fnal.gov','(630)840-8570','','http://','Kansas State University','MUON','2/3/2006','hagopian'),('Arnaud GAY','arnaud.gay@ires.in2p3.fr','Formerly Strasbourg','','http://wwwires.in2p3.fr/','No longer working for D0','','10/12/2006','jonckheere'),('Elizabeth CARR','elcarr@fnal.gov elc8v@virginia.edu','','','http://','University of Virginia','','3/17/2004','jonckheere'),('Dennis MACKIN','mackin@fnal.gov mackin@rice.edu','(713) 829-5840','','http://','Rice University','DATA_MANAGE MUON NEW ONLINE','3/22/2004','mackin'),('Jeroen BLOK','jblok@fnal.gov jblok@nikhef.nl','','','http://','NIKHEF, Netherlands','','3/26/2004','jonckheere'),('Amnon HAREL','aharel@fnal.gov Amnon.Harel@cern.ch','(630)840-2764','(630)840-4899','','University of Rochester','CALORIMETER TOP','4/7/2008','aharel'),('Pritam GAWADE','preetam@fnal.gov preetam@csufresno.edu','','','http://','California State University, Fresno','','4/2/2004','jonckheere'),('Jochen CAMMIN','cammin@fnal.gov','8717','','http://','University of Rochester','CALORIMETER QCD TOP','3/4/2005','cammin'),('Dmitri TSYBYCHEV','tsybych@fnal.gov','(630) 840-4133','','http://','State University of New York, Stony Brook','B_PHYSICS SILICON','11/2/2005','tsybych'),('Thomas MILLET','millet@fnal.gov millet@ipnl.in2p3.fr tmillet@ens-lyon.fr','','Formerly IPN Lyon','http://','No longer working for D0','ALGORITHMS CALORIMETER MC NEW TRIGGER','10/9/2007','jonckheere'),('Ikhlef HAFID','ikhlef@fnal.gov','','','http://','NONE','','7/20/2004','enagy'),('Jens-Peter KONRATH','jkonrath@fnal.gov jens.konrath@physik.uni-freiburg.de','6902','','http://','Physikalisches Institut, Universitaet Freiburg','TOP','4/22/2004','jkonrath'),('Gerald GRENIER','grenier@fnal.gov gerald.grenier@ipnl.in2p3.fr','33-472448501','','http://','Institut de Physique Nucleaire de Lyon, France','','4/26/2004','grenier'),('Shannon ZELITCH','szelitch@fnal.gov szelitch@virginia.edu','','','http://','University of Virginia','','4/27/2004','jonckheere'),('Tania MOULIK','tmoulik@fnal.gov','(630)-840-3228','(630)-548-5892','http://www-d0.fnal.gov/~tmoulik','University of Kansas','','4/15/2005','tmoulik'),('Sabah SALIH','sabah@fnal.gov sabah@hep.man.ac.uk','','','http://','University of Manchester, United Kingdom','','4/29/2004','jonckheere'),('Ioannis KATSANOS','katsanos@fnal.gov katsanos@nevis.columbia.edu','(630) 840 5587','','http://','Columbia University','','9/13/2004','katsanos'),('Keith TURPIN','keturpin@fnal.gov keturpin@indiana.edu','812-361-3463','','http://mypage.iu.edu/~keturpin/','Indiana University','','8/8/2006','keturpin'),('Petr VOKAC','vokac@fnal.gov vokac@linux.fjfi.cvut.cz','','','http://','Czech Technical University','','5/10/2004','jonckheere'),('Peter HASIAKOS','phas@fnal.gov phas@umich.edu','','','http://','University of Michigan','','5/11/2004','jonckheere'),('Cano AY','aycano@fnal.gov ayc@uni-mainz.de','','formerly Mainz','http://','No longer working for D0','','4/11/2007','jonckheere'),('Matthew FORD','mtford@fnal.gov','(630)840-8321','Formerly Manchester','http://','No longer working for D0','','2/19/2008','jonckheere'),('Chad JOHNSON','chadj@fnal.gov cjohnson@nevis.columbia.edu','','','http://','Columbia University','','5/13/2004','jonckheere'),('Daniel DUGGAN','duggan@fnal.gov djd03d@fsu.edu','(630)840-8301','','http://','Florida State University','','7/12/2005','duggan'),('Daniel MCDONALD','dmac84.fnal.gov dmac@rice.edu','','Rice University','http://','No longer working for D0','','1/21/2008','corcoran'),('Camille BELANGER-CHAMPAGNE','camille@fnal.gov','x5400 +46 18 471 38 28','','','Uppsala University','NEW TOP TRIGGER','1/30/2007','camille'),('(Herve) Hiu Fai CHOI','hervehfc@fnal.gov','Summer Student with Dugan ONeil','','http://','No longer working for D0','','1/29/2008','oneil'),('Ayodele (Jimmy) ONIBOKUN','onibokun@fnal.gov','summer student with Taka Yasuda','formerly Fermilab','http://','No longer working for D0','','5/26/2004','jonckheere'),('Justin MCDOWEL','justinfm@fnal.gov','Summer Student with Tom Diehl','formerly Fermilab','http://','No longer working for D0','','5/26/2004','jonckheere'),('Megan HOFNER','hofner@fnal.gov hofner@uiuc.edu','Summer Student with Ron Lipton','','http://','Fermi National Accelerator Laboratory','','5/26/2004','jonckheere'),('Daniel KROP','dkrop@fnal.gov dkrop@indiana.edu','x3853','Formerly Indiana','http://dustbunny.physics.indiana.edu/~dkrop','No longer working for D0','B_PHYSICS','5/16/2007','jonckheere'),('Brendan PASS','bwpass@fnal.gov bwpass@uvic.ca','Summer Student with Dugan ONeil','','http://','No longer working for D0','','1/29/2008','oneil'),('Duncan Paul BROWN','browndp@fnal.gov','4250','4877','http://www-d0.fnal.gov/~browndp/','University of Virginia','QCD','7/31/2007','browndp'),('Mandy ROMINSKY','rominsky@fnal.gov halfspin@nhn.ou.edu','(630) 840 - 3540','(630) 862 - 7598','http://','University of Oklahoma','','8/25/2006','rominsky'),('Xiang KONG','kong3558@fnal.gov kong@nhn.ou.edu','Summer Student with Mike Strauss','','http://','No longer working for D0','','5/27/2005','gut'),('Sowmya KANDULA','sowmya@fnal.gov srk006@latech.edu','','','http://','Louisiana Tech University','','6/3/2004','jonckheere'),('Oleksiy ATRAMENTOV','oleksiy@fnal.gov','x8301','630-379-8815 (cell)','http://www-d0.fnal.gov/~oleksiy','Florida State University','WZ','10/20/2006','oleksiy'),('Michael JOY','mdjoy@fnal.gov mdjoy@phy.olemiss.edu mdjoy82@hotmail.com','','662-380-0077','http://','No longer working for D0','','11/16/2006','quinn'),('Md NAIMUDDIN','nayeem@fnal.gov','630-840-3025','435-764-1825 (cell)','http://www-clued0.fnal.gov/~nayeem','Fermi National Accelerator Laboratory','B_PHYSICS DATA_MANAGE NEW SILICON','11/20/2007','nayeem'),('Cuong NGUYEN','cuong@fnal.gov cuong@brown.edu','Summer Student with Greg Landsberg','','http://','No longer working for D0','','5/9/2005','partridge'),('Greg LANDSBERG','landsberg@hep.brown.edu gll@fnal.gov','(401) 863-1464 (Brown) (630) 840-8591 (FNAL) (401) 286-1886 (cell)','(401) 621-8114','http://www-d0.fnal.gov/~gll','Brown University','ALGORITHMS NEW SILICON','6/21/2004','gll'),('Elizabeth GROVES','','','','','No longer working for D0','','1/9/2007','demina'),('Guido INTRONATI','gintro@fnal.gov gintro@df.uba.ar','','','http://','Universidad de Buenos Aires, Argentina','','2/1/2007','jonckheere'),('Paul BIERDZ','kzfo@fnal.gov kzfo@imsa.edu','Summer Student with Don Lincoln','','http://','Fermi National Accelerator Laboratory','','6/25/2004','jonckheere'),('Junwei (Julia) Ye','juliaye@fnal.gov juliaye@imsa.edu','Summer Student with Don Lincoln','formerly Fermilab','http://','No longer working for D0','','6/25/2004','jonckheere'),('Tingting WU','snowy158@fnal.gov snowy158@yahoo.com','Summer Student with Don Lincoln','','http://','Fermi National Accelerator Laboratory','','6/25/2004','jonckheere'),('Phil BUKSA','pbuksa@fnal.gov pbuksa@comcast.net','Summer Student with Don Lincoln','','http://','Fermi National Accelerator Laboratory','','6/25/2004','jonckheere'),('Alexey POPOV','popoval@fnal.gov Alexei.Popov@ihep.ru','(630)840-8570','','http://','Institute for High Energy Physics, Russia','MUON','5/12/2005','bezzubov'),('Jana BURESOVA','buresova@fnal.gov buresova@ipnp.troja.mff.cz','','','http://','Charles Univ, Center for Particle Physics, Prague','','7/2/2005','lokajick'),('James WALDER','walder@fnal.gov j.walder@lancaster.ac.uk','4595','','http://','Lancaster University, United Kingdom','B_PHYSICS','5/31/2005','walder'),('Sabine LAMMERS','lammers@fnal.gov lammers@nevis.columbia.edu','(630) 840-4348','(630) 440-0101','http://www-clued0.fnal.gov/~lammers','Columbia University','TRIGGER','11/15/2006','lammers'),('Bjoern PENNING','penning@fnal.gov','+1-630-840-6623','','http://','Physikalisches Institut, Universitaet Freiburg','CALORIMETER NEW','10/19/2007','penning'),('Vicent SICCARDI','siccardi@fnal.gov siccardi@in2p3.fr','x2572,','','http://','IPHC Strasbourg, France','','11/30/2004','rapidis'),('Joseph HALEY','cooljoe@fnal.gov cooljoe@princeton.edu','','','http://','Princeton University','','7/7/2004','jonckheere'),('Jan Willem COENEN','coenen@fnal.gov coenen@physik.rwth-aachen.de','+492419961901 +492418027316','','http://www.jan-coenen.de','No longer working for D0','','11/24/2006','hebbeker'),('Laura Elisa GAVA','laga@fnal.gov laga@phys.ualberta.ca','','rwmoore','http://','No longer working for D0','','4/8/2005','rwmoore'),('Florent CHEVALLIER','chevalli@fnal.gov chevallier@lpsc.in2p3.fr','','Formerly at LPSC, Grenoble','http://','No longer working for D0','','10/25/2007','jonckheere'),('Pedro Galli MERCADANTE','mercadan@fnal.gov mercadan@ift.unesp.br','','','http://','Universidade Estadual Paulista, Brazil','','7/22/2004','jonckheere'),('Sergio Morais LIETTI','lietti@fnal.gov lietti@ift.unesp.br','','','http://','Universidade Estadual Paulista, Brazil','','7/22/2004','jonckheere'),('Elizabeth LOCKNER','lockner@fnal.gov lockner@umd.edu','','','http://','No longer working for D0','','11/16/2006','sceno'),('David MILSTEAD','milstead@fnal.gov milstead@physto.se','','Formerly Stockholm Univ','http://','No longer working for D0','','1/22/2008','jonckheere'),('Alejo SALLES','alejo@fnal.gov','(630) 840-3501','','http://','Universidad de Buenos Aires, Argentina','','8/10/2004','alejo'),('Jun GUO','guojun@fnal.gov jguo@grad.physics.sunysb.edu','630-840-5644','','http://grad.physics.sunysb.edu/~jguo/','State University of New York, Stony Brook','CALORIMETER WZ','10/28/2005','guojun'),('Sergey ANUFRIEV','','','','','unknown','','5/16/2005','loboden'),('Kyong Sei LEE','kslee@fnal.gov kslee0421@korea.ac.kr','','','http://','Korea University, Korea','','8/5/2004','jonckheere'),('Mikko VOUTILAINEN','mavoutil@fnal.gov','+1-630-840-3105','+1-630-840-6390','http://www.hut.fi/~mavoutil','University of Nebraska','ALGORITHMS QCD','10/22/2005','mavoutil'),('Petra HAEFNER','haefner@fnal.gov Petra.Haefner@physik.uni-muenchen.de','+1 (630) 840 3696','','http://','LMU Munich','TOP','3/10/2006','haefner'),('Razzak Meera LEBBAI','razzak@fnal.gov razzak@ou.edu','','','http://','No longer working for D0','','11/15/2006','gut'),('Imai JEN-LA PLANTE','imai@fnal.gov imai@u.washington.edu','(Univ of Washington)','','http://','No longer working for D0','','5/11/2005','jonckheere'),('Jonathan (Stephen) ROSENBOOM','jstephen@fnal.gov jrosenb7@bigred.unl.edu','formerly Nebraska','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Robert ABRAMS','rabrams@fnal.gov','','','http://','Indiana University','','8/17/2004','jonckheere'),('Dmitry ONOPRIENKO','onoprien@fnal.gov onoprien@slac.stanford.edu','','','http://','Kansas State University','','8/17/2004','jonckheere'),('Yunhe XIE','xie@fnal.gov xie@physics.brown.edu','2638','','http://','Brown University','','8/8/2005','xie'),('Alexander OGURTSOV','ogurtsov@fnal.gov ogurtsov@inp.nsk.su','','formerly Fermilab','http://','No longer working for D0','SILICON','9/2/2004','ogurtsov'),('Feng GUO','fguo@fnal.gov fguo@grad.physics.sunysb.edu','630-840-3939','630-301-2432','http://grad.physics.sunysb.edu/~fguo/index.htm','State University of New York, Stony Brook','WZ','8/27/2006','fguo'),('Yury SINKIN','sinkin@fnal.gov','(630)840-8570','formerly IHEP, Protvino','http://','No longer working for D0','','3/19/2007','jonckheere'),('Sergey EFREMOV','efremov@fnal.gov','(630)840-8570','formerly IHEP, Protvino','http://','No longer working for D0','','3/19/2007','jonckheere'),('Chunxu YU','chunxuyu@fnal.gov chunxuyu@in2p3.fr','Formerly Grenoble','','http://','No longer working for D0','CALORIMETER MC NEW','10/12/2006','jonckheere'),('Benjamin ZOLLER','bzoller@fnal.gov bzoller@umd.edu','','','http://','No longer working for D0','','6/1/2005','sceno'),('Alexander GROHSJEAN','agrohsje@fnal.gov Alexander.Grohsjean@physik.uni-muenchen.de','At Fermilab: +1 630 840 3696 In Munich: +49 89 289 14121','','http://','LMU Munich','TOP','3/11/2006','agrohsje'),('Anoop RAJENDRA','anoopr@fnal.gov','','','http://','University of Texas, Arlington','','9/23/2004','jonckheere'),('Bimal BALAN','bbimal@fnal.gov','','','http://','University of Texas, Arlington','','9/23/2004','jonckheere'),('Steven BEALE','stbeale@yorku.ca stbeale@fnal.gov','(416) 736-2100x77748','','http://','York University, Canada','','1/24/2005','stbeale'),('Mark STIER','Mark.Stier@physik.uni-freiburg.de','+49-761-203-5844','+49-175-6191005','http://','No longer working for D0','TOP','11/20/2006','buescher'),('Richard DEJONGHE','dejonghe@fnal.gov rdejon2@uic.edu','','','http://','No longer working for D0','','11/16/2006','adams'),('Seyed-Ahmad SABOK-SAYR','ahmads@fnal.gov ahmads@sfu.ca','Formerly Simon Fraser','','http://','No longer working for D0','','7/19/2005','jonckheere'),('Aaron DOMINGUEZ','aarond@fnal.gov aarond@unl.edu','402-472-6016 402-202-5065 630-840-3105','402-742-4868','http://physics.unl.edu','University of Nebraska','ALGORITHMS NEW','10/12/2004','aarond'),('Andrew PILKINGTON','pilko@fnal.gov pilko@hep.man.ac.uk','','','http://','No longer working for D0','','11/15/2006','twyatt'),('Kenneth BLOOM','bloom@fnal.gov kenbloom@unl.edu','402-472-6093','','http://physics.unl.edu/~bloom','University of Nebraska','','10/12/2004','bloom'),('Mark OWEN','markowen@fnal.gov mark@hep.man.ac.uk','','','http://www.hep.man.ac.uk/u/mark/','University of Manchester, United Kingdom','','11/9/2004','markowen'),('Daniel BOLINE','ddboline@fnal.gov ddboline@bu.edu','630-840-2931 617-353-6045','857-204-4078','http://buphy.bu.edu/~ddboline/','Boston University','TOP','4/10/2006','ddboline'),('Tyler DORLAND','dorland@fnal.gov dorland@u.washington.edu','x4062 303-489-3471','','http://','University of Washington','ALGORITHMS FIBER_TRACKER','4/21/2008','dorland'),('Nasim FATEMI_GHOMI','nasim@fnal.gov nasim@hep.man.ac.uk','','','http://','No longer working for D0','','11/15/2006','twyatt'),('Nicolas ESTRE','estre@fnal.gov estre@lpnl.in2p3.fr','','','http://','No longer working for D0','','11/16/2006','muanza'),('Zhiyi LIU','zhiyil@fnal.gov zhiyil@sfu.ca','','','http://','Simon Fraser University, Canada','','10/28/2004','jonckheere'),('Michael KIRBY','kirby@fnal.gov','5220','630.965.1456','http://www-d0.fnal.gov/~kirby','Northwestern University','SILICON TOP','9/14/2007','kirby'),('Michael MULHEARN','mulhearn@fnal.gov','x8304','773-387-1902(cell)','http://','Columbia University','NEW TRIGGER','11/15/2006','mulhearn'),('Alexander VORONIN','','','','','No longer working for D0','','5/25/2005','dudko'),('Natalia BARANOVA','','','','','No longer working for D0','','5/25/2005','dudko'),('Thorsten KUHL','Thorsten.Kuhl@uni-mainz.de','+49-6131-3924075','','http://','Institut fuer Physik, Mainz, Germany','B_PHYSICS MC','1/8/2008','tapprogg'),('Lawrence PERCIFIELD','lawper@fnal.gov larper@kcnet.com','','University of Kansas','http://','No longer working for D0','','1/8/2008','baringer'),('Erik OFFERMAN','erikofferman@fnal.gov e-offerman@northwestern.edu','','','http://','No longer working for D0','','11/18/2006','buchholz'),('Peter Renkel','renkel@fnal.gov renkel@physics.smu.edu','(630) 840-3954','','www-clued0.fnal.gov/~renkel','Southern Methodist University','TOP TRIGGER','11/16/2006','kehoe'),('Ben McMORRAN','mcmorran@fnal.gov mcmorran@physics.arizona.edu','','','http://','University of Arizona','','11/22/2004','jonckheere'),('Mark WILLIAMS','markw@fnal.gov m.williams@lancaster.ac.uk','','773-279-9242','http://','Lancaster University, United Kingdom','B_PHYSICS','2/19/2006','leonard'),('Matt TILLEY','mtilley@u.washington.edu','x6690','University of Washington','http://','No longer working for D0','TOP','1/8/2008','lubatti'),('Fabrice TISSANDIER','fabtiss@fnal.gov fabrice.tissandier@clermont.in2p3.fr','','Formerly Clermont-Ferrand','http://','No longer working for D0','','4/21/2008','jonckheere'),('Reinhild (Yvonne) PETERS','peters@fnal.gov peters@physik.uni-wuppertal.de','+1(630)840-5247','','http://','Fachbereich Physik, University of Wuppertal','','11/20/2006','wicke'),('Marisa SANDHOFF','sandhoff@fnal.gov sandhoff@physik.uni-wuppertal.de','','','http://','No longer working for D0','','11/20/2006','wicke'),('Anne-Marie MAGNAN','magnan@fnal.gov magnan@isn.in2p3.fr','Formerly Grenoble','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Eduard PAUNA','eduardp@fnal.gov eduard.pauna@physik.uni-wuppertal.de','','','http://','No longer working for D0','','11/20/2006','wicke'),('Steffen KAPPLER','Steffen.Kappler@cern.ch','5439','Formerly Aachen, GR','http://cern.ch/skappler','No longer working for D0','','4/11/2007','jonckheere'),('Krisztian PETERS','petersk@fnal.gov krisztian.peters@desy.de','x8321','','http://','University of Manchester, United Kingdom','','3/6/2005','petersk'),('Leo BELLANTONI','bellanto@fnal.gov','630-840-8772','','http://','Fermi National Accelerator Laboratory','','12/10/2004','jonckheere'),('Philip VINT','pvint@fnal.gov philip.vint@imperial.ac.uk','x2407','312-822-9825','http://','Imperial College, London','ALGORITHMS B_PHYSICS','6/23/2006','pvint'),('Denis KORABLEV','dekor@fnal.gov dekor@jinr.ru','','','','Joint Institute for Nuclear Research, Russia','','3/3/2006','dekor'),('Michael POGWIZD','pogwizd@fnal.gov','','','http://','Fermi National Accelerator Laboratory','','12/15/2004','jonckheere'),('Jeroen HEGEMAN','jhegeman@fnal.gov jhegeman@nikhef.nl','x4250','','http://','NIKHEF, Netherlands','','3/24/2005','jhegeman'),('FAR SIDE','','Phone 2541','','http://','Fermi National Accelerator Laboratory','','7/11/2005','sonya'),('DOGHOUSE','','Phone 4639','','http://','Fermi National Accelerator Laboratory','','7/11/2005','sonya'),('SALLE DES HEROS','','Phone 3146','','http://','Fermi National Accelerator Laboratory','','1/6/2005','sonya'),('FAX MACHINE, DAB5','','(630) 840-6650','','http://','Fermi National Accelerator Laboratory','','1/6/2005','sonya'),('FAX MACHINE, DAB6','','(630) 840-8481','','http://','Fermi National Accelerator Laboratory','','1/6/2005','sonya'),('FAX MACHINE, PTKP. 177','','(630) 840-8886','','http://','Fermi National Accelerator Laboratory','','1/6/2005','sonya'),('HURRICANE DECK','','Phone 3609','','http://','Fermi National Accelerator Laboratory','','7/11/2005','sonya'),('Marsela JORGOLLI','jorgolli@fnal.gov','(undergrad with Bhat)','formerly NIU','http://','No longer working for D0','','11/16/2006','hedin'),('Stephen KELLY','sc_kelly@fnal.gov kelly@hep.man.ac.uk','','','http://','No longer working for D0','','11/15/2006','twyatt'),('Laura BODINE','lbodine@fnal.gov tink4444@u.washington.edu','','University of Washington','http://','No longer working for D0','','1/8/2008','lubatti'),('Mark SMITH','smithmar@fnal.gov smithmar@phys.ksu.edu','','formerly Kansas State','http://','No longer working for D0','','5/16/2007','jonckheere'),('Patrick ERAERDS','patera@fnal.gov eraerds@physik.rwth-aachen.de','','','http://','No longer working for D0','','11/24/2006','hebbeker'),('Bertrand MARTIN','martindl@fnal.gov martindl@lpsc.in2p3.fr','','','http://','LPSC, Grenoble FR','TOP','4/25/2007','martindl'),('Jeremy WERNER','jwerner@fnal.gov jwerner@princeton.edu','formerly Princeton','','http://','No longer working for D0','','10/12/2006','jonckheere'),('Jessica GOODMAN','jesi@fnal.gov jesi5@email.arizona.edu','Undergrad','','http://','University of Arizona','','2/3/2005','jonckheere'),('Norik KHALATYAN','norik@fnal.gov','630-840-5478','','http://','Fermi National Accelerator Laboratory','MUON','2/11/2008','norik'),('Marc KELLY','mpkelly@fnal.gov mpkelly@hep.man.ac.uk','','','http://','No longer working for D0','','11/15/2006','twyatt'),('Robert WAGNER','rewagner@fnal.gov rewagner@princeton.edu','','','http://','Princeton University','','6/25/2005','rewagner'),('Monica PANGILINAN','mop3@fnal.gov','8591','','http://','Brown University','','5/13/2008','mop3'),('Grigory SAFRONOV','safronov@fnal.gov safronov@cern.ch','630-840-3024','','http://','Institute for Theoretical & Exp. Physics, Russia','MUON','10/26/2006','evdokim'),('Penelope KASPER','penny@fnal.gov','630-840-8477','','http://','Fermi National Accelerator Laboratory','','3/4/2005','jonckheere'),('Olav MUNDAL','mundal@fnal.gov','','','http://','Physikalisches Institut, Bonn University','','4/3/2007','mundal'),('Anne-Fleur BARFUSS','barfuss@fnal.gov barfuss@cppm.in2p3.fr','','','http://','Centre de Physique des Particules de Marseille','','3/10/2005','jonckheere'),('Lucian Stefan ANCU','lucian@fnal.gov lucian@hef.ru.nl','','','http://','Radboud University Nijmegen','','3/23/2005','jonckheere'),('Michael WANG','mwang@fnal.gov','(630)840-2947','','http://','Fermi National Accelerator Laboratory','','12/21/2005','mwang'),('David KHATIDZE','khatidze@fnal.gov','x6671','','http://','Columbia University','WZ','3/25/2005','khatidze'),('Ioana Maria ANGHEL','omanghel@fnal.gov ianghe2@uic.edu','','','http://','University of Illinois, Chicago','','3/28/2005','jonckheere'),('Cosmin DRAGOIU','cdragoiu@fnal.gov cdrago2@uic.edu','','','http://','University of Illinois, Chicago','','3/28/2005','jonckheere'),('Kevin CHAN','crasis@fnal.gov kwchan@phys.ualberta.ca','+1-(780)-492-0668','','http://www.phys.ualberta.ca/~kwchan/d0/','University of Alberta, Canada','','8/8/2005','crasis'),('Chun XU','xuchun@fnal.gov xuchun@umich.edu','630-840-2438','734-272-9331','http://','University of Michigan','','6/29/2007','xuchun'),('Jadranka SEKARIC','sekaric@fnal.gov sekaric@hep.fsu.edu','(630)-840-3965','(630)-416-2175','http://','Florida State University','CALORIMETER','7/26/2006','sekaric'),('Gernot WEBER','gweber@fnal.gov gernot.weber@uni-mainz.de','(630)-840-6902 +49-6131-3924075','','http://www.staff.uni-mainz.de/weberg/','Institut fuer Physik, Mainz, Germany','B_PHYSICS','4/26/2006','gweber'),('Folkert KOETSVELD','fkoetsve@fnal.gov f.koetsveld@science.ru.nl','','','http://','Radboud University Nijmegen','','4/29/2005','jonckheere'),('Travis STEWART','tstewart@fnal.gov m0f14@unb.ca','Undergrad with ONeil','','http://','Simon Fraser University, Canada','','5/3/2005','jonckheere'),('Henrik NILSEN','henrik@fnal.gov henrik.nilsen@physik.uni-freiburg.de','','','http://','Physikalisches Institut, Universitaet Freiburg','','5/3/2005','jonckheere'),('Philippe VACHON-RIVARD','pvacho@fnal.gov philippe.vachon-rivard@mail.mcgill.ca','Summer Student with Brigitte Vachon','formerly McGill','http://','No longer working for D0','','4/17/2008','jonckheere'),('Matthieu LARQUE','','','','','No longer working for D0','','11/15/2006','jaffre'),('Jose Roberto MAHON','mahon@fnal.gov mahon@uerj.br','UERJ','','http://','No longer working for D0','','5/9/2006','jonckheere'),('Yiu Chung (Ken) LAU','klaug@fnal.gov klaug@sfu.ca','Summer Student with Dugan ONeil','','http://','No longer working for D0','','1/29/2008','oneil'),('Mikolaj CWIOK','cwiok@fnal.gov mikolaj.cwiok@ucd.ie','3948','','http://','University College Dublin','WZ','5/10/2005','cwiok'),('Marc BESANCON','besancon@fnal.gov besanco@hep.saclay.cea.fr','(630)840-6830/5503/4794 33-1-6908-2056','','http://besancon.home.cern.ch/besancon/','DAPNIA/SPP, SACLAY, France','','5/11/2005','jonckheere'),('Stefan TAPPROGGE','tapprogg@fnal.gov stefan.tapprogge@uni-mainz.de','+49-6131-39-25160','','http://','Institut fuer Physik, Mainz, Germany','','5/11/2005','jonckheere'),('Nikolai RUSSAKOVICH','Nikolai.Rusakovitch@cern.ch','','','http://','Joint Institute for Nuclear Research, Russia','','5/11/2005','jonckheere'),('Karthikeyan ARUNACHALAM','karunach@fnal.gov karunach@nhn.ou.edu','','','http://','University of Oklahoma','','5/16/2005','jonckheere'),('Kayle DEVAUGHAN','kdevaugh@fnal.gov kdevaug1@bigred.unl.edu','x3105','','http://','University of Nebraska','','3/6/2008','kdevaugh'),('Dale JOHNSTON','dalej@fnal.gov dalej96@gmail.com','3677','','http://','University of Nebraska','','2/19/2007','dalej'),('Petru Lunca POPA','petrulp@fnal.gov luncapopa@yahoo.com','','','http://','University of Nebraska','','5/17/2005','jonckheere'),('Tummalapalli REDDY','reddy@fnal.gov reddy@cse.uta.edu sudhamshreddy@gmail.com','','Formerly UTA','http://','No longer working for D0','','3/27/2008','jonckheere'),('Marion ARTHAUD','marthaud@fnal.gov marthaud@dapnia.cea.fr','','','http://','DAPNIA/SPP, SACLAY, France','','5/17/2005','jonckheere'),('Vladimir ANIKEEV','vanikeev@fnal.gov anikeev@ihep.ru','','','http://','No longer working for D0','','3/1/2007','kozelov'),('Samvel KHALATIAN','samvel@fnal.gov','Summer Student with Meena Narain','','http://','Boston University','','5/20/2005','jonckheere'),('Valentina DUTTA','vdutta@fnal.gov vdutta@bu.edu','','','http://','Boston University','','5/20/2005','jonckheere'),('Rongguo ZHOU','zhouron@fnal.gov zhouron@physics.arizona.edu','','','http://','University of Arizona','','5/23/2005','jonckheere'),('Fabio Antonio REZENDE','rezende@fnal.gov fabio@cbpf.br','','','http://','No longer working for D0','','10/17/2005','gilvan'),('Petr MIKES','mikes@fnal.gov mikes@fzu.cz p.mikes@seznam.cz','','','http://','Institute of Physics of Czech Academy of Sciences','','5/23/2005','jonckheere'),('Duane Doles','dtdoles@fnal.gov','Summer Student with Sergey Burdin','formerly Fermilab','http://','No longer working for D0','','5/25/2005','jonckheere'),('Judith ODILI','jodili@fnal.gov','Summer Student with Geoff Savage','formerly Fermilab','http://','No longer working for D0','','5/25/2005','jonckheere'),('Michael CARTER','carterm@fnal.gov','Summer Student with Taka Yasuda','','http://','Fermi National Accelerator Laboratory','','5/26/2005','jonckheere'),('Mcdavis FASUGBA','mcdavis@fnal.gov','Summer Student with Ron Lipton','','http://','Fermi National Accelerator Laboratory','','5/26/2005','jonckheere'),('Martin ERDMANN','Martin.Erdmann@cern.ch erdmann@fnal.gov','(49)241 80 27 317','','http://www.physik.rwth-aachen.de/~erdmann/','RWTH Aachen, III. Phys. Inst. A, Aachen, Germany','','8/2/2005','jonckheere'),('Matthias KIRSCH','mkirsch@fnal.gov','(630) 840 5439','','http://www.physik.rwth-aachen.de/~kirsch/','RWTH Aachen, III. Phys. Inst. A, Aachen, Germany','','8/6/2005','mkirsch'),('Alexandr ROZHDESTVENSKIY','rozhdest@fnal.gov rozhdest@jinr.ru','','','http://','Joint Institute for Nuclear Research, Russia','B_PHYSICS','6/3/2005','rozhdest'),('Daniel PHALEN','phalendj@fnal.gov phalendj@rice.edu','','Rice University','http://','No longer working for D0','','1/21/2008','corcoran'),('John OMOTANI','omotani@fnal.gov','summer student with Sergey Burdin','formerly Fermilab','http://','No longer working for D0','','6/13/2005','jonckheere'),('Akatsuki Dawn SAGA','saga@fnal.gov saga@physics.arizona.edu','','','http://','University of Arizona','','6/14/2005','jonckheere'),('Marc POLLAK','marcp@fnal.gov marcp@umd.edu','','','http://','No longer working for D0','','11/16/2006','sceno'),('Susumu SHIBATA','susumu@fnal.gov','Summer Student with Flera Rizatdinova','','http://','unknown','','6/14/2005','jonckheere'),('Lester PIMENTEL','pimentel@fnal.gov','Summer Student with Pushpa Bhat','formerly NIU(PB)','http://','No longer working for D0','','11/16/2006','hedin'),('Patrick WHEELER','pwheeler@fnal.gov','summer student with Don Lincoln','','http://','Fermi National Accelerator Laboratory','','6/21/2005','jonckheere'),('Michelle POTTS','mpotts@fnal.gov','summer student with Don Lincoln','','http://','Fermi National Accelerator Laboratory','','6/21/2005','jonckheere'),('John FORBES','jforbes@fnal.gov','summer student with Don Lincoln','formerly Fermilab','http://','No longer working for D0','','6/21/2005','jonckheere'),('Ernest AGUILO','aguiloe@fnal.gov','2186','','http://','University of Alberta, Canada','ALGORITHMS CALORIMETER TRIGGER','10/15/2005','aguiloe'),('Charlotte WOOD-HARRINGTON','woodharr@fnal.gov','Summer Student with Mark Adams','','http://','No longer working for D0','','11/16/2006','adams'),('Sangaran THIRUGNANASAMPANTHAN','sangaran@fnal.gov sangaran@physics.rice.edu','','Rice University','http://','No longer working for D0','','1/21/2008','corcoran'),('Sarah SCHLOBOHM','sschlobo@fnal.gov','','','http://','University of Washington','','2/11/2008','jonckheere'),('Kasi GODAVARTHI','kasi@fnal.gov gvi001@latech.edu','','','http://','Louisiana Tech University','','8/1/2005','greenwzd'),('Kristen FLOWERS','kflowers@fnal.gov flowers.k@neu.edu','','','http://','Northeastern University','','6/1/2007','kflowers'),('Cory FANTASIA','fantasia@fnal.gov fantasia.c@neu.edu','3708','','http://','No longer working for D0','','11/15/2006','darien'),('Adam ROE','adamroe@fnal.gov roe.a@neu.edu','','','http://','No longer working for D0','','11/15/2006','darien'),('Oldrich KEPKA','kepka@fnal.gov oldrich.kepka@matfyz.cz','630-840-8786','630-840-4898','http://','Institute of Physics of Czech Academy of Sciences','','8/8/2005','kepka'),('Alexandre RAKITINE','rakitin@fnal.gov, a.rakitin@lancaster.ac.uk','630-840-5264','630-607-2953','http://www-d0.fnal.gov/~rakitin','Lancaster University, United Kingdom','','1/4/2006','rakitin'),('Chi Thi Lien LE','ltlchi@fnal.gov','','Formerly HoChiMinhCity','http://','No longer working for D0','','12/14/2006','jonckheere'),('Tuan Hong ANH','hatuan@fnal.gov','','Formerly HoChiMinhCity','http://','No longer working for D0','','12/14/2006','jonckheere'),('Kurt BACHMANN','bachmann@fnal.gov','Summer Student with Flera Rizatdinova','','http://','unknown','','7/9/2005','jonckheere'),('Sergey KULIKOV','kulikov@fnal.gov kulikov_lt@ihep.ru','','','http://','Institute for High Energy Physics, Russia','','7/11/2005','jonckheere'),('Amy ROBERTS','aroberts@fnal.gov arobert4@nd.edu','','','http://','University of Notre Dame','','7/12/2005','jonckheere'),('Bob VAN EIJK','vaneijk@fnal.gov vaneijk@nikhef.nl','','Formerly NIKHEF','http://','No longer working for D0','','8/20/2007','jonckheere'),('Andreas WENGER','wenger@fnal.gov wenger@physik.unizh.ch','6871','','http://','University of Zurich','SILICON','3/7/2006','wenger'),('Josh PETZOLDT','petzoldt@fnal.gov j.petzoldt1@lancaster.ac.uk','','','http://','Lancaster University, United Kingdom','','8/1/2005','jonckheere'),('Remigius Mommsen','mommsen@fnal.gov','630 840 8321','','http://home.cern.ch/~mommsen','University of Manchester, United Kingdom','','8/3/2005','mommsen'),('Leonid MIKHALEV','mikhalev@fnal.gov leonid_1981@mail.ru','','','http://','Institute for High Energy Physics, Russia','','8/3/2005','jonckheere'),('Pascal RHEAUME','rheaume@fnal.gov rheaume@physics.mc','Formerly at McGill','','http://','No longer working for D0','','11/22/2005','jonckheere'),('Amanda GRAY','graya@fnal.gov graya@u.washington.edu','','University of Washington','http://','No longer working for D0','','1/8/2008','lubatti'),('Andrew NORMAN','anorman@fnal.gov andrewnorman@virginia.edu','434-982-5382','','http://galileo.phys.virginia.edu/research/groups/hep/aag/norman/','University of Virginia','','8/22/2005','anorman'),('Edmond C. DUKES','dukes@fnal.gov','434-982-5364','434-244-0445','http://heplx1.phys.virginia.edu/~dukes/professional/dukes_craig_prof.html','University of Virginia','TRIGGER','8/23/2005','dukes'),('Volker VORWERK','vorwerk@fnal.gov volker.vorwerk@rwth-aachen.de','','','http://','RWTH Aachen, III. Phys. Inst. A, Aachen, Germany','','8/23/2005','jonckheere'),('Oleg BRANDT','','+1 630 840 2336','Formerly at Bonn','http://','No longer working for D0','','12/14/2006','jonckheere'),('Steven HARRIS','sgharris@fnal.gov sgharris@imsa.edu','Summer Student with Alan Magerkurth','','http://','University of Michigan','','8/31/2005','jonckheere'),('Peter LEWIS','plewis@fnal.gov plewis@hep0.physics.arizona.edu','','','http://','University of Arizona','','9/8/2005','jonckheere'),('Liang LI','liangli@fnal.gov','8763','','http://www-clued0.fnal.gov/~liangli','University of California, Riverside','ALGORITHMS TOP TRIGGER','10/29/2007','liangli'),('Florent LACROIX','lacroix@fnal.gov lacroix@clermont.in2p3.fr','','','http://','LPC, Univ Blaise Pascal, Clermont-Ferrand, France','','9/15/2005','jonckheere'),('John BRUNELLE','brunelle@fnal.gov brunejo@bu.edu','','','http://','Boston University','','9/15/2005','jonckheere'),('Yuji ENARI','enari@fnal.gov','x2338','','http://','Brown University','','9/22/2005','enari'),('Gustavo KERTZSCHER','gustavok@fnal.gov gustavok@physics.mcgill.ca','630-840-2960','','http://','McGill University, Canada','','8/8/2006','gustavok'),('Jeremy LOVE','jrlove@fnal.gov jrlove@bu.edu','617-353-9438','','http://','Boston University','','9/20/2005','jrlove'),('Christophe OCHANDO','ochando@fnal.gov ochando@lal.in2p3.fr','','','http://','Laboratoire de l Accelerateur Lineaire, France','','9/22/2005','jonckheere'),('Helio NOGIMA','nogima@fnal.gov nogima@uerj.br','','','http://','Universidade do Estado do Rio de Janeiro, Brazil','','10/3/2005','jonckheere'),('Rene LUNA-GARCIA','lunar@fnal.gov rluna@uerj.br','','','http://','Universidade do Estado do Rio de Janeiro, Brazil','','10/3/2005','lunar'),('Thorsten SCHLIEPHAKE','tschliep@fnal.gov Thorsten.Schliephake@physik.uni-wuppertal.de','+1(630)840-5247','','http://','Fachbereich Physik, University of Wuppertal','','11/20/2006','wicke'),('Jeremie LELLOUCH','lellouch@fnal.gov lellouch@lpnhep.in2p3.fr','+33144272328 x8740','','http://','LPNHE, Universites Paris VI and VII, France','','7/6/2006','lellouch'),('Christopher POTTER','cpotter@fnal.gov cpotter@physics.mcgill.ca','(514) 398-2156','formerly McGill','http://','No longer working for D0','','4/17/2008','jonckheere'),('Philip RICH','richp@fnal.gov philip@hep.man.ac.uk','','','http://','University of Manchester, United Kingdom','','10/12/2005','jonckheere'),('Daniel LENZ','lenz@fnal.gov lenz@physik.rwth-aachen.de','','','http://','RWTH Aachen, III. Phys. Inst. A, Aachen, Germany','','10/14/2005','jonckheere'),('Kostyantyn HOLUBYEV','holubyev@fnal.gov k.holubyev@lancaster.ac.uk','','','http://','Lancaster University, United Kingdom','','10/17/2005','jonckheere'),('Fabrice COUDERC','fcouderc@fnal.gov fabrice.couderc@cea.fr','','','http://','DAPNIA/SPP, SACLAY, France','','10/18/2005','jonckheere'),('Catrin BERNIUS','bernius@fnal.gov bernius@uni-mainz.de','6902','Institute of Physics, Mainz','http://','No longer working for D0','B_PHYSICS','1/8/2008','tapprogg'),('Sohrab HOSSAIN','shossain@fnal.gov sohrab@ou.edu','','817 319 3691','http://','University of Oklahoma','','4/18/2007','shossain'),('Mikhail KOSTIN','mkostin@fnal.gov kostin_m73@mail.ru','','','http://','Institute for High Energy Physics, Russia','','8/28/2007','jonckheere'),('Victor YAKIMCHUK','yakimch@fnal.gov yakimchuk@ihep.ru','','','http://','No longer working for D0','','3/1/2007','kozelov'),('Dmitri SMIRNOV','dsmirnov@fnal.gov','1 (630) 840-4369 (w), 1 (630) 840-3475 (h), 1 (630) 670-3993 (m)','','http://plexoos.com/dmitri_smirnov','University of Notre Dame','FIBER_TRACKER','10/26/2007','josta'),('Yuri GOTRA','gotra@fnal.gov','8630','','http://','University of Rochester','B_PHYSICS SILICON','11/17/2005','gotra'),('G.Alejandro GARCIA-GUERRA','gagarcia@fnal.gov gagarcia@fis.cinvestav.mx','','','http://','CINVESTAV, Mexico','','11/15/2005','jonckheere'),('Jamie HEGARTY','jamie@fnal.gov','','','http://','No longer working for D0','','11/15/2006','gut'),('Jaret FLORES','','','','http://','No longer working for D0','','3/1/2006','baringer'),('Michael EKLUND','eklund@fnal.gov eklund@physics.arizona.edu','','','http://','University of Arizona','','11/28/2005','jonckheere'),('Colin NICHOLS','nicholsc@fnal.gov nicholsc@buphy.bu.edu','','','http://','Boston University','','11/28/2005','jonckheere'),('Theodoros CHRISTOUDIAS','theoc@fnal.gov tc502@ic.ac.uk','0016308402418','','http://www-clued0.fnal.gov/~theoc','Imperial College, London','','7/9/2006','theoc'),('Natalia PANIKASHVILI','panikas@fnal.gov natalia.panikashvili@cern.ch','','','http://','University of Michigan','','1/20/2006','jonckheere'),('Andres TANASIJCZUK','andres@fnal.gov','(630) 840-3501','','http://','Universidad de Buenos Aires, Argentina','','2/7/2006','andres'),('Christophe SALZMANN','salzmann@fnal.gov c.salzmann@gmx.ch','','','http://','University of Zurich','','2/7/2006','jonckheere'),('Jan STEGGEMANN','steggema@fnal.gov jan.steggemann@physik.rwth-aachen.de','','','http://','RWTH Aachen, III. Phys. Inst. A, Aachen, Germany','','2/8/2006','jonckheere'),('Emanuel STRAUSS','estrauss@fnal.gov estrauss@grad.physics.sunysb.edu','','','http://','State University of New York, Stony Brook','','2/8/2006','jonckheere'),('Konstantinos GEORGIOU','georgiou@fnal.gov k.georgiou@imperial.ac.uk','','','http://','Imperial College, London','','2/9/2006','jonckheere'),('Phaniraja POCHIRAJU','pnp003@fnal.gov pnp003@latech.edu','','','http://','Louisiana Tech University','','3/8/2006','jonckheere'),('Laura Jane ELGASS','ljelgass@fnal.gov','Pushpa Bhat\'s intern','formerly Fermilab','http://','No longer working for D0','','3/2/2006','jonckheere'),('Pierre-Simon Mangeard','mangeard@fnal.gov','','','http://','Indiana University','','3/9/2006','jonckheere'),('Vesna CUPLOV','vesna@fnal.gov','','','http://www-d0.fnal.gov/~vesna','Kansas State University','WZ','2/24/2008','vesna'),('Yulia VERTOGRADOVA','jvert@fnal.gov jvert@lxpub01.jinr.ru','','','http://','Joint Institute for Nuclear Research, Russia','','3/30/2006','jonckheere'),('Nikolay PROKOPENKO','prokop@fnal.gov Prokopenko_miphi@mail.ru','','','http://','Institute for High Energy Physics, Russia','','3/30/2006','jonckheere'),('Igor BELYAKOV','belyakov@fnal.gov igor.belyakov@mail.ru','','','http://','No longer working for D0','','2/28/2007','kozelov'),('Test JUNK','testing@new-person.edu','','','http://','No longer working for D0','','4/10/2006','jonckheere'),('William KUYKENDALL','billkuyk@fnal.gov billkuyk@u.washington.edu','','','http://','University of Washington','','4/10/2006','jonckheere'),('Xuebing BU','xbbu@fnal.gov xbbu@mail.ustc.edu.cn','4384','','http://','Univ of Science and Technology of China, Hefei','ALGORITHMS NEW','5/5/2008','xbbu'),('Hang YIN','yinh@fnal.gov; hangyin@mail.ustc.edu.cn','4185','4050','http://www-d0.fnal.gov/~yinh','Univ of Science and Technology of China, Hefei','NEW TRIGGER WZ','2/27/2008','yinh'),('Yanwen LIU','yliu@fnal.gov','x4384 (Trailer 177, door #3)','','http://www-d0.ustc.edu.cn/yliu','Univ of Science and Technology of China, Hefei','ALGORITHMS NEW TRIGGER','12/17/2007','yliu'),('Romain MADAR','madar@fnal.gov romain_22001@yahoo.fr','','','http://','LPNHE, Universites Paris VI and VII, France','','4/18/2006','jonckheere'),('Maxim PERFILOV','perfilov@fnal.gov perfilov@theory.sinp.msu.ru','','','http://','Moscow State University, Russia','','4/27/2006','jonckheere'),('Jacqueline RADIGAN','jradigan@fnal.gov jackie.radigan@gmail.com','','','http://','York University, Canada','','5/1/2006','jonckheere'),('Pierre INIZAN','','','','','No longer working for D0','','11/15/2006','jaffre'),('Bertrand CHAPLEAU','chaber@fnal.gov chaber@physics.mcgill.ca','','formerly McGill','http://','No longer working for D0','','4/17/2008','jonckheere'),('Kyle MURPHY','kmurphy@fnal.gov kmurphy@phys.ualberta.ca','','','http://','University of Alberta, Canada','','5/9/2006','jonckheere'),('Justin GRIFFITHS','jgriffi6@fnal.gov jgriffi6@nd.edu','','','http://','University of Notre Dame','','5/17/2006','jonckheere'),('Anabil CHAUDHURI','','','','','No longer working for D0','','1/9/2007','demina'),('Robert ORTMAN','rlortman@fnal.gov rlortman@rice.edu','','','http://','Rice University','','5/17/2006','jonckheere'),('Adam (Zeke) MURDOCK','zmurdock@fnal.gov zekemurdock@gmail.com','(summer Student)','','http://','Oklahoma State University','','5/25/2006','jonckheere'),('Pedro DUARTE','pmd@fnal.gov','','','http://','University of Texas, Arlington','','5/25/2006','jonckheere'),('Kenneth SMITH','kjsmith@fnal.gov kjsmith@buffalo.edu','','','http://','State University of New York, Buffalo','','5/25/2006','jonckheere'),('Mustapha BENYAMNA','benyamna@fnal.gov','','','http://','LPNHE, Universites Paris VI and VII, France','','5/26/2006','jonckheere'),('Travis HOWE','tdhowe@fnal.gov tdh013@latech.edu','','','http://','Louisiana Tech University','','6/7/2006','jonckheere'),('Anjali TRIPATHI','tripathi@fnal.gov tripathi@mit.edu','Summer Student with Ron Lipton','formerly Fermilab','http://','No longer working for D0','','6/8/2006','jonckheere'),('Mikhail KATS','mikhail@fnal.gov mak85@cornell.edu','Summer Student with Phil Baringer','University of Kansas','http://','No longer working for D0','','1/8/2008','baringer'),('Ryu (Peter) YU','peteryu@fnal.gov','Summer Student with Geoff Savage','','http://','Fermi National Accelerator Laboratory','','6/20/2006','jonckheere'),('Steven HERRIN','sherrin@fnal.gov sherrin@rice.edu','Undergrad working with Gordon Watts and Paul Padley','217.553.7917','http://','Rice University','TOP','10/5/2006','sherrin'),('John BACKUSMAYES','jbackusm@fnal.gov jbackusm@u.washington.edu','','','http://','University of Washington','','6/22/2006','jonckheere'),('Orin HARRIS','orin@fnal.gov omh@u.washington.edu','','University of Washington','http://','No longer working for D0','','1/9/2008','lubatti'),('Wojciech SZYMULANSKI','wojtas@fnal.gov','Summer Student with Selcuk Cihangir','','http://','Fermi National Accelerator Laboratory','','6/22/2006','jonckheere'),('Daniel GOLD','goldd@fnal.gov gold.d@neu.edu','','','http://','No longer working for D0','','1/9/2008','barberis'),('Blake AYCOCK','baycock@fnal.gov aycock.b@neu.edu','8485','646 662 5113','http://','No longer working for D0','CALORIMETER TRIGGER','1/9/2008','barberis'),('Suneel DUTT','sun786@fnal.gov suneel@puhep.res.in','','','http://','Panjab University, India','','7/13/2006','jonckheere'),('K Sreekanth GURAPPA','kmu006@fnal.gov kmu006@latech.edu','','','http://','Louisiana Tech University','','7/20/2006','jonckheere'),('Mark PADILLA','mpadilla@fnal.gov','','','http://','University of California, Riverside','','7/24/2006','jonckheere'),('Jose Luis Palomino GALLO','jpalomin@fnal.gov jpalomino@cbpf.br','','Formerly CBPF/Lafex (Br)','http://','No longer working for D0','','10/10/2007','jonckheere'),('Christopher CORDER','ccorder@fnal.gov','Undergrad with Ken Bloom','','http://','University of Nebraska','','8/2/2006','jonckheere'),('Oleg STENYAKIN','stenol@fnal.gov stenol@mail.ru','','','http://','No longer working for D0','','3/1/2007','kozelov'),('Valery RODIONOV','vrodionov@jinr.ru rodionov@fnal.gov','630-840-2989','630-840-3438','http://','Joint Institute for Nuclear Research, Russia','MUON','8/29/2007','rodionov'),('Reid SMITH','smithrm@fnal.gov smithrm@u.washington.edu','','University of Washington','http://','No longer working for D0','','1/8/2008','lubatti'),('Devin HARPER','dharp@fnal.gov','Undergrad working with Mike Strauss','','http://','University of Oklahoma','','10/4/2006','dharp'),('Sergey EVSTYUKHIN','esv@fnal.gov sergey.evstyukhin@pnpi.spb.ru','+1-(630) 840-4463','+7 (813-71) 46722','','Petersburg Nuclear Physics Institute, Russia','','12/4/2006','scheglov'),('Vadim ORESHKIN','oreshkin@fnal.gov Vadim.Oreshkin@pnpi.spb.ru','+1-(630) 840-4463','+7 (813-71) 46722','','Petersburg Nuclear Physics Institute, Russia','','12/4/2006','scheglov'),('Simon Oganesyan','osa@fnal.gov, oganesyan@pnpi.spb.ru','+1-(630) 840-4463','+7 (813-71) 46722','','Petersburg Nuclear Physics Institute, Russia','','12/5/2006','scheglov'),('Alba GARCIA','agarcia@fnal.gov a-garcia@uniandes.edu.co','','','http://','Universidad de Los Andes, Colombia','','9/1/2006','jonckheere'),('Shiva CHIRUMAMILLA','nilla@fnal.gov','IMSA student /w Don Lincoln','','http://','Fermi National Accelerator Laboratory','','9/12/2006','jonckheere'),('Cody MORROW','camorrow@fnal.gov camorrow@imsa.edu','IMSA student /w Alan Magerkurth','','http://','University of Michigan','','9/13/2006','jonckheere'),('Dalit ENGELHARDT','dalit@fnal.gov dhardt@bu.edu','','','http://','Boston University','','9/18/2006','dalit'),('Michael Meier','mmeier@fnal.gov meier@ou.edu','Undergrad /w Mike Strauss','','http://','University of Oklahoma','','9/20/2006','jonckheere'),('Vladimir GORYACHEV','goryatch@fnal.gov vladimir.goryachev@ihep.ru','','','http://','No longer working for D0','','3/1/2007','kozelov'),('James KRAUS','jakraus@fnal.gov','2829','','http://','Michigan State University','NEW TRIGGER','2/21/2007','linneman'),('Jose de Jesus HERNANDEZ-ORDUNA','jjesus@fnal.gov','840-4477','','http://www-clued0.fnal.gov/~jjesus/','CINVESTAV, Mexico','B_PHYSICS SILICON','3/14/2008','jjesus'),('Wan-Ching Yang','tammy@fnal.gov tammy@hep.man.ac.uk','','','http://','University of Manchester, United Kingdom','','10/6/2006','jonckheere'),('Javier BROCHERO','brochero@fnal.gov ja.brochero57@uniandes.edu.co','','','http://','Universidad de Los Andes, Colombia','','10/16/2006','jonckheere'),('Jose Andres MONROY','jmonroy@fnal.gov ja.monroy905@uniandes.edu.co','','','http://','Universidad de Los Andes, Colombia','','10/16/2006','jonckheere'),('Vivek PARIHAR','parihar@fnal.gov parihar.vivek@gmail.com vparihar@physics.bu.edu','','','http://buphy.bu.edu/people/show/355','Boston University','TOP','2/9/2007','parihar'),('Patrick SALCIDO','salcido@fnal.gov psalci1@uic.edu','','','http://','University of Illinois, Chicago','','10/30/2006','jonckheere'),('Antonina UZBYAKOVA','uzbton@fnal.gov uzbton@mail.ru','','','http://','Moscow State University, Russia','','10/30/2006','jonckheere'),('Masato AOKI','masato@fnal.gov','x2351','630-809-8988 (cell)','http://www-d0.fnal.gov/~masato/','Fermi National Accelerator Laboratory','ALGORITHMS B_PHYSICS SILICON WZ','12/4/2007','masato'),('Diego MENEZES','dmenezes@fnal.gov dmenezes@niu.edu','','','http://','Northern Illinois University','','11/21/2006','jonckheere'),('Aram AVETISYAN','avetisya@fnal.gov avetisya@bu.edu','','','http://','Boston University','','11/27/2006','jonckheere'),('Vaclav ZYCHACEK','zychacek@fnal.gov v.zychacek@centrum.cz','','','http://','Czech Technical University','','12/6/2006','jonckheere'),('Batbold SANGHI','batbold@fnal.gov','','','http://','Fermi National Accelerator Laboratory','','12/6/2006','jonckheere'),('Nicolas OSMAN','naosman@fnal.gov nicolas.osman@imperial.ac.uk','','','http://','Imperial College, London','','1/9/2007','jonckheere'),('Selcuk CIHANGIR','selcuk@fnal.gov','(630) 840-2636','','http://','Fermi National Accelerator Laboratory','','1/9/2007','jonckheere'),('Anna HENRICHS','ahenr83@fnal.gov henrichs@physik.rwth-aachen.de','','','http://','RWTH Aachen, III. Phys. Inst. A, Aachen, Germany','','2/1/2007','jonckheere'),('Edgar CARRERA','ecarrera@fnal.gov ecarrera@hep.fsu.edu','8384','','http://www.hep.fsu.edu/~ecarrera','Florida State University','NEW','5/10/2007','ecarrera'),('Gregor PAHN','pahn@fnal.gov pahn@physik.uni-freiburg.de','','','http://','Physikalisches Institut, Universitaet Freiburg','','2/7/2007','jonckheere'),('Hatim HEGAB','hhegab@fnal.gov','','','http://','Oklahoma State University','','2/13/2007','jonckheere'),('Byounghoon LEE','kamui80@fnal.gov kamuichan@skku.edu','','','http://','SungKyunKwan University, Suwon, Korea','','2/14/2007','jonckheere'),('Betty CALPAS','calpas@fnal.gov calpas@cppm.in2p2.fr','Undergrad with E.Nagy','','http://','Centre de Physique des Particules de Marseille','','2/19/2007','jonckheere'),('Susan GOSSE','gosse@fnal.gov susie@ou.edu','Undergrad with Mike Strauss','','http://','University of Oklahoma','','2/20/2007','jonckheere'),('Jack FOWLER','jffowler@fnal.gov fowler@hep.brown.edu','','','http://','Brown University','','2/21/2007','jonckheere'),('Michelle Prewitt','mprewitt@fnal.gov mprewitt@rice.edu','x2406 713-348-4743','','http://','Rice University','FIBER_TRACKER','8/10/2007','mprewitt'),('John KELLER','jkeller@fnal.gov john_keller@brown.edu','','','http://','Brown University','','2/23/2007','jonckheere'),('Gianluca CERMINARA','cerminar@fnal.gov gianluca.cerminara@to.infn.it','','','http://','Northeastern University','MUON WZ','3/7/2007','cerminar'),('Jeong Ku LIM','jklim@fnal.gov kuphy98@korea.ac.kr','','','http://','Korea University, Korea','','3/5/2007','jonckheere'),('Eve CHAREYRE','chareyre@fnal.gov eve.chareyre@lpnhe.in2p3.fr','','','http://','LPNHE, Universites Paris VI and VII, France','','3/12/2007','jonckheere'),('Jesse CORNELISSEN','jcornel@fnal.gov j.cornelissen@student.science.ru.nl','','','http://','Radboud University Nijmegen','','4/11/2007','jonckheere'),('Dustin KELLER','dustin@fnal.gov zetanot@yahoo.com','','','http://','No longer working for D0','','7/23/2007','hedin'),('Nils HUSKE','huske@fnal.gov huske@lpnhe.in2p3.fr','(630)840-8740','Grad Student','http://www-clued0.fnal.gov/~huske/','LPNHE, Universites Paris VI and VII, France','','1/25/2008','huske'),('Geertje HEUERMANN','heuer@fnal.gov heuer@lpnhe.in2p3.fr','','Summer Student with Gregorio Bernardi','http://','LPNHE, Universites Paris VI and VII, France','','5/9/2007','jonckheere'),('Weigang GENG','weigang@fnal.gov gengweig@msu.edu','630-840-3983','630-840-3549','http://www-d0.fnal.gov/~weigang/','Michigan State University','TRIGGER','7/2/2007','weigang'),('Hao LIU','liuhao@fnal.gov liuhao@umich.edu','','','http://','University of Michigan','','5/11/2007','jonckheere'),('Ryan DUNN','rdunn@fnal.gov rdunn@niu.edu','','Northern Illinois University','http://','No longer working for D0','','1/11/2008','hedin'),('Guo CHEN','guochen@fnal.gov guo1026@ku.edu','','','http://','University of Kansas','','5/14/2007','jonckheere'),('Solene CHEVALIER-THERY','thery@lpthe.jussieu.fr','+33144277432','','http://','DAPNIA/SPP, SACLAY, France','','12/5/2007','bassler'),('Jefferson OKRAKU','okraku@fnal.gov','','Summer Student with Geoff Savage','http://','Fermi National Accelerator Laboratory','','6/4/2007','jonckheere'),('Daniel KHELOUSSI','dkhel@fnal.gov dkheloussi@gmail.com','','summer student with Sabine Lammers','http://','Columbia University','','5/29/2007','jonckheere'),('Carrie MCGIVERN','mcgivern@fnal.gov scarriem@ku.edu','','','http://','University of Kansas','','5/29/2007','jonckheere'),('Martin BRAUNLICH','mbraunli@fnal.gov z147757@students.niu.edu','','','http://','Northern Illinois University','','5/29/2007','jonckheere'),('Irakli CHAKABERIA','iraklich@fnal.gov irakli@phys.ksu.edu','','','http://','Kansas State University','','5/29/2007','jonckheere'),('Irakli SVINTRADZE','iraklis@fnal.gov iraklis@phys.ksu.edu','','','http://','Kansas State University','','5/29/2007','jonckheere'),('Marcus WINN','mwinn@fnal.gov wawinn@nvsu.edu','','Summer Student with Taka Yasuda','http://','Fermi National Accelerator Laboratory','','5/29/2007','jonckheere'),('Meghan SHANKS','mrs016@fnal.gov mrs016@drake.edu','','Summer Student with Gustaaf Brooijmans','http://','Columbia University','','6/1/2007','jonckheere'),('James KOLL','jkoll@fnal.gov jameskoll@gmail.com','','','http://','Michigan State University','','6/4/2007','jonckheere'),('Yichen LI','yichenli@fnal.gov yichenli@buffalo.edu','','','http://','State University of New York, Buffalo','','6/4/2007','jonckheere'),('Shane SPIVEY','shanecs@fnal.gov shane_spivey@hotmail.com','','','http://','University of Texas, Arlington','','6/4/2007','jonckheere'),('Michael PATRICK','mpatric@fnal.gov patricmi@lewisu.edu','','','http://','Northern Illinois University','','6/5/2007','jonckheere'),('Joshua QUALLS','jqualls@fnal.gov josh.qualls@centre.edu','','Summer Student with Michael Wang','http://','Fermi National Accelerator Laboratory','','6/7/2007','jonckheere'),('Russ AVERIN','russa@fnal.gov raaverin06@ole.augie.edu','','','http://','University of Michigan','','6/7/2007','jonckheere'),('Rakshya KHATIWADA','rkhatiw@fnal.gov rkhatiw@linfield.edu','','Summer Student with Pushpa Bhat','http://','Fermi National Accelerator Laboratory','','6/7/2007','jonckheere'),('Pierre JOUY','jouy@fnal.gov pierre.jouy@voila.fr','','Summer Student with Gregorio Bernardi','http://','LPNHE, Universites Paris VI and VII, France','','6/11/2007','jonckheere'),('Ivan RAZUMOV','razumov@fnal.gov ivan.razumov@ihep.ru','x8570','','http://','Institute for High Energy Physics, Russia','','6/11/2007','razumov'),('Isa HEINZE','iheinze@fnal.gov Isa.Heinze@web.de','','visitor from Goettingen with Arnulf Quadt','http://','Physikalisches Institut, Bonn University','','6/27/2007','jonckheere'),('Thomas KENNINGTON','tomken@fnal.gov thomaskennington@ou.edu','','summer student with Mike Strauss','http://','University of Oklahoma','','7/5/2007','jonckheere'),('Greg MILLER','gr3gmi11@fnal.gov michael@nhn.ou.edu','','Summer Student with Mike Strauss','http://','University of Oklahoma','','7/6/2007','jonckheere'),('Nikolas LOGAN','nlogan@fnal.gov nikolas_logan@brown.edu','','Summer Student with Dave Cutts','http://','Brown University','','7/6/2007','jonckheere'),('Kamil AUGSTEN','augsten@fnal.gov augsten@centrum.cz','6308408786','6308406393','http://','Czech Technical University','','7/25/2007','augsten'),('Heather BROWN','hbb5684@fnal.gov heatherbrianna@hotmail.com','','summer student with Andy White','http://','University of Texas, Arlington','','7/17/2007','jonckheere'),('Abhinav DUBEY','abhinav@fnal.gov','630-840-6848','630-842-4929','http://','Delhi University, Delhi, India','CALORIMETER NEW','5/12/2008','abhinav'),('Ivan NIKOLAEV','nikolaev@fnal.gov I.b.nikolaev@inp.nsk.su','','','http://','University of Rochester','','7/25/2007','jonckheere'),('Alexey V BREZHNEV','brezhnev@fnal.gov brezhnevav@bk.ru','','','http://','Institute for High Energy Physics, Russia','','7/26/2007','jonckheere'),('Vladimir VOLNYKH','volnykh@fnal.gov volnykh@jinr.ru','','','http://','Joint Institute for Nuclear Research, Russia','','8/3/2007','jonckheere'),('Matthew Abbott','abbottm@fnal.gov mab0432@latech.edu','','','http://','Louisiana Tech University','','8/23/2007','jonckheere'),('Benjamin TOLER','bentoler@fnal.gov bft001@latch.edu','','','http://','Louisiana Tech University','','8/24/2007','jonckheere'),('Gregory PAULEY','gpauley@fnal.gov','','Undergrad with Rick Van Kooten','http://','Indiana University','','9/10/2007','jonckheere'),('Zhenyu YE','yezhenyu@fnal.gov','630-840-2344','630-962-9496','http://','Fermi National Accelerator Laboratory','','9/11/2007','yezhenyu'),('Stephanie BRANDT','sabrandt@fnal.gov sabrandt@imsa.edu','','Summer Student with Don Lincoln','http://','Fermi National Accelerator Laboratory','','9/20/2007','jonckheere'),('Micaela CASAS','mcasas@fnal.gov mcasas@rice.edu','','Undergrad with Marj Corcoran','http://','Rice University','','9/21/2007','jonckheere'),('Marc ESCALIER','escalier@fnal.gov escalier@cppm.in2p3.fr','','','http://','Centre de Physique des Particules de Marseille','','9/25/2007','escalier'),('Evan GUARNACCIA','evan@fnal.gov evang@ku.edu','','','http://','University of Kansas','','9/24/2007','jonckheere'),('Mika VESTERINEN','mikav@fnal.gov M.Vesterinen@student.manchester.ac.uk','','','http://','University of Manchester, United Kingdom','','10/12/2007','jonckheere'),('David JAMIN','jamin@fnal.gov jamin@cppm.in2p3.fr','','','http://','Centre de Physique des Particules de Marseille','','11/7/2007','jonckheere'),('Tessa PEARSON','tessa@fnal.gov tessap@rice.edu','','Undergrad with Marj Corcoran','http://','Rice University','','11/5/2007','jonckheere'),('Pengfei DING','dingpf@fnal.gov dpfbird@mail.ustc.edu.cn','','','http://','Univ of Science and Technology of China, Hefei','','11/7/2007','jonckheere'),('Mikhail SMOLYAKOV','smolyako@fnal.gov smolyakov@theory.sinp.msu.ru','','','http://','Moscow State University, Russia','','11/7/2007','jonckheere'),('Igor VOLOBUEV','volobuev@fnal.gov volobuev@theory.sinp.msu.ru','','','http://','Moscow State University, Russia','','11/7/2007','jonckheere'),('Alexander VERKHEEV','alver@fnal.gov alver@jinr.ru','','','http://','Joint Institute for Nuclear Research, Russia','','11/12/2007','jonckheere'),('Melvin MEIJER','meijer@fnal.gov','','','http://','Radboud University Nijmegen','','11/13/2007','jonckheere'),('Lei WANG (China)','wangl@fnal.gov popoyeep@mail.ustc.edu.cn','','','http://','Univ of Science and Technology of China, Hefei','','11/14/2007','jonckheere'),('Burton BETCHART','bbetchar@fnal.gov bbetchar@pas.rochester.edu','','','http://','University of Rochester','','11/16/2007','jonckheere'),('Douglas ORBAKER','dorbaker@fnal.gov dorbaker@pas.rochester.edu','','','http://','University of Rochester','','11/19/2007','jonckheere'),('Sergey KOSHKAREV','kowkarev@fnal.gov sergey.koshkarev@ihep.ru','','','http://','Institute for High Energy Physics, Russia','','11/29/2007','jonckheere'),('Maiko TAKAHASHI','mt3@fnal.gov maiko.takahashi@cern.ch','','','http://','University of Manchester, United Kingdom','','1/2/2008','jonckheere'),('Gabriel FACINI','gfacini@fnal.gov facini.g@neu.edu','630 840-4273','','http://','Northeastern University','TRIGGER WZ','5/19/2008','darien'),('Rupert LEITNER','leitner@fnal.gov leitner@ipnp.troja.mff.cuni.cz','630-840-8786','','http://','Charles Univ, Center for Particle Physics, Prague','TOP','1/10/2008','lokajick'),('Jyoti JOSHI','jyoti@fnal.gov jyoti@puhep.res.in','','','http://','Panjab University, India','','1/18/2008','jyoti'),('Lei FENG','lfeng@fnal.gov','','','http://','Northern Illinois University','','1/17/2008','jonckheere'),('Gianluca PETRILLO','petrillo@fnal.gov gianluca.petrillo@cern.ch','+1 630 840 8454','','http://','University of Rochester','','1/22/2008','petrillo'),('Kiran CHAKRAVARTHULA','kchakrav@fnal.gov kch008@latech.edu','','','http://','Louisiana Tech University','','2/26/2008','jonckheere'),('Ricardo MAGANA','magania@fnal.gov','840-4477','','http://','CINVESTAV, Mexico','B_PHYSICS FIBER_TRACKER','3/14/2008','jjesus'),('Davide GERBAUDO','gerbaudo@fnal.gov gerbaudo@princeton.edu','','','http://','Princeton University','','3/26/2008','jonckheere'),('Estela GARCES-GARCIA','egarces@fnal.gov','840-4477','','http://www-clued0.fnal.gov/~egarces','CINVESTAV, Mexico','B_PHYSICS DAQ_ELECTRONICS MUON','5/11/2008','jjesus'),('Jorge MARTINEZ-ORTEGA','yorch@fnal.gov','(630) 840-4477','','http://','CINVESTAV, Mexico','B_PHYSICS','4/3/2008','yorch'),('David SHEFFIELD','dgsheffi@fnal.gov david_sheffield@brown.edu','','undergrad with Meena Narain','http://','Brown University','','4/2/2008','jonckheere'),('Emily JOHNSON','ejohnson@fnal.gov john2105@msu.edu','','','http://','Michigan State University','','4/21/2008','jonckheere'),('Emilien CHAPON','chapon@fnal.gov echapond@rip.ens-cachan.fr','','Undergrad with Christophe Royon','http://','DAPNIA/SPP, SACLAY, France','','4/23/2008','jonckheere'); UNLOCK TABLES; /*!40000 ALTER TABLE `person` ENABLE KEYS */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;