Report problems to ATLAS LXR Team (with time and IP address indicated)

The LXR Cross Referencer

source navigation ]
diff markup ]
identifier search ]
general search ]
 
 
Architecture: linux ]
Version: head ] [ nightly ] [ GaudiDev ]
  Links to LXR source navigation pages for stable releases [ 12.*.* ]   [ 13.*.* ]   [ 14.*.* ]   [ 15.*.* ] 

001 SET echo OFF;
002 set linesize 132;
003 drop   table WCHV_data2tag cascade constraints;
004 drop   table WCHV_data cascade constraints;
005 create table WCHV_data (
006   WCHV_data_id   number(10),
007 VERS       number(10),
008 JSTA       number(10),
009 NUM       number(10),
010 HEIGHTNESS       float(63),
011 LARGENESS       float(63),
012 THICKNESS       float(63)
013 ) ;
014 
015 alter table WCHV_data add constraint WCHV_data_pk
016 primary key (WCHV_data_id);
017 
018 create table WCHV_data2tag (
019   WCHV_vers      varchar2(255),
020   WCHV_data_id   number(10)
021 ) ;
022 
023 alter table WCHV_data2tag add constraint WCHV_data2tag_pk
024 primary key (WCHV_vers, WCHV_data_id);
025 alter table WCHV_data2tag add constraint WCHV_data2tag_vers_fk
026 foreign key (WCHV_vers) references hvs_nodevers (vers_name);
027 alter table WCHV_data2tag add constraint WCHV_data2tag_data_fk
028 foreign key (WCHV_data_id) references WCHV_data (WCHV_data_id);
029 
030 delete from hvs_relation where CHILD_NODENAME = 'WCHV';
031 delete from hvs_nodevers where VERS_NAME = 'MuonSpectrometer-07';
032 delete from hvs_nodevers where NODE_NAME = 'WCHV';
033 delete from hvs_node     where NODE_NAME = 'WCHV';
034 
035 insert into hvs_node     values ('WCHV','MuonSpectrometer', '');
036 insert into hvs_nodevers values ('WCHV', 'WCHV-07', '');
037 insert into hvs_nodevers values ('MuonSpectrometer','MuonSpectrometer-07','');
038 insert into hvs_relation values ('MuonSpectrometer','MuonSpectrometer-07','WCHV','WCHV-07');
039 insert into WCHV_data (
040 WCHV_data_id,
041 VERS,
042 JSTA,
043 NUM,
044 HEIGHTNESS,
045 LARGENESS,
046 THICKNESS
047 ) values (    0,
048      7,     1,     1,    17.0000,     6.0000,     0.6000
049 );
050 insert into WCHV_data2tag values ('WCHV-07',    0);
051 insert into WCHV_data (
052 WCHV_data_id,
053 VERS,
054 JSTA,
055 NUM,
056 HEIGHTNESS,
057 LARGENESS,
058 THICKNESS
059 ) values (    1,
060      7,     2,     1,    31.7000,     6.0000,     0.6000
061 );
062 insert into WCHV_data2tag values ('WCHV-07',    1);
063 insert into WCHV_data (
064 WCHV_data_id,
065 VERS,
066 JSTA,
067 NUM,
068 HEIGHTNESS,
069 LARGENESS,
070 THICKNESS
071 ) values (    2,
072      7,     3,     1,     5.5000,     0.0000,     0.0000
073 );
074 insert into WCHV_data2tag values ('WCHV-07',    2);
075 insert into WCHV_data (
076 WCHV_data_id,
077 VERS,
078 JSTA,
079 NUM,
080 HEIGHTNESS,
081 LARGENESS,
082 THICKNESS
083 ) values (    3,
084      7,     4,     1,    12.1000,     6.0000,     0.6000
085 );
086 insert into WCHV_data2tag values ('WCHV-07',    3);
087 
088 comment on column WCHV_data.WCHV_data_id is 'Unique identifier';
089 comment on column WCHV_data.VERS       is 'VERSION                                         ';
090 comment on column WCHV_data.JSTA       is 'INDEX                                           ';
091 comment on column WCHV_data.NUM        is 'NUMBER OF OBJECTS                               ';
092 comment on column WCHV_data.HEIGHTNESS is 'HEIGHT                                          ';
093 comment on column WCHV_data.LARGENESS  is 'T-SHAPE LARGENESS                               ';
094 comment on column WCHV_data.THICKNESS  is 'T-SHAPE THICKNESS                               ';

source navigation ] diff markup ] identifier search ] general search ]

Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems
This page was automatically generated by the LXR engine. Valid HTML 4.01!