6 Pages

flags

Course: PDP 11, Fall 2009
School: Wayne State University
Rating:
 
 
 
 
 

Word Count: 1731

Document Preview

FLAG PCTECO USAGE SETTING THE MODE CONTROL FLAGS n^X -- Sets the search mode flag to n. If n is 0 then searches are independent of case if -1 (or anything else) then search text and text buffer must match exactly in searches. Default = 0 nED -- Sets the value of the edit level flag to n. m,nED -- Resets bits specified by m and sets bits specified by n. BIT 0 DEC 1 HEX $0001 -- If this bit is set then a caret (^)...

Register Now

Unformatted Document Excerpt

Coursehero >> Michigan >> Wayne State University >> PDP 11

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
FLAG PCTECO USAGE SETTING THE MODE CONTROL FLAGS n^X -- Sets the search mode flag to n. If n is 0 then searches are independent of case if -1 (or anything else) then search text and text buffer must match exactly in searches. Default = 0 nED -- Sets the value of the edit level flag to n. m,nED -- Resets bits specified by m and sets bits specified by n. BIT 0 DEC 1 HEX $0001 -- If this bit is set then a caret (^) in a search string is just a literal ^. If clear then the caret modifies the following character to be a control character. -- If this bit is set the Y (Yank) command and _ (underscore) command work unconditionally. If clear then behaviour of the Y and _ commands are as follows: If an output file is open and there is text in the buffer, these commands will produce an error message and the command will be aborted leaving the text buffer unchanged. If no output file is open the Y and _ commands work unconditionally. If the text buffer is empty the Y command will work even if an output file is open (HKY will always work (my motto)). The _ command will succeed in bringing one page of text into an empty text buffer but will fail from bringing in successive pages if an output file is open. -- When set TECO will only expand memory on A cmd and not with Y, P or N cmds. Otherwise full memory expansion is in effect. I think this works. In any case the max buffer size is about 32K. -- TECO-8 only. (This is TECO-11) -- Allow failing searches to preserve Dot. -- Enable immediate escape commands. ?NYI. -- Only move dot by one on multiple occurrence searches. It works. -- Automatic refresh inhibit. ?NYI. 1 2 $0002 2 4 $0004 3 4 5 6 7 8 16 32 64 128 $0008 $0010 $0020 $0040 $0080 Default = 1 nEH -- Sets the value of the help level flag to n. If n is equal to 1 error messages are output in abbreviated form (?XXX). If n is equal to 2 error messages are output in a form (?XXX Message). If n is equal to 3 error messages are output the same as 2 then the failing command is output up to and including the failing character in the command followed by a ?. Default = 0 (which is the same as 2) Notes: If you set EH to anything else you are on your own. (This seems to work mostly). EJ nES -- Don't mess with this. -- Sets the value of the search verification flag to n. If n is equal to 0 nothing is typed out after searches. If n is -1 the current line is typed out when a search is completed (i.e. a V command is done automatically). If n is between 1 and 31 the current line is typed out with a line feed immediately following the position of the pointer to identify its position. If n is between 32 and 126 the current line is type out with the ASCII character corresponding to the value of n immediately following the position of the pointer to identify its position. If more than one line of type-out is desired, the form m*256 + n can be used. The n is the same as above. The m is the number of lines (-1) before and after the found line to view. (Same as mV command). (See the example in the supplied TECO.INI file). The ES flag does not apply to searches executed inside iterations or macros, lines found inside iterations or macros are never typed out. Default = 0 (but is changed by supplied TECO.INI) Notes: If you set ES to anything else you are on your own. (Don't get into the habit of typing Stext$v$$ if this is not 0 else confusion follows). nET -- Sets the type out control flag to n. m,nET -- Resets bits specified by m and sets bits specified by n. BIT 0 DEC 1 HEX $0001 -- Type out in image mode. Setting this bit inhibits all of TECO's type out conversions. All characters output to the terminal exactly as the appear in the buffer or ^A command. Specifically, the changing of control characters to caret/character form is suppressed. Default: reset. 1 2 $0002 -- Scope mode (i.e. <BS> and ^U erase the screen). Default: set. 2 4 $0004 -- Read lower case. This is pretty useless these days. Default: set. 3 8 $0008 -- Read without echo for ^T commands. This allows data to be read by the ^T command without having the characters echo at the terminal. Default: reset. 4 16 $0010 -- Cancel ^O on typeout. Setting this bit will cancel any outstanding ^O when the next typeout occurs. After TECO has canceled the ^O, it will automatically reset the bit. Default: reset. 5 32 $0020 -- Read with no wait. This enable the ^T command to test to see if a character is available at the keyboard. If a character has been typed ^T returns the value of the character. If no character has been typed ^T immediately returns a value of -1 and execution continues without waiting for the character. Default: reset. 6 64 $0040 -- Detach flag (?NYI). Forced: reset. 7 128 $0080 -- When this bit is set: 1) all informational messages are supressed; 2) any ^C causes the immediate termination of TECO; 3) any error causes the termination of TECO after the error message is printed. Default: set. (which means if there is an error in your TECO.INI file or anywhere else on startup you'll never get the off ground, this gets reset at TECOs prompt (*)) 8 256 $0100 -- Truncate terminal output (?NYI). Forced: reset. 9 512 $0200 -- You have scope and we have "WATCH", this is a readonly bit (?NYI). Forced: reset. 10 1024 $0400 -- Refresh available, this is a read-only bit (?NYI). Forced: reset. 11 2048 $0800 -- Not used by TECO. Forced: reset. 12 4096 $1000 -- 8/7 bit terminal. If this bit is set then 8 bit chars are printed as themselves. If reset then they are printed in hex format [ab]. Default: reset. (but set by supplied TECO.INI) 13 8192 $2000 -- If set accent grave is escape surrogate. (this is good since that key is where GOD intended the escape key to be (at least on *my* keyboard), to enter an accent grave into text when this bit is set use 96I$). Default: reset. 14 16384 $4000 -- Not used by TECO. Forced: reset. 15 32768 $8000 -- If this bit is set and a ^C is typed the bit is reset but execution of the current command string is allowed to continue. This allows a TECO macro to detect typed ^C's. Default: reset. Default = $0086 Notes: TECO will automatically reset (turn off) the following bits in the ET flag on every error: bit 0 (image output), bit 3 (no echo on ^T), bit 4 (cancel ^O), bit 5 (no stall on ^T) and bit 15 (^C trap). Also, TECO always turns off bit 7 (exit on error, etc.) every time it reaches prompt (*) level. nEU -- Sets the value of the upper/lower case flag to n. Default = -1 nEV -- Sets the value of the edit verify flag to n. The edit verify flag's value is decoded just like the ES flag. Just before TECO prints its prompting * the EV flag is checked. If it is non-zero the lines to be viewed are printed on the screen. Default = 0 nEZ -- Sets text mode flag to n. m,nEZ -- Resets bits specified by m and sets bits specified by n. BITS 0-3 4-6 7 8-10 11 ACTION TextColor TextBackground Clear screen on exit (set to 0 if you defaultly don't want TECO output to disappear on exit) BW/CO 40/80 Change mode to that set by bits 8-10,12 (if this bit is set on exit your original mode will be restored and the 12 13 14-15 BITS: screen will clear regardless of the setting of bit 7) EGA/VGA (43/50 line mode) Turn off annoying beep Unused F E D C B A 9 8 7 6 5 4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | | | | | | | | | | | | | | | | | | | | | | | | +-+-+-+--| | | | | | | +-+-+-----------| | | | | | +-----------------| | | +-+-+--------------------| | +--------------------------| +-----------------------------+-------------------------------- TextColor TextBackground Clear screen (exit) BW/CO 40/80 Change TextMode EGA/VGA (43/50) Turn off error beep COLOR TABLE 0: 1: 2: 3: 4: 5: 6: 7: Black Blue Green Cyan Red Magenta Brown LightGray 8: DarkGray 9: LightBlue 10: LightGreen 11: LightCyan 12: LightRed 13: LightMagenta 14: Yellow 15: White TextBackground may be set to 0..7 in 1st hex digit while TextColor may be set to 0..15 in 0th hex digit. For example, if you include a line in your TECO.INI file 16^R1F EZ^D ^ !whitespace needed t...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Wayne State University - PDP - 11
RENAME - Variable renamer for BASIC Kelvin Smith, Financial Computer Systems, Inc. When I joined this company, I found many of the programs had been written in a dialect of Basic which allowed only one-letter or one-letter plus one-digit variable nam
Wayne State University - PDP - 11
* * * * * F O D T * * * * FORTRAN-IV ON-LINE DEBUGGING TOOL * * * * OPERATING INTRUCTIONS * * * * ** THIS DEBUGGING AID ALLOWS THE USER OF RT-11 FORTRAN IV TO MONITOR THE OPERATION OF HIS PROGRAM USING COMMANDS SIMILAR TO ODT. FODT PROVIDES A SUBSET
Wayne State University - PDP - 11
EXECCL: A TIME SHARING TERMINAL EMULATOR Version 1.2 14-July-1987 This Modification by: Barry N. Shaklan, M.D. 3336 East Equestrian Trail Phoenix, Arizona 85044 Compuserve ID: 70265,1140Main program flow,logic and coding is directly from: EXEC: A T
Wayne State University - PDP - 11
DECODE VERSION 3.0 Decode 3.0 is a modified version of DECODE 2.0. The file is stored in DECOD3.MAC and DECOD3.SAV. The program provides additional features over version 2.0. Under version 3.0, the user is allowed to specify a /S:nnnn and a /E:nnnn o
Wayne State University - PDP - 11
Reading Unix (tm) TAR tapes on RSTS/E and VAX/VMS The RDMT.BAS and UNTAR.BAS programs read Unix TAR format tapes on RSTS/E. Equivalent programs, VRDMT.BAS and VUNTAR.BAS are available for Vax/VMS. Source is in [5,1] on RSTS/E Decus-C distribution kit
Wayne State University - PDP - 11
# #AE#AI056 088Terminal Communication Support Routines TRMIN TRMMSG TRMOUT Accept a string of characters from the terminal. Send a message to another terminal. Send a string of characters to the terminal.vug013/83c03a #AF## # #
Wayne State University - PDP - 11
# #AE#AI056 088Performance Analysis Support Routines INITPA ISPPA ISTPA TERMPA Initialize for a performance analysis. Stop a performance analysis. Start a performance analysis. Terminate from a performance analysis.vug008/83c03a #AF## #
Wayne State University - PDP - 11
DECUS FALL, 1990 TAPEStandard directory 25-Oct-90README.1ST 1 10-Oct-90 VSET .DSK 104P 10-Oct-90TAPCOP.TXT 7 15-May-89 TAPDIR.TXT 3 25-Oct-90TSXLB1.DSK 624P 10-Oct-90 TSXLB2.DSK 424P 10-Oct-90SETDZ .
Wayne State University - PDP - 11
! DK:SRCH.TXT DATE: 21-MAY-83 TIME: 19:17:50 !Z&quot;GMZ^A$H$K$p-SRCH-W- TEXT IN BUFFER - OK to discard (Y)?^A&lt;^T-^Y&quot;E0;'OXIT$&gt;'HK MZ ^A$H$J$q^AI-TECO- -SRCH- SEARCH PATTERN ACCEPTOR REV 21-MAY-83RETURN TO THIS FRAME W
Wayne State University - PDP - 11
BUILDING PLT To build an executable version (.SAV) of PLT on a RT-11v5.1system or TSX-PLUS V6.1 system you need a copy of the FORTRAN source files on the DK: device. Set KMON IND and execute the PLTBLD.COM command file.@PLTBLD T
Wayne State University - PDP - 11
PLOTF=An interface between application programs and PLOTto allow simplified programming.Author P.A.IrvineC.S.I.R.O. Division of Textile Physics338 Blaxland Rd. Ryde.N.S.W. AUSTRALIA 2112Date March 1980PLOTF is
Wayne State University - PDP - 11
RMD.DOC If you elect to use the I and D space F11ACP and you wish the task display page to work correctly you will need to patch RMDEMO. Included here is THF11L.COR, the correction file to do it. Follow normal release note procedures for updating a p
Wayne State University - PDP - 11
From frisbie@flying-disk.com Sun Sep 25 16:06:22 PDT 1994Article: 3142 of vmsnet.pdp-11Path: nntp-server.caltech.edu!netline-fddi.jpl.nasa.gov!elroy.jpl.nasa.gov!decwrl!netcomsv!flying!frisbieFrom: frisbie@flying-disk.com (Alan Frisbie)Newsgroups
Wayne State University - PDP - 11
Instructions Summary -Pointer movement cmds:- ^A =&gt;Go to beginning of current line. ^B =&gt;Go back one character. ^E =&gt;Go to end of line. ^F =&gt;Go forward one character. ^N =&gt;Go to
Wayne State University - PDP - 11
=Note 12.0 DMA on the Q-bus No repliesJAWS:KAISER 174 lines 25-MAR-1985 09:20-- +-+ +-+ | d i g i t a l | | uNOTE # 012 | +-+
Wayne State University - PDP - 11
=Note 44.0 VAX/VMS Realtime Programming No repliesFURILO:PROPPER 1235 lines 13-AUG-1986 15:08-- +-+ +-+ | d i g i t a l |
Wayne State University - PDP - 11
=Note 28.0 MSV11-Q/M/J Memory Comparisons No repliesFURILO:GIORGETTI 175 lines 21-AUG-1985 23:07-- +-+ +-+ | d i g i t a l |
Wayne State University - PDP - 11
=Note 30.0 PMI on KDJ11-B and MSV11-J No repliesFURILO:GIORGETTI 587 lines 21-AUG-1985 23:13-- +-+ +-+ | d i g i t a l |
Wayne State University - PDP - 8
Descriptions of various PDP-8 operating systems and environmentsExcerpted from an email message from Charles Lasner-paper-tape: Programs that use nothing more than the console terminal (device03/04, generally a teletype), and possibly some s
Wayne State University - PDP - 8
PDP-8 (and related peripherals) module list, 9/18/92A231AD8-EA232AD8-EA841AD8-EG104MM8-Ecore sense inhibit 4KG105MP8-Ecore sense inhibit parityG111MM8-EJcore sense inhibit 8KG227MM8-Ecore x-y drivers 4KG233MM8-EJcore x-y drive
Wayne State University - PDP - 8
A description of the RX50 floppy controller subsystem of the DECmate II/IIIExcerpted from an email message from Charles Lasner-Basically, the RX subsystem is known as an &quot;RX emulator&quot;. If the RX78option is available, you have to select it with A
Wayne State University - PDP - 11
=Note 16.0 KXT11-CA Development Tools No repliesJAWS:KAISER 388 lines 25-MAR-1985 09:21-- +-+ +-+ | d i g i t a l | | uNOTE # 016 | +-+ +
Wayne State University - PDP - 11
=Note 36.0 MicroVMS Revealed No repliesFURILO:GIORGETTI 1473 lines 4-SEP-1985 15:46-- +-+ +-+ | d i g i t a l |
Wayne State University - PDP - 11
=Note 3.0 LSI-11/73 Bootstraps No repliesJAWS:KAISER 114 lines 25-MAR-1985 09:14-- +-+ +-+ | d i g i t a l | | uNOTE # 003 | +-+
Wayne State University - MBG - 7010
MGB 7010 Molecular Biology and Genetics Fall 2002 Time: 2:00 3:50 (one 10-minute break) Place: 2268 Scott Hall Texts: Molecular Cell Biology, 4th ed., Lodish et al. (W. H. Freeman); Working with Molecular Cell Biology, 4th ed., Storrie et al. (W. H
Wayne State University - WWND - 08
6. April 2008 WW08G.G. Barnafldi oPROSPECT OF RAPIDITY ASYMMETRY AND NUCLEAR MODIFICATIONSGergely Gbor Barnafldi CNR, Kent State University a o in collaboration with: Adeola Adeluyi CNR, Kent State University; George Fai CNR, Kent State Univ
Wayne State University - WWND - 09
Big Sky, 03 Feb 2009 - Klaus WERNER, Subatech, Nantes - 0-0Hydrodynamic evolution with flux tube (EPOS) initial conditionsKlaus Wernerin collaboration with T. Hirano , Iu. Karpenko , Wei-Liang Qian ,T. Pierog , S. Porteboeuf , M. Bleicher
Wayne State University - WWND - 09
Is the quark gluon plasma produced at RHIC strongly coupled?Truths, Myths and Sheer PropagandaRoy A. Lacey &amp; Arkadij TaranenkoI do not pretend to know where many of the uninformed are sure Clarence DayRoy A. Lacey, 25th Winter Workshop on Nuc
Wayne State University - WWND - 09
Recent results from STAR experiment in Au+Au collisions at sNN = 9.2 GeVDebasish Das UC Davis (For the STAR Collaboration)Outline Phase Diagram and its Evolution STAR Experiment Results and Systematics vs. Collision Energies: Identified particle s
Wayne State University - WWND - 08
Searching for jets in heavy ion collisionsSevil SalurLawrence Berkeley National LaboratorySevil SalurDisclaimer: not an official ALICE or STAR talk.1Jets at RHIC &amp; LHCp+p @ s = 200 GeV Au+Au @ sNN = 200 GeV Pb+Pb @ sNN = 5.5 TeVA. Pulvi
Wayne State University - WWND - 08
April 7, 2008String models and CGC&lt;werner@subatech.in2p3.fr&gt;Klaus Werner0-0&quot;Historical&quot; noteFeb 2008 INT workshop in Seattle about simulating air showers from VHE cosmic rays One needs interaction models which work for -air up to iron-air
Wayne State University - WWND - 08
N.B. Not a STAR talkApril 7th, 2008Winter Workshop 20081QGP in theoryQuark Gluon Plasma established theoreticallyLattice calculations indicate a rapid crossover accompanied by an increase in the number of degrees of freedomenergy density o
Wayne State University - WWND - 09
Parity violation in super-dense matter at RHICD. Kharzeev BNL and Yale12OutlineChiral symmetry and parity violation From Maxwell to Yang-Mills Topology-induced P and CP violation in super-dense matter at RHIC P and CP violation and the Early
Wayne State University - WWND - 08
Tests of Fluidity of AdS/CFT Plasma WakesJorge Bob Noronhawith M. Gyulassy, B. Betz, and G. Torrieri This is not a STAR talk, not a PHENIX talk, not an Alice talk, but it is still a talk .Based on arXiv:0712.1053 [hep-ph] and other still unpublis
Wayne State University - WWND - 09
?Ivan Vitev, Nuclear Theory, T-2 , LANLXXV Winter Workshop on Nuclear Dynamics Big Sky, Montana, February 2009Jet Shapes &amp; Jet Cross Sections: from Hadrons to Nuclei(r)1Ry Rx-1JHEP 0811, 093 (2008) Ivan Vitev, Simon Wicks, Ben-Wei Zhang
Wayne State University - WWND - 09
Viscous hydrodynamics for heavy-ion collisionsUlrich HeinzDepartment of Physics The Ohio State University 191 West Woodruff Avenue Columbus, OH 43210presented at25th Winter Workshop on Nuclear DynamicsBig Sky, Montana, February 1-8, 2009Sup
Wayne State University - WWND - 08
Personal Account of Phobos Physics Wit Busza MIT24th Winter Workshop on Nuclear Dynamics5-12 April 2008Two Facts Have Haunted Me For &gt; 30 Years Npart (or &quot; ) scaling Extended Longitudinal Scaling (Limiting Fragmentation)!Questions From The
Wayne State University - WWND - 09
Precision measurements of the proton beam absolute polarization with RHIC polarimetersA.Bazilevsky For the RHIC Polarimetry Group Brookhaven National Laboratory The 25th Winter Workshop on Nuclear Dynamics Big Sky, Montana February 1-8, 2009Proton
Wayne State University - WWND - 09
PHENIX Quarkonium ResultsTony Frawley Florida State University On behalf of the PHENIX collaboration Winter Workshop on Nuclear Dynamics February 6, 2009Motivation an evolving target!2Original motivation: J/ disappearance = direct signature o
Wayne State University - WWND - 08
9,3,-4:9 84994209!:070,90/94,.849 . -. 430.9743/,9,8002941,815&quot; &quot;/3,2.8 :3088 499426:,7574/:.94388:5570880/ 08#.,723-:9349-0,:91::,88 $4!,/70 % ,8415&quot; ;8 /$%!,7,/283 5&quot; , // ,3 5&quot;$500/298349843/ /$ ,3/$ ,3/,-005072039,7084;0/
Wayne State University - WWND - 08
Azimuthal correlations with high pT multi-hadron cluster triggers in Au+Au collisions at sqrt(s) = 200 GeV from STARBrooke Haag for the STAR Collaboration University of California at Davis Presented at the 24th Winter Workshop on Nuclear Dynamics Ap
Wayne State University - WWND - 08
Quantum anomalies in hot QCD matter: bulk viscosity and parity violationD. Kharzeev BNL &amp; YaleOutlineClassical symmetries and quantum anomalies of QCD Scale anomaly and bulk viscosity of QCD matter Axial anomaly and event-by-event P and CP violat
Wayne State University - WWND - 08
PHENIX Results on Jet Correlations versus Reaction PlaneDavid Winter 24th Winter Workshop on Nuclear Dynamics South Padre Island, TX 8 April 2008David L. Winter for the PHENIX CollaborationOutline Motivation Background/PHENIX Results Future
Wayne State University - WWND - 09
Why an EMCal ? Opportunities in Jet Physics Identified particles in jets Conclusions from jet measurementsThe Physics Of the ALICEEMCal Rene Bellwied Wayne State University25th Winter Workshop On Nuclear Dynamics Feb.1-8, 2009 Big Sky, Montana1
Wayne State University - WWND - 08
Non-photonic electron production in STARA. G. Knospe Yale University 9 April 2008slide 1Heavy Flavor and the QGP Dominant: gg QQ Production rates from pQCD Sensitive to initial gluon distributions Prediction: less than light quark energy lo
Wayne State University - WWND - 09
Measuring open heavy flavor with the experimentIrakli Garishvili University of Tennessee for the PHENIX collaboration25th Winter Workshop on Nuclear Dynamics 091I. Garishvili, Univ. of Tennessee, WWND 09, Big Sky, MT
Wayne State University - WWND - 08
Enhancement of hadronic resonances in RHI collisionsInga Kuznetsova and Johann Rafelski Department of Physics, University of Arizona We explain the relatively high yield of charged (1385)reported by STAR We show if we have initial hadrons multip
Wayne State University - TPAP - 1
#&gt;# #&amp;#(# %# #a #jbjb11# #$#[#[# #.#.#.#.#.#.##.#d ###d# #,#X#R# #d#G#.## #G#0#.#.#\#0# 0#0# #.#.#0#B#V#.# .#.#.##0#0#.#.# ##Y# #r#0#0#0# ## #.# #d#d#D#D# #d#d## # # ##Electrom agnetic Calorimeter (EMCal)Conceptual Design of the ALICE E
Wayne State University - TB - 2008
Mip calibration with statistics with number of cells in cluster=2Aleksei Pavlinov WSUApr 11, 2008 , Cosmic calibration phone meetingAleksei PavlinovCalibration method (the same as for beam case)N 2F = iAij -mip =minj =1 i =1 N N cell
Wayne State University - TB - 2008
Led vs temperature (SPS1) (temperature corrections)Aleksei Pavlinov WSUMar 14, 2008 , status reportAleksei PavlinovStatisticsAll runs from SPS1 run time 177 runs Time of running : Sep 21, 03:30-Sep 24, 12:00 Temperature: ~21.5-24.0 C
Wayne State University - PWG - 2
AliFemtoEventReader NB: the following Cuts are optional: AliFemtoEventCut * AliFemtoTrackCut * AliFemtoV0Cut * AliFemtotKinkCut * AliFemtoXiCut * ReturnHbtEvent() = 0 Report() Init() Finish()AliFemtoEventReader NB: the following Cuts are optional:
Wayne State University - PWG - 2
class AliFemtoManager; AliFemtoManager* TheManager; void exampleJuly2007(int nEventsToProcess=99999999, TString output = &quot;FemtoTest.root&quot;) { / standard library loadsgSystem-&gt;Load(&quot;libVMC.so&quot;); / needed by ESD gSystem-&gt;Load(&quot;LibESD.so&quot;); / since we r
Wayne State University - PWG - 2
/ - process the events if ( TheManager-&gt;Init() ) cout &lt; &quot;Problem? - non-zero initialization value\n&quot;; int Status; int nEventsProcessed = 0; do { nEventsProcessed+; cout &lt; &quot; + EVENT &quot; &lt; nEventsProcessed &lt; &quot; +\n&quot;; Status = TheManager-&gt;ProcessEvent() ;
Wayne State University - PWG - 2
Wayne State University - TRD - 1
New GEANT EMCAL geometry for ALICE (shashlyk type)Aleksei Pavlinov WSUWhat we suppose to do!Aleksei Pavlinov17 Dec 2004 Alice USA meetingCommon structure 12 super modulesAleksei Pavlinov17 Dec 2004 Alice USA meetingZcut of EMCAL
Wayne State University - GEANT - 3
* * $Id: errcom.doc 212 2007-10-04 23:45:50Z rdm $ * * $Log: errcom.doc,v $ * Revision 1.1.1.1 2002/06/16 15:18:35 hristov * Separate distribution of Geant3 * * Revision 1.1.1.1 1999/05/18 15:55:15 fca * AliRoot sources * * Revision 1.1.1.1 1995/10/2
Wayne State University - GEANT - 3
* * $Id: blank.doc 212 2007-10-04 23:45:50Z rdm $ * * $Log: blank.doc,v $ * Revision 1.1.1.1 2002/06/16 15:18:35 hristov * Separate distribution of Geant3 * * Revision 1.1.1.1 1999/05/18 15:55:15 fca * AliRoot sources * * Revision 1.1.1.1 1995/10/24
Wayne State University - TPAP - 1
Symantec Mail Security has identified that the attachment called acorde.zip is potentially dangerous and has been replaced by this message.For more information see: [ http:/cern.ch/mmmservices/Help/?kbid=171010 ]Quarantine Reference:ID:CERNXCHG
Wayne State University - COSMIC - 2
LeshaFormat sobytija slovo #1: chislo slov v sobytii2: no3: S1 trigger counter (nomer canala adc)4: S25: S36: APD1 (nomer canala ADC)7: APD28: summa canalov APD1 i APD2 (analog signala s bashni)i programma dlja PAWVladimir 8
Wayne State University - TPAP - 1
p 91: large kinematic range provided in heavy ion collisions by the LHC p 92: (2.8.2) 112 cm deep; high pt physics goals; 100 ton weight p 94: The strong back of an aluminium beam (?) p 95: up to 100 GeV photons p 97: exceeded the 400 V m
Wayne State University - TMP - 2
* File galice.root * ALICE GEOM EMCAL EMCAL GEOM SHISH_77_TRD1_2X2_FINAL_110DEG nl=69 scTh=0.176 pbTh=0.144 latSS=0.10 rIP 431.170 xyModSize 12.260 run name kGa